| Conditions | 4 |
| Paths | 5 |
| Total Lines | 109 |
| Code Lines | 68 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.
For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.
Commonly applied refactorings include:
If many parameters/temporary variables are present:
| 1 | <?php |
||
| 27 | public function execute() { |
||
| 28 | $r = $this->parent->request; |
||
| 29 | if ( $r->wasPosted() ) { |
||
| 30 | if ( $this->submit() ) { |
||
| 31 | return 'continue'; |
||
| 32 | } |
||
| 33 | } |
||
| 34 | |||
| 35 | $this->startForm(); |
||
| 36 | |||
| 37 | // Encourage people to not name their site 'MediaWiki' by blanking the |
||
| 38 | // field. I think that was the intent with the original $GLOBALS['wgSitename'] |
||
| 39 | // but these two always were the same so had the effect of making the |
||
| 40 | // installer forget $wgSitename when navigating back to this page. |
||
| 41 | if ( $this->getVar( 'wgSitename' ) == 'MediaWiki' ) { |
||
| 42 | $this->setVar( 'wgSitename', '' ); |
||
| 43 | } |
||
| 44 | |||
| 45 | // Set wgMetaNamespace to something valid before we show the form. |
||
| 46 | // $wgMetaNamespace defaults to $wgSiteName which is 'MediaWiki' |
||
| 47 | $metaNS = $this->getVar( 'wgMetaNamespace' ); |
||
| 48 | $this->setVar( |
||
| 49 | 'wgMetaNamespace', |
||
| 50 | wfMessage( 'config-ns-other-default' )->inContentLanguage()->text() |
||
| 51 | ); |
||
| 52 | |||
| 53 | $pingbackInfo = ( new Pingback() )->getSystemInfo(); |
||
| 54 | // Database isn't available in config yet, so take it |
||
| 55 | // from the installer |
||
| 56 | $pingbackInfo['database'] = $this->getVar( 'wgDBtype' ); |
||
| 57 | |||
| 58 | $this->addHTML( |
||
| 59 | $this->parent->getTextBox( [ |
||
| 60 | 'var' => 'wgSitename', |
||
| 61 | 'label' => 'config-site-name', |
||
| 62 | 'help' => $this->parent->getHelpBox( 'config-site-name-help' ) |
||
| 63 | ] ) . |
||
| 64 | // getRadioSet() builds a set of labeled radio buttons. |
||
| 65 | // For grep: The following messages are used as the item labels: |
||
| 66 | // config-ns-site-name, config-ns-generic, config-ns-other |
||
| 67 | $this->parent->getRadioSet( [ |
||
| 68 | 'var' => '_NamespaceType', |
||
| 69 | 'label' => 'config-project-namespace', |
||
| 70 | 'itemLabelPrefix' => 'config-ns-', |
||
| 71 | 'values' => [ 'site-name', 'generic', 'other' ], |
||
| 72 | 'commonAttribs' => [ 'class' => 'enableForOther', |
||
| 73 | 'rel' => 'config_wgMetaNamespace' ], |
||
| 74 | 'help' => $this->parent->getHelpBox( 'config-project-namespace-help' ) |
||
| 75 | ] ) . |
||
| 76 | $this->parent->getTextBox( [ |
||
| 77 | 'var' => 'wgMetaNamespace', |
||
| 78 | 'label' => '', // @todo Needs a label? |
||
| 79 | 'attribs' => [ 'readonly' => 'readonly', 'class' => 'enabledByOther' ] |
||
| 80 | ] ) . |
||
| 81 | $this->getFieldsetStart( 'config-admin-box' ) . |
||
| 82 | $this->parent->getTextBox( [ |
||
| 83 | 'var' => '_AdminName', |
||
| 84 | 'label' => 'config-admin-name', |
||
| 85 | 'help' => $this->parent->getHelpBox( 'config-admin-help' ) |
||
| 86 | ] ) . |
||
| 87 | $this->parent->getPasswordBox( [ |
||
| 88 | 'var' => '_AdminPassword', |
||
| 89 | 'label' => 'config-admin-password', |
||
| 90 | ] ) . |
||
| 91 | $this->parent->getPasswordBox( [ |
||
| 92 | 'var' => '_AdminPasswordConfirm', |
||
| 93 | 'label' => 'config-admin-password-confirm' |
||
| 94 | ] ) . |
||
| 95 | $this->parent->getTextBox( [ |
||
| 96 | 'var' => '_AdminEmail', |
||
| 97 | 'attribs' => [ |
||
| 98 | 'dir' => 'ltr', |
||
| 99 | ], |
||
| 100 | 'label' => 'config-admin-email', |
||
| 101 | 'help' => $this->parent->getHelpBox( 'config-admin-email-help' ) |
||
| 102 | ] ) . |
||
| 103 | $this->parent->getCheckBox( [ |
||
| 104 | 'var' => '_Subscribe', |
||
| 105 | 'label' => 'config-subscribe', |
||
| 106 | 'help' => $this->parent->getHelpBox( 'config-subscribe-help' ) |
||
| 107 | ] ) . |
||
| 108 | $this->parent->getCheckBox( [ |
||
| 109 | 'var' => 'wgPingback', |
||
| 110 | 'label' => 'config-pingback', |
||
| 111 | 'help' => $this->parent->getHelpBox( |
||
| 112 | 'config-pingback-help', |
||
| 113 | FormatJson::encode( $pingbackInfo, true ) |
||
| 114 | ), |
||
| 115 | 'value' => true, |
||
| 116 | ] ) . |
||
| 117 | $this->getFieldsetEnd() . |
||
| 118 | $this->parent->getInfoBox( wfMessage( 'config-almost-done' )->text() ) . |
||
| 119 | // getRadioSet() builds a set of labeled radio buttons. |
||
| 120 | // For grep: The following messages are used as the item labels: |
||
| 121 | // config-optional-continue, config-optional-skip |
||
| 122 | $this->parent->getRadioSet( [ |
||
| 123 | 'var' => '_SkipOptional', |
||
| 124 | 'itemLabelPrefix' => 'config-optional-', |
||
| 125 | 'values' => [ 'continue', 'skip' ] |
||
| 126 | ] ) |
||
| 127 | ); |
||
| 128 | |||
| 129 | // Restore the default value |
||
| 130 | $this->setVar( 'wgMetaNamespace', $metaNS ); |
||
| 131 | |||
| 132 | $this->endForm(); |
||
| 133 | |||
| 134 | return 'output'; |
||
| 135 | } |
||
| 136 | |||
| 264 |
If an expression can have both
false, andnullas possible values. It is generally a good practice to always use strict comparison to clearly distinguish between those two values.