Completed
Branch master (b9c20c)
by
unknown
03:58
created
generator/field/AdminPageFramework_Form_View___Generate_FlatFieldName.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
      * @return      string      The generated field name model.
32 32
      */
33 33
     public function getModel() {
34
-        return $this->get() . '|' . $this->sIndexMark;
34
+        return $this->get().'|'.$this->sIndexMark;
35 35
     }
36 36
         
37 37
         /**
Please login to merge, or discard this patch.
field/AdminPageFramework_Form_View___Generate_FlatFieldInputName.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
             '',
39 39
             "|{$this->sIndex}"
40 40
         );                
41
-        return $this->_getFiltered( $this->_getFlatFieldName() . $_sIndex );
41
+        return $this->_getFiltered( $this->_getFlatFieldName().$_sIndex );
42 42
         
43 43
     }
44 44
  
Please login to merge, or discard this patch.
generator/section/AdminPageFramework_Form_View___Generate_SectionName.php 2 patches
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -25,26 +25,26 @@
 block discarded – undo
25 25
         return $this->_getFiltered( $this->_getSectionName() );
26 26
     }
27 27
         
28
-    public function getModel()     {
29
-        return $this->get() . '[' . $this->sIndexMark . ']';
28
+    public function getModel() {
29
+        return $this->get().'['.$this->sIndexMark.']';
30 30
     }
31 31
         
32 32
         /**
33 33
          * @return      string
34 34
          */
35
-        protected function _getSectionName( $isIndex=null ) {
35
+        protected function _getSectionName( $isIndex = null ) {
36 36
 
37 37
             $this->aArguments = $this->aArguments + array(
38 38
                 'section_id' => null,
39 39
                 '_index'     => null,
40 40
             );
41
-            if( isset( $isIndex ) ) {
41
+            if ( isset( $isIndex ) ) {
42 42
                 $this->aArguments[ '_index' ] = $isIndex;
43 43
             }
44 44
             
45 45
             $_aNameParts = $this->aArguments[ '_section_path_array' ];
46 46
             if ( isset( $this->aArguments[ 'section_id' ], $this->aArguments[ '_index' ] ) ) {
47
-                $_aNameParts[] = $this->aArguments[ '_index' ];
47
+                $_aNameParts[ ] = $this->aArguments[ '_index' ];
48 48
             }
49 49
             $_sResult = $this->_getInputNameConstructed( $_aNameParts );
50 50
             return $_sResult;
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
         return $this->_getFiltered( $this->_getSectionName() );
26 26
     }
27 27
         
28
-    public function getModel()     {
28
+    public function getModel() {
29 29
         return $this->get() . '[' . $this->sIndexMark . ']';
30 30
     }
31 31
         
Please login to merge, or discard this patch.
factory/_common/form/notice/AdminPageFramework_Form___SubmitNotice.php 2 patches
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
          * @return      string
41 41
          */
42 42
         private function _getTransientKey() {
43
-            return 'apf_ntc_' . get_current_user_id();
43
+            return 'apf_ntc_'.get_current_user_id();
44 44
         }
45 45
     
46 46
     /**
@@ -52,14 +52,14 @@  discard block
 block discarded – undo
52 52
      * @param       string      $sType If empty, the method will check if a message exists in all types. Otherwise, it checks the existence of a message of the specified type.
53 53
      * @return      boolean     True if a setting notice is set; otherwise, false.
54 54
      */
55
-    public function hasNotice( $sType='' ) {
55
+    public function hasNotice( $sType = '' ) {
56 56
                 
57
-        if ( ! $sType ) {
57
+        if ( !$sType ) {
58 58
             return ( boolean ) count( self::$_aNotices );
59 59
         }
60 60
         
61 61
         // Check if there is a message of the type.
62
-        foreach( self::$_aNotices as $_aNotice ) {
62
+        foreach ( self::$_aNotices as $_aNotice ) {
63 63
             $_sClassAttribute = $this->getElement( 
64 64
                 $_aNotice, 
65 65
                 array( 
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
      * @param        boolean     $bOverride      (optional) If true, only one message will be shown in the next page load. false: do not override when there is a message of the same id. true: override the previous one.
99 99
      * @return       void
100 100
      */
101
-    public function set( $sMessage, $sType='error', $asAttributes=array(), $bOverride=true ) {
101
+    public function set( $sMessage, $sType = 'error', $asAttributes = array(), $bOverride = true ) {
102 102
         
103 103
         // If the array is empty, schedule the task of saving the array at shutdown.
104 104
         if ( empty( self::$_aNotices ) ) {
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
         $_sID = md5( trim( $sMessage ) );
109 109
             
110 110
         // If the override is false and a message is already set, do not add.
111
-        if ( ! $bOverride && isset( self::$_aNotices[ $_sID ] ) ) {
111
+        if ( !$bOverride && isset( self::$_aNotices[ $_sID ] ) ) {
112 112
             return;
113 113
         }
114 114
 
@@ -118,14 +118,14 @@  discard block
 block discarded – undo
118 118
         }
119 119
         
120 120
         $_aAttributes = $this->getAsArray( $asAttributes );
121
-        if ( is_string( $asAttributes ) && ! empty( $asAttributes ) ) {
121
+        if ( is_string( $asAttributes ) && !empty( $asAttributes ) ) {
122 122
             $_aAttributes[ 'id' ] = $asAttributes;
123 123
         }
124 124
         self::$_aNotices[ $_sID ] = array(
125 125
             'sMessage'      => $sMessage,
126 126
             'aAttributes'   => $_aAttributes + array(
127 127
                 'class'     => $sType,
128
-                'id'        => 'form_submit_notice_' . $_sID,
128
+                'id'        => 'form_submit_notice_'.$_sID,
129 129
             ),
130 130
         );
131 131
 
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
         }
167 167
             
168 168
         // By setting false to the 'settings-notice' key, it's possible to disable the notifications set with the framework.
169
-        if ( isset( $_GET[ 'settings-notice' ] ) && ! $_GET[ 'settings-notice' ] ) { 
169
+        if ( isset( $_GET[ 'settings-notice' ] ) && !$_GET[ 'settings-notice' ] ) { 
170 170
             return; 
171 171
         }
172 172
             
Please login to merge, or discard this patch.
Braces   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
          * @return      void
142 142
          */
143 143
         public function _replyToSaveNotices() {
144
-            if ( empty( self::$_aNotices ) ) { 
144
+            if ( empty( self::$_aNotices ) ) {
145 145
                 return; 
146 146
             }            
147 147
             $_bResult = $this->setTransient( 
@@ -161,12 +161,12 @@  discard block
 block discarded – undo
161 161
         
162 162
         // Retrieve the notifications set in a transient.
163 163
         $_aNotices = $this->_getNotices();
164
-        if ( false === $_aNotices ) { 
164
+        if ( false === $_aNotices ) {
165 165
             return; 
166 166
         }
167 167
             
168 168
         // By setting false to the 'settings-notice' key, it's possible to disable the notifications set with the framework.
169
-        if ( isset( $_GET[ 'settings-notice' ] ) && ! $_GET[ 'settings-notice' ] ) { 
169
+        if ( isset( $_GET[ 'settings-notice' ] ) && ! $_GET[ 'settings-notice' ] ) {
170 170
             return; 
171 171
         }
172 172
             
Please login to merge, or discard this patch.
development/factory/_common/utility/AdminPageFramework_ErrorReporting.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
 
39 39
     private $_iLevel;
40 40
 
41
-    public function __construct( $iLevel=null ) {
41
+    public function __construct( $iLevel = null ) {
42 42
         $this->_iLevel = null !== $iLevel 
43 43
             ? $iLeevl
44 44
             : error_reporting();
@@ -57,11 +57,11 @@  discard block
 block discarded – undo
57 57
         private function _getIncluded() {
58 58
             
59 59
             $_aIncluded = array();
60
-            foreach( $this->_aLevels as $_iLevel => $iLevelText ) {
60
+            foreach ( $this->_aLevels as $_iLevel => $iLevelText ) {
61 61
                 
62 62
                 // This is where we check if a level was used or not
63 63
                 if ( $this->_iLevel & $_iLevel ) {
64
-                    $_aIncluded[] = $_iLevel;
64
+                    $_aIncluded[ ] = $_iLevel;
65 65
                 }
66 66
                 
67 67
             }
@@ -75,16 +75,16 @@  discard block
 block discarded – undo
75 75
             $_aValues       = array();
76 76
             
77 77
             if ( count( $aIncluded ) > $_iAll / 2 ) {
78
-                $_aValues[] = 'E_ALL';
79
-                foreach( $this->_aLevels as $_iLevel => $iLevelText ) {
80
-                    if ( ! in_array( $_iLevel, $aIncluded ) ) {
81
-                        $_aValues[] = $iLevelText;
78
+                $_aValues[ ] = 'E_ALL';
79
+                foreach ( $this->_aLevels as $_iLevel => $iLevelText ) {
80
+                    if ( !in_array( $_iLevel, $aIncluded ) ) {
81
+                        $_aValues[ ] = $iLevelText;
82 82
                     }
83 83
                 }
84 84
                 return implode( ' & ~', $_aValues );
85 85
             } 
86
-            foreach( $aIncluded as $_iLevel ) {
87
-                $_aValues[] = $this->_aLevels[ $_iLevel ];
86
+            foreach ( $aIncluded as $_iLevel ) {
87
+                $_aValues[ ] = $this->_aLevels[ $_iLevel ];
88 88
             }
89 89
             return implode( ' | ', $_aValues );
90 90
 
Please login to merge, or discard this patch.
factory/_common/utility/wp_utility/AdminPageFramework_WPUtility_Meta.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,11 +38,11 @@
 block discarded – undo
38 38
      * Retrieves meta data by given keys and type (user or post).
39 39
      * @return      array
40 40
      */
41
-    static public function getMetaDataByKeys( $iObjectID, $aKeys, $sMetaType='post' ) {
41
+    static public function getMetaDataByKeys( $iObjectID, $aKeys, $sMetaType = 'post' ) {
42 42
                
43 43
         $_aSavedMeta = array();
44 44
                     
45
-        if ( ! $iObjectID ) {
45
+        if ( !$iObjectID ) {
46 46
             return $_aSavedMeta;
47 47
         }
48 48
         
Please login to merge, or discard this patch.
factory/_common/utility/wp_utility/AdminPageFramework_WPUtility.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
         if ( is_string( $_sCustomMenuSlug ) ) {
29 29
             return $_sCustomMenuSlug;
30 30
         }
31
-        return 'edit.php?post_type=' . $sPostTypeSlug;
31
+        return 'edit.php?post_type='.$sPostTypeSlug;
32 32
     }             
33 33
  
34 34
     /**
@@ -61,8 +61,8 @@  discard block
 block discarded – undo
61 61
     static public function getWPAdminDirPath() {
62 62
          
63 63
         $_sWPAdminPath = str_replace( 
64
-            get_bloginfo( 'url' ) . '/', // search
65
-            ABSPATH,    // replace
64
+            get_bloginfo( 'url' ).'/', // search
65
+            ABSPATH, // replace
66 66
             get_admin_url() // subject - works even in the network admin
67 67
         );
68 68
         return rtrim( $_sWPAdminPath, '/' );
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
      * @since       3.7.0
79 79
      * @return      void
80 80
      */
81
-    static public function goToLocalURL( $sURL, $oCallbackOnError=null ) {
81
+    static public function goToLocalURL( $sURL, $oCallbackOnError = null ) {
82 82
         self::redirectByType( $sURL, 1, $oCallbackOnError );
83 83
     }
84 84
     
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
      * @since       3.7.0      Added the second callback parameter.
90 90
      * @return      void
91 91
      */
92
-    static public function goToURL( $sURL, $oCallbackOnError=null ) {
92
+    static public function goToURL( $sURL, $oCallbackOnError = null ) {
93 93
         self::redirectByType( $sURL, 0, $oCallbackOnError );
94 94
     }
95 95
     
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
      * @param       integer     $iType              0: external site, 1: local site (within the same domain).
100 100
      * @param       callable    $oCallbackOnError
101 101
      */
102
-    static public function redirectByType( $sURL, $iType=0, $oCallbackOnError=null ) {
102
+    static public function redirectByType( $sURL, $iType = 0, $oCallbackOnError = null ) {
103 103
      
104 104
         $_iRedirectError = self::getRedirectPreError( $sURL, $iType );
105 105
         if ( $_iRedirectError && is_callable( $oCallbackOnError ) ) {
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
     static public function getRedirectPreError( $sURL, $iType ) {
131 131
         
132 132
         // check only externnal urls as local ones can be a relative url and always fails the below check.
133
-        if ( ! $iType && filter_var( $sURL, FILTER_VALIDATE_URL) === false ) {
133
+        if ( !$iType && filter_var( $sURL, FILTER_VALIDATE_URL ) === false ) {
134 134
             return 1;
135 135
         }
136 136
         // If HTTP headers are already sent, redirect cannot be done.
Please login to merge, or discard this patch.
factory/_common/utility/wp_utility/AdminPageFramework_WPUtility_File.php 2 patches
Spacing   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
      * @since   3.6.2       Supported a text content to be passed to the first parameter.
29 29
      * @access  public
30 30
      */ 
31
-    static public function getScriptData( $sPathOrContent, $sType='plugin', $aDefaultHeaderKeys=array() ) {
31
+    static public function getScriptData( $sPathOrContent, $sType = 'plugin', $aDefaultHeaderKeys = array() ) {
32 32
         
33 33
         $_aHeaderKeys = $aDefaultHeaderKeys + array(
34 34
             // storing array key =>    the comment entry header label
@@ -66,19 +66,19 @@  discard block
 block discarded – undo
66 66
 
67 67
         switch ( trim( $sType ) ) {
68 68
             case 'theme':    
69
-                $aData['sName'] = $aData['sThemeName'];
70
-                $aData['sURI'] = $aData['sThemeURI'];
69
+                $aData[ 'sName' ] = $aData[ 'sThemeName' ];
70
+                $aData[ 'sURI' ] = $aData[ 'sThemeURI' ];
71 71
                 break;
72 72
             case 'library':    
73
-                $aData['sName'] = $aData['sLibraryName'];
74
-                $aData['sURI'] = $aData['sLibraryURI'];
73
+                $aData[ 'sName' ] = $aData[ 'sLibraryName' ];
74
+                $aData[ 'sURI' ] = $aData[ 'sLibraryURI' ];
75 75
                 break;
76 76
             case 'script':    
77
-                $aData['sName'] = $aData['sScriptName'];
77
+                $aData[ 'sName' ] = $aData[ 'sScriptName' ];
78 78
                 break;     
79 79
             case 'plugin':    
80
-                $aData['sName'] = $aData['sPluginName'];
81
-                $aData['sURI'] = $aData['sPluginURI'];
80
+                $aData[ 'sName' ] = $aData[ 'sPluginName' ];
81
+                $aData[ 'sURI' ] = $aData[ 'sPluginURI' ];
82 82
                 break;
83 83
             default:    
84 84
                 break;     
@@ -93,22 +93,22 @@  discard block
 block discarded – undo
93 93
      * @since       3.6.2
94 94
      * @return      array       The script data
95 95
      */
96
-    static public function getScriptDataFromContents( $sContent, $sType='plugin', $aDefaultHeaderKeys=array() ) {
96
+    static public function getScriptDataFromContents( $sContent, $sType = 'plugin', $aDefaultHeaderKeys = array() ) {
97 97
         
98 98
         // Make sure we catch CR-only line endings.
99 99
         $sContent = str_replace( "\r", "\n", $sContent );
100 100
         
101
-        $_aHeaders      = $aDefaultHeaderKeys;
101
+        $_aHeaders = $aDefaultHeaderKeys;
102 102
         if ( $sType ) {
103 103
             $_aExtraHeaders = apply_filters( "extra_{$sType}_headers", array() );
104
-            if ( ! empty( $_aExtraHeaders ) ) {
104
+            if ( !empty( $_aExtraHeaders ) ) {
105 105
                 $_aExtraHeaders = array_combine( $_aExtraHeaders, $_aExtraHeaders ); // keys equal values
106 106
                 $_aHeaders      = array_merge( $_aExtraHeaders, ( array ) $aDefaultHeaderKeys );
107 107
             }
108 108
         } 
109 109
 
110 110
         foreach ( $_aHeaders as $_sHeaderKey => $_sRegex ) {
111
-            $_bFound = preg_match( '/^[ \t\/*#@]*' . preg_quote( $_sRegex, '/' ) . ':(.*)$/mi', $sContent, $_aMatch );
111
+            $_bFound = preg_match( '/^[ \t\/*#@]*'.preg_quote( $_sRegex, '/' ).':(.*)$/mi', $sContent, $_aMatch );
112 112
             $_aHeaders[ $_sHeaderKey ] = $_bFound && $_aMatch[ 1 ]
113 113
                 ? _cleanup_header_comment( $_aMatch[ 1 ] )
114 114
                 : '';        
@@ -125,14 +125,14 @@  discard block
 block discarded – undo
125 125
      * @since       3.4.2
126 126
      * @see         download_url() in file.php in core.
127 127
      */
128
-    static public function download( $sURL, $iTimeOut=300 ) {
128
+    static public function download( $sURL, $iTimeOut = 300 ) {
129 129
         
130 130
         if ( false === filter_var( $sURL, FILTER_VALIDATE_URL ) ) {
131 131
             return false;
132 132
         }
133 133
 
134 134
         $_sTmpFileName = self::setTempPath( self::getBaseNameOfURL( $sURL ) );
135
-        if ( ! $_sTmpFileName ) {
135
+        if ( !$_sTmpFileName ) {
136 136
             return false;
137 137
         }
138 138
 
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
             return false;
151 151
         }
152 152
 
153
-        if ( 200 != wp_remote_retrieve_response_code( $_aoResponse ) ){
153
+        if ( 200 != wp_remote_retrieve_response_code( $_aoResponse ) ) {
154 154
             unlink( $_sTmpFileName );
155 155
             return false;
156 156
         }
@@ -175,16 +175,16 @@  discard block
 block discarded – undo
175 175
      * @since       3.4.2
176 176
      * @return      string      The set file path.
177 177
      */
178
-    static public function setTempPath( $sFilePath='' ) {
178
+    static public function setTempPath( $sFilePath = '' ) {
179 179
         
180 180
         $_sDir = get_temp_dir();
181 181
         
182 182
         $sFilePath = basename( $sFilePath );
183 183
         if ( empty( $sFilePath ) ) {            
184
-            $sFilePath = time() . '.tmp';
184
+            $sFilePath = time().'.tmp';
185 185
         }
186 186
 
187
-        $sFilePath = $_sDir . wp_unique_filename( $_sDir, $sFilePath );
187
+        $sFilePath = $_sDir.wp_unique_filename( $_sDir, $sFilePath );
188 188
         touch( $sFilePath );
189 189
         return $sFilePath;
190 190
         
@@ -197,7 +197,7 @@  discard block
 block discarded – undo
197 197
      */
198 198
     static public function getBaseNameOfURL( $sURL ) {
199 199
         
200
-        $_sPath         = parse_url( $sURL, PHP_URL_PATH) ; 
200
+        $_sPath         = parse_url( $sURL, PHP_URL_PATH ); 
201 201
         $_sFileBaseName = basename( $_sPath );
202 202
         return $_sFileBaseName;
203 203
         
Please login to merge, or discard this patch.
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
             return false;
151 151
         }
152 152
 
153
-        if ( 200 != wp_remote_retrieve_response_code( $_aoResponse ) ){
153
+        if ( 200 != wp_remote_retrieve_response_code( $_aoResponse ) ) {
154 154
             unlink( $_sTmpFileName );
155 155
             return false;
156 156
         }
@@ -180,7 +180,7 @@  discard block
 block discarded – undo
180 180
         $_sDir = get_temp_dir();
181 181
         
182 182
         $sFilePath = basename( $sFilePath );
183
-        if ( empty( $sFilePath ) ) {            
183
+        if ( empty( $sFilePath ) ) {
184 184
             $sFilePath = time() . '.tmp';
185 185
         }
186 186
 
Please login to merge, or discard this patch.
utility/wp_utility/AdminPageFramework_WPUtility_SystemInformation.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
                 : @mysql_get_server_info(),
43 43
         );
44 44
         
45
-        foreach( ( array ) $wpdb->get_results( "SHOW VARIABLES", ARRAY_A ) as $_iIndex => $_aItem ) {
45
+        foreach ( ( array ) $wpdb->get_results( "SHOW VARIABLES", ARRAY_A ) as $_iIndex => $_aItem ) {
46 46
             
47 47
             $_aItem     = array_values( $_aItem );
48 48
             $_sKey      = array_shift( $_aItem );
@@ -63,8 +63,8 @@  discard block
 block discarded – undo
63 63
     static public function getMySQLErrorLogPath() {
64 64
         
65 65
         $_aMySQLInfo = self::getMySQLInfo();
66
-        return isset( $_aMySQLInfo['log_error'] )
67
-            ? $_aMySQLInfo['log_error']
66
+        return isset( $_aMySQLInfo[ 'log_error' ] )
67
+            ? $_aMySQLInfo[ 'log_error' ]
68 68
             : '';
69 69
         
70 70
     }
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
      * Returns a PHP error log.
74 74
      * @since       3.4.6
75 75
      */
76
-    static public function getMySQLErrorLog( $iLines=1 ) {
76
+    static public function getMySQLErrorLog( $iLines = 1 ) {
77 77
         
78 78
         $_sLog = self::getFileTailContents( self::getMySQLErrorLogPath(), $iLines );
79 79
         
Please login to merge, or discard this patch.