@@ -29,9 +29,9 @@ discard block |
||
29 | 29 | 'tab_slug' => $this->sTabSlug, |
30 | 30 | 'section_id' => $this->sTabSlug, |
31 | 31 | 'section_tab_slug' => 'welcome', |
32 | - 'title' => __( "What's New", 'admin-page-framework-loader' ), // ' |
|
32 | + 'title' => __( "What's New", 'admin-page-framework-loader' ), // ' |
|
33 | 33 | 'content' => $this->_getReadmeContents( |
34 | - AdminPageFrameworkLoader_Registry::$sDirPath . '/asset/text/about.txt', |
|
34 | + AdminPageFrameworkLoader_Registry::$sDirPath.'/asset/text/about.txt', |
|
35 | 35 | '', // TOC title |
36 | 36 | array( 'New Features' ) // section |
37 | 37 | ) |
@@ -40,10 +40,10 @@ discard block |
||
40 | 40 | 'tab_slug' => $this->sTabSlug, |
41 | 41 | 'section_tab_slug' => $this->sTabSlug, |
42 | 42 | 'section_id' => 'getting_started', |
43 | - 'title' => __( "Getting Started", 'admin-page-framework-loader' ), // ' |
|
43 | + 'title' => __( "Getting Started", 'admin-page-framework-loader' ), // ' |
|
44 | 44 | 'content' => $this->_getReadmeContents( |
45 | - AdminPageFrameworkLoader_Registry::$sDirPath . '/asset/text/about.txt', |
|
46 | - "<h3>" . __( 'Contents', 'admin-page-framework-loader' ) . "</h3>", |
|
45 | + AdminPageFrameworkLoader_Registry::$sDirPath.'/asset/text/about.txt', |
|
46 | + "<h3>".__( 'Contents', 'admin-page-framework-loader' )."</h3>", |
|
47 | 47 | array( 'Getting Started', 'Tutorials' ) |
48 | 48 | ), |
49 | 49 | ), |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | 'tab_slug' => $this->sTabSlug, |
52 | 52 | 'section_tab_slug' => $this->sTabSlug, |
53 | 53 | 'section_id' => 'change_log', |
54 | - 'title' => __( "Change Log", 'admin-page-framework-loader' ), // ' |
|
54 | + 'title' => __( "Change Log", 'admin-page-framework-loader' ), // ' |
|
55 | 55 | 'content' => $this->_getChangeLog(), |
56 | 56 | ) |
57 | 57 | ); |
@@ -87,13 +87,13 @@ discard block |
||
87 | 87 | array( |
88 | 88 | 'field_id' => 'github_star', |
89 | 89 | 'type' => 'github', |
90 | - 'user_name' => 'michaeluno', // the GitHub account ID |
|
91 | - 'button_type' => 'star', // either of the followings: follow, star, watch, fork, issue |
|
90 | + 'user_name' => 'michaeluno', // the GitHub account ID |
|
91 | + 'button_type' => 'star', // either of the followings: follow, star, watch, fork, issue |
|
92 | 92 | 'count' => false, |
93 | 93 | 'repository' => 'admin-page-framework', |
94 | 94 | 'size' => 'mega', |
95 | 95 | 'attributes' => array( |
96 | - 'data-text' => ' ' . AdminPageFramework_Registry::NAME . ' ' . AdminPageFramework_Registry::getVersion() . ' ', |
|
96 | + 'data-text' => ' '.AdminPageFramework_Registry::NAME.' '.AdminPageFramework_Registry::getVersion().' ', |
|
97 | 97 | // 'data-icon' => 'octicon-mark-github', |
98 | 98 | ), |
99 | 99 | 'description' => __( 'Star the repository and get Involved!', 'admin-page-framework-loader' ), |
@@ -133,26 +133,26 @@ discard block |
||
133 | 133 | * @since 3.6.1 |
134 | 134 | * @return void |
135 | 135 | */ |
136 | - private function _getChangeLog( $sSection='Changelog' ) { |
|
136 | + private function _getChangeLog( $sSection = 'Changelog' ) { |
|
137 | 137 | |
138 | - $_aReplacements = array( |
|
138 | + $_aReplacements = array( |
|
139 | 139 | '%PLUGIN_DIR_URL%' => AdminPageFrameworkLoader_Registry::getPluginURL(), |
140 | 140 | '%WP_ADMIN_URL%' => admin_url(), |
141 | 141 | ); |
142 | 142 | $_oWPReadmeParser = new AdminPageFramework_WPReadmeParser( |
143 | - AdminPageFrameworkLoader_Registry::$sDirPath . '/readme.txt', |
|
143 | + AdminPageFrameworkLoader_Registry::$sDirPath.'/readme.txt', |
|
144 | 144 | $_aReplacements |
145 | 145 | ); |
146 | 146 | $_sChangeLog = $_oWPReadmeParser->getSection( $sSection ); |
147 | 147 | $_oWPReadmeParser = new AdminPageFramework_WPReadmeParser( |
148 | - AdminPageFrameworkLoader_Registry::$sDirPath . '/changelog.md', |
|
148 | + AdminPageFrameworkLoader_Registry::$sDirPath.'/changelog.md', |
|
149 | 149 | $_aReplacements |
150 | 150 | ); |
151 | 151 | $_sChangeLog .= $_oWPReadmeParser->getSection( $sSection ); |
152 | 152 | |
153 | 153 | $_sChangeLog = $_sChangeLog |
154 | 154 | ? $_sChangeLog |
155 | - : '<p>' . __( 'No valid changlog was found.', 'admin-page-framework-loader' ) . '</p>'; |
|
155 | + : '<p>'.__( 'No valid changlog was found.', 'admin-page-framework-loader' ).'</p>'; |
|
156 | 156 | return "<div class='changelog'>" |
157 | 157 | . $_sChangeLog |
158 | 158 | . "</div>"; |
@@ -183,18 +183,18 @@ discard block |
||
183 | 183 | return ''; |
184 | 184 | } |
185 | 185 | |
186 | - $_aOutput = array(); |
|
186 | + $_aOutput = array(); |
|
187 | 187 | foreach ( $_aContributors as $_oContributor ) { |
188 | - $_aOutput[] = '<li class="wp-person">'; |
|
189 | - $_aOutput[] .= sprintf( '<a href="%s" title="%s">', |
|
190 | - esc_url( 'https://github.com/' . $_oContributor->login ), |
|
188 | + $_aOutput[ ] = '<li class="wp-person">'; |
|
189 | + $_aOutput[ ] .= sprintf( '<a href="%s" title="%s">', |
|
190 | + esc_url( 'https://github.com/'.$_oContributor->login ), |
|
191 | 191 | esc_html( sprintf( __( 'View %s', 'admin-page-framework-loader' ), $_oContributor->login ) ) |
192 | 192 | ); |
193 | - $_aOutput[] .= sprintf( '<img src="%s" width="64" height="64" class="gravatar" alt="%s" />', esc_url( $_oContributor->avatar_url ), esc_html( $_oContributor->login ) ); |
|
194 | - $_aOutput[] .= '</a>'; |
|
195 | - $_aOutput[] .= sprintf( '<a class="web" href="%s">%s</a>', esc_url( 'https://github.com/' . $_oContributor->login ), esc_html( $_oContributor->login ) ); |
|
196 | - $_aOutput[] .= '</a>'; |
|
197 | - $_aOutput[] .= '</li>'; |
|
193 | + $_aOutput[ ] .= sprintf( '<img src="%s" width="64" height="64" class="gravatar" alt="%s" />', esc_url( $_oContributor->avatar_url ), esc_html( $_oContributor->login ) ); |
|
194 | + $_aOutput[ ] .= '</a>'; |
|
195 | + $_aOutput[ ] .= sprintf( '<a class="web" href="%s">%s</a>', esc_url( 'https://github.com/'.$_oContributor->login ), esc_html( $_oContributor->login ) ); |
|
196 | + $_aOutput[ ] .= '</a>'; |
|
197 | + $_aOutput[ ] .= '</li>'; |
|
198 | 198 | } |
199 | 199 | |
200 | 200 | return '<ul class="wp-people-group">' |
@@ -218,7 +218,7 @@ discard block |
||
218 | 218 | return $_aContributors; |
219 | 219 | } |
220 | 220 | |
221 | - $_mResponse = wp_remote_get( $sRepositoryURL . '/contributors', array( 'sslverify' => false ) ); |
|
221 | + $_mResponse = wp_remote_get( $sRepositoryURL.'/contributors', array( 'sslverify' => false ) ); |
|
222 | 222 | |
223 | 223 | if ( is_wp_error( $_mResponse ) || 200 != wp_remote_retrieve_response_code( $_mResponse ) ) { |
224 | 224 | return array(); |
@@ -226,7 +226,7 @@ discard block |
||
226 | 226 | |
227 | 227 | $_aContributors = json_decode( wp_remote_retrieve_body( $_mResponse ) ); |
228 | 228 | |
229 | - if ( ! is_array( $_aContributors ) ) |
|
229 | + if ( !is_array( $_aContributors ) ) |
|
230 | 230 | return array(); |
231 | 231 | |
232 | 232 | set_transient( 'apfl_contributors', $_aContributors, 3600 ); |
@@ -226,8 +226,9 @@ |
||
226 | 226 | |
227 | 227 | $_aContributors = json_decode( wp_remote_retrieve_body( $_mResponse ) ); |
228 | 228 | |
229 | - if ( ! is_array( $_aContributors ) ) |
|
230 | - return array(); |
|
229 | + if ( ! is_array( $_aContributors ) ) { |
|
230 | + return array(); |
|
231 | + } |
|
231 | 232 | |
232 | 233 | set_transient( 'apfl_contributors', $_aContributors, 3600 ); |
233 | 234 |
@@ -18,19 +18,19 @@ discard block |
||
18 | 18 | */ |
19 | 19 | public function start() { |
20 | 20 | |
21 | - if ( ! $this->oProp->bIsAdmin ) { |
|
21 | + if ( !$this->oProp->bIsAdmin ) { |
|
22 | 22 | return; |
23 | 23 | } |
24 | - if ( ! is_network_admin() ) { |
|
24 | + if ( !is_network_admin() ) { |
|
25 | 25 | return; |
26 | 26 | } |
27 | 27 | |
28 | 28 | // Enable / disable the demo pages |
29 | - if ( isset( $_GET['enable_apfl_demo_pages'] ) ) { |
|
29 | + if ( isset( $_GET[ 'enable_apfl_demo_pages' ] ) ) { |
|
30 | 30 | |
31 | 31 | // Update the options and reload the page |
32 | - $_oOption = AdminPageFrameworkLoader_Option::getInstance( AdminPageFrameworkLoader_Registry::$aOptionKeys['main'] ); |
|
33 | - $_oOption->update( 'enable_demo', $_GET['enable_apfl_demo_pages'] ); |
|
32 | + $_oOption = AdminPageFrameworkLoader_Option::getInstance( AdminPageFrameworkLoader_Registry::$aOptionKeys[ 'main' ] ); |
|
33 | + $_oOption->update( 'enable_demo', $_GET[ 'enable_apfl_demo_pages' ] ); |
|
34 | 34 | exit( wp_safe_redirect( remove_query_arg( 'enable_apfl_demo_pages' ) ) ); |
35 | 35 | |
36 | 36 | } |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | $this->_getDemoSwitcherLink( $this->oProp->aOptions ) |
50 | 50 | ); |
51 | 51 | $this->addLinkToPluginDescription( |
52 | - "<a href='https://wordpress.org/support/plugin/admin-page-framework' target='_blank'>" . __( 'Support', 'admin-page-framework-loader' ) . "</a>" |
|
52 | + "<a href='https://wordpress.org/support/plugin/admin-page-framework' target='_blank'>".__( 'Support', 'admin-page-framework-loader' )."</a>" |
|
53 | 53 | ); |
54 | 54 | |
55 | 55 | } |
@@ -57,10 +57,10 @@ discard block |
||
57 | 57 | /** |
58 | 58 | * Returns the switch link of the demo pages. |
59 | 59 | */ |
60 | - private function _getDemoSwitcherLink( $mOptions=array() ) { |
|
60 | + private function _getDemoSwitcherLink( $mOptions = array() ) { |
|
61 | 61 | |
62 | - $_bEnabled = isset( $mOptions['enable_demo'] ) && $mOptions['enable_demo']; |
|
63 | - $_sLink = esc_url( |
|
62 | + $_bEnabled = isset( $mOptions[ 'enable_demo' ] ) && $mOptions[ 'enable_demo' ]; |
|
63 | + $_sLink = esc_url( |
|
64 | 64 | add_query_arg( |
65 | 65 | array( |
66 | 66 | 'enable_apfl_demo_pages' => $_bEnabled ? 0 : 1, |
@@ -68,8 +68,8 @@ discard block |
||
68 | 68 | ) |
69 | 69 | ); |
70 | 70 | return $_bEnabled |
71 | - ? "<a href='{$_sLink}'>" . __( 'Disable Demo', 'admin-page-framework-loader' ) . "</a>" |
|
72 | - : "<a href='{$_sLink}'><strong style='font-size: 1em;'>" . __( 'Enable Demo', 'admin-page-framework-loader' ) . "</strong></a>"; |
|
71 | + ? "<a href='{$_sLink}'>".__( 'Disable Demo', 'admin-page-framework-loader' )."</a>" |
|
72 | + : "<a href='{$_sLink}'><strong style='font-size: 1em;'>".__( 'Enable Demo', 'admin-page-framework-loader' )."</strong></a>"; |
|
73 | 73 | |
74 | 74 | } |
75 | 75 |
@@ -10,7 +10,7 @@ discard block |
||
10 | 10 | * |
11 | 11 | */ |
12 | 12 | |
13 | -if ( ! class_exists( 'AdminPageFramework_PluginBootstrap' ) ) { |
|
13 | +if ( !class_exists( 'AdminPageFramework_PluginBootstrap' ) ) { |
|
14 | 14 | return; |
15 | 15 | } |
16 | 16 | |
@@ -31,8 +31,8 @@ discard block |
||
31 | 31 | |
32 | 32 | // Include the include lists. The including file reassigns the list(array) to the $_aClassFiles variable. |
33 | 33 | $_aClassFiles = array(); |
34 | - $_bLoaded = include( dirname( $this->sFilePath ) . '/include/admin-page-framework-loader-include-class-file-list.php' ); |
|
35 | - if ( ! $_bLoaded ) { |
|
34 | + $_bLoaded = include( dirname( $this->sFilePath ).'/include/admin-page-framework-loader-include-class-file-list.php' ); |
|
35 | + if ( !$_bLoaded ) { |
|
36 | 36 | return $_aClassFiles; |
37 | 37 | } |
38 | 38 | return $_aClassFiles; |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | if ( $_oRequirementCheck->check() ) { |
62 | 62 | $_oRequirementCheck->deactivatePlugin( |
63 | 63 | $this->sFilePath, |
64 | - __( 'Deactivating the plugin', 'admin-page-framework-loader' ), // additional message |
|
64 | + __( 'Deactivating the plugin', 'admin-page-framework-loader' ), // additional message |
|
65 | 65 | true // is in the activation hook. This will exit the script. |
66 | 66 | ); |
67 | 67 | } |
@@ -76,20 +76,20 @@ discard block |
||
76 | 76 | public function setLocalization() { |
77 | 77 | |
78 | 78 | // This plugin does not have messages to be displayed in the front end. |
79 | - if ( ! $this->bIsAdmin ) { |
|
79 | + if ( !$this->bIsAdmin ) { |
|
80 | 80 | return; |
81 | 81 | } |
82 | 82 | |
83 | 83 | load_plugin_textdomain( |
84 | 84 | AdminPageFrameworkLoader_Registry::TEXT_DOMAIN, |
85 | 85 | false, |
86 | - dirname( plugin_basename( $this->sFilePath ) ) . '/' . AdminPageFrameworkLoader_Registry::TEXT_DOMAIN_PATH |
|
86 | + dirname( plugin_basename( $this->sFilePath ) ).'/'.AdminPageFrameworkLoader_Registry::TEXT_DOMAIN_PATH |
|
87 | 87 | ); |
88 | 88 | |
89 | 89 | load_plugin_textdomain( |
90 | 90 | 'admin-page-framework', |
91 | 91 | false, |
92 | - dirname( plugin_basename( $this->sFilePath ) ) . '/' . AdminPageFrameworkLoader_Registry::TEXT_DOMAIN_PATH |
|
92 | + dirname( plugin_basename( $this->sFilePath ) ).'/'.AdminPageFrameworkLoader_Registry::TEXT_DOMAIN_PATH |
|
93 | 93 | ); |
94 | 94 | |
95 | 95 | } |
@@ -112,33 +112,33 @@ discard block |
||
112 | 112 | |
113 | 113 | // Loader plugin admin pages. |
114 | 114 | new AdminPageFrameworkLoader_AdminPage( |
115 | - AdminPageFrameworkLoader_Registry::$aOptionKeys[ 'main' ], // the option key |
|
115 | + AdminPageFrameworkLoader_Registry::$aOptionKeys[ 'main' ], // the option key |
|
116 | 116 | $this->sFilePath // caller script path |
117 | 117 | ); |
118 | 118 | |
119 | 119 | new AdminPageFrameworkLoader_AdminPageMetaBox_Notification( |
120 | - null, // meta box id - passing null will make it auto generate |
|
120 | + null, // meta box id - passing null will make it auto generate |
|
121 | 121 | __( 'Notification', 'admin-page-framework-loader' ), // title |
122 | 122 | array( // page slugs |
123 | 123 | AdminPageFrameworkLoader_Registry::$aAdminPages[ 'tool' ], |
124 | 124 | AdminPageFrameworkLoader_Registry::$aAdminPages[ 'addon' ], |
125 | 125 | AdminPageFrameworkLoader_Registry::$aAdminPages[ 'help' ], |
126 | 126 | ), |
127 | - 'side', // context |
|
127 | + 'side', // context |
|
128 | 128 | 'default' // priority |
129 | 129 | ); |
130 | 130 | new AdminPageFrameworkLoader_AdminPageMetaBox_ExternalLinks( |
131 | - null, // meta box id - passing null will make it auto generate |
|
131 | + null, // meta box id - passing null will make it auto generate |
|
132 | 132 | __( 'Resources', 'admin-page-framework-loader' ), // title |
133 | 133 | array( // page slugs |
134 | 134 | AdminPageFrameworkLoader_Registry::$aAdminPages[ 'help' ], |
135 | 135 | ), |
136 | - 'side', // context |
|
136 | + 'side', // context |
|
137 | 137 | 'default' // priority |
138 | 138 | ); |
139 | 139 | |
140 | 140 | new AdminPageFrameworkLoader_NetworkAdmin( |
141 | - AdminPageFrameworkLoader_Registry::$aOptionKeys[ 'main' ], // the option key |
|
141 | + AdminPageFrameworkLoader_Registry::$aOptionKeys[ 'main' ], // the option key |
|
142 | 142 | $this->sFilePath // caller script path |
143 | 143 | ); |
144 | 144 | |
@@ -157,7 +157,7 @@ discard block |
||
157 | 157 | */ |
158 | 158 | private function _shouldShowAdminPages() { |
159 | 159 | |
160 | - if ( ! $this->bIsAdmin ) { |
|
160 | + if ( !$this->bIsAdmin ) { |
|
161 | 161 | return false; |
162 | 162 | } |
163 | 163 | if ( defined( 'APFL_SILENT_MODE' ) && APFL_SILENT_MODE ) { |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | AdminPageFrameworkLoader_Registry::NAME |
59 | 59 | ); |
60 | 60 | |
61 | - if ( $_oRequirementCheck->check() ) { |
|
61 | + if ( $_oRequirementCheck->check() ) { |
|
62 | 62 | $_oRequirementCheck->deactivatePlugin( |
63 | 63 | $this->sFilePath, |
64 | 64 | __( 'Deactivating the plugin', 'admin-page-framework-loader' ), // additional message |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | public function setLocalization() { |
77 | 77 | |
78 | 78 | // This plugin does not have messages to be displayed in the front end. |
79 | - if ( ! $this->bIsAdmin ) { |
|
79 | + if ( ! $this->bIsAdmin ) { |
|
80 | 80 | return; |
81 | 81 | } |
82 | 82 |
@@ -28,11 +28,11 @@ discard block |
||
28 | 28 | * Stores the option values. |
29 | 29 | */ |
30 | 30 | public $aOptions = array( |
31 | - 'welcomed' => false, // if the welcome screen is displayed, this will be true. |
|
32 | - 'enable_admin_pages' => true, // whether or not to enable the admin pages of the loader plugin. |
|
31 | + 'welcomed' => false, // if the welcome screen is displayed, this will be true. |
|
32 | + 'enable_admin_pages' => true, // whether or not to enable the admin pages of the loader plugin. |
|
33 | 33 | 'enable_demo' => false, |
34 | - 'version_upgraded_from' => null, // the version number that the user has upgraded from |
|
35 | - 'version_saved' => null, // represents the option version. |
|
34 | + 'version_upgraded_from' => null, // the version number that the user has upgraded from |
|
35 | + 'version_saved' => null, // represents the option version. |
|
36 | 36 | ); |
37 | 37 | |
38 | 38 | /** |
@@ -52,11 +52,11 @@ discard block |
||
52 | 52 | * |
53 | 53 | * @since 3.5.0 |
54 | 54 | */ |
55 | - static public function getInstance( $sOptionKey='' ) { |
|
55 | + static public function getInstance( $sOptionKey = '' ) { |
|
56 | 56 | |
57 | 57 | $sOptionKey = $sOptionKey |
58 | 58 | ? $sOptionKey |
59 | - : AdminPageFrameworkLoader_Registry::$aOptionKeys['main']; |
|
59 | + : AdminPageFrameworkLoader_Registry::$aOptionKeys[ 'main' ]; |
|
60 | 60 | |
61 | 61 | if ( isset( self::$aInstances[ $sOptionKey ] ) ) { |
62 | 62 | return self::$aInstances[ $sOptionKey ]; |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | */ |
74 | 74 | public function __construct( $sOptionKey ) { |
75 | 75 | |
76 | - $this->bIsNetworkAdmin = is_network_admin(); // must be done first |
|
76 | + $this->bIsNetworkAdmin = is_network_admin(); // must be done first |
|
77 | 77 | $this->sOptionKey = $sOptionKey; |
78 | 78 | $this->aOptions = $this->_getFormattedOptions( $sOptionKey ); |
79 | 79 | |
@@ -98,8 +98,8 @@ discard block |
||
98 | 98 | */ |
99 | 99 | public function hasUpgraded() { |
100 | 100 | |
101 | - $_sOptionVersion = $this->get( 'version_saved' ); |
|
102 | - if ( ! $_sOptionVersion ) { |
|
101 | + $_sOptionVersion = $this->get( 'version_saved' ); |
|
102 | + if ( !$_sOptionVersion ) { |
|
103 | 103 | return false; |
104 | 104 | } |
105 | 105 | $_sOptionVersion = $this->_getVersionByDepth( $_sOptionVersion ); |
@@ -111,8 +111,8 @@ discard block |
||
111 | 111 | * Returns a stating part of version by the given depth. |
112 | 112 | * @since 3.5.0 |
113 | 113 | */ |
114 | - private function _getVersionByDepth( $sVersion, $iDepth=2 ) { |
|
115 | - if ( ! $iDepth ) { |
|
114 | + private function _getVersionByDepth( $sVersion, $iDepth = 2 ) { |
|
115 | + if ( !$iDepth ) { |
|
116 | 116 | return $sVersion; |
117 | 117 | } |
118 | 118 | $_aParts = explode( '.', $sVersion ); |
@@ -123,7 +123,7 @@ discard block |
||
123 | 123 | /** |
124 | 124 | * Deletes the option from the database. |
125 | 125 | */ |
126 | - public function delete() { |
|
126 | + public function delete() { |
|
127 | 127 | return $this->bIsNetworkAdmin |
128 | 128 | ? delete_site_option( $this->sOptionKey ) |
129 | 129 | : delete_option( $this->sOptionKey ); |
@@ -132,7 +132,7 @@ discard block |
||
132 | 132 | /** |
133 | 133 | * Saves the options. |
134 | 134 | */ |
135 | - public function save( $aOptions=null ) { |
|
135 | + public function save( $aOptions = null ) { |
|
136 | 136 | |
137 | 137 | $_aOptions = $aOptions ? $aOptions : $this->aOptions; |
138 | 138 | return $this->bIsNetworkAdmin |
@@ -151,15 +151,15 @@ discard block |
||
151 | 151 | */ |
152 | 152 | public function set( /* $asKeys, $mValue */ ) { |
153 | 153 | |
154 | - $_aParameters = func_get_args(); |
|
155 | - if ( ! isset( $_aParameters[ 0 ], $_aParameters[ 1 ] ) ) { |
|
154 | + $_aParameters = func_get_args(); |
|
155 | + if ( !isset( $_aParameters[ 0 ], $_aParameters[ 1 ] ) ) { |
|
156 | 156 | return; |
157 | 157 | } |
158 | 158 | $_asKeys = $_aParameters[ 0 ]; |
159 | 159 | $_mValue = $_aParameters[ 1 ]; |
160 | 160 | |
161 | 161 | // string, integer, float, boolean |
162 | - if ( ! is_array( $_asKeys ) ) { |
|
162 | + if ( !is_array( $_asKeys ) ) { |
|
163 | 163 | $this->aOptions[ $_asKeys ] = $_mValue; |
164 | 164 | return; |
165 | 165 | } |
@@ -174,8 +174,8 @@ discard block |
||
174 | 174 | */ |
175 | 175 | public function update( /* $asKeys, $mValue */ ) { |
176 | 176 | |
177 | - $_aParameters = func_get_args(); |
|
178 | - call_user_func_array( array( $this, 'set' ), $_aParameters ); |
|
177 | + $_aParameters = func_get_args(); |
|
178 | + call_user_func_array( array( $this, 'set' ), $_aParameters ); |
|
179 | 179 | $this->save(); |
180 | 180 | |
181 | 181 | } |
@@ -189,11 +189,11 @@ discard block |
||
189 | 189 | |
190 | 190 | $_mDefault = null; |
191 | 191 | $_aKeys = func_get_args(); |
192 | - if ( ! isset( $_aKeys[ 0 ] ) ) { |
|
192 | + if ( !isset( $_aKeys[ 0 ] ) ) { |
|
193 | 193 | return null; |
194 | 194 | } |
195 | 195 | if ( is_array( $_aKeys[ 0 ] ) ) { |
196 | - $_aKeys = $_aKeys[ 0 ]; |
|
196 | + $_aKeys = $_aKeys[ 0 ]; |
|
197 | 197 | $_mDefault = isset( $_aKeys[ 1 ] ) |
198 | 198 | ? $_aKeys[ 1 ] |
199 | 199 | : null; |
@@ -123,7 +123,7 @@ |
||
123 | 123 | /** |
124 | 124 | * Deletes the option from the database. |
125 | 125 | */ |
126 | - public function delete() { |
|
126 | + public function delete() { |
|
127 | 127 | return $this->bIsNetworkAdmin |
128 | 128 | ? delete_site_option( $this->sOptionKey ) |
129 | 129 | : delete_option( $this->sOptionKey ); |
@@ -24,7 +24,7 @@ |
||
24 | 24 | public function __construct() { |
25 | 25 | |
26 | 26 | new AdminPageFrameworkLoader_Event_Action_GetDevelopmentVersion( |
27 | - AdminPageFrameworkLoader_Registry::HOOK_SLUG . '_action_get_development_version' // action name |
|
27 | + AdminPageFrameworkLoader_Registry::HOOK_SLUG.'_action_get_development_version' // action name |
|
28 | 28 | ); |
29 | 29 | |
30 | 30 | } |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | */ |
40 | 40 | public function replyToDoAction() { |
41 | 41 | AdminPageFramework_WPUtility::setTransient( |
42 | - AdminPageFrameworkLoader_Registry::TRANSIENT_PREFIX . 'devver', |
|
42 | + AdminPageFrameworkLoader_Registry::TRANSIENT_PREFIX.'devver', |
|
43 | 43 | $this->_getVersion(), // data - if an error occurs, an empty string will be given |
44 | 44 | 604800 // for one week |
45 | 45 | ); |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | $_sPageBody = $this->_getPageBody(); |
56 | 56 | $_aHeaders = $_oUtil->getScriptData( |
57 | 57 | $_sPageBody, |
58 | - '', /// context |
|
58 | + '', /// context |
|
59 | 59 | array( 'version' => 'Version' ) |
60 | 60 | ); |
61 | 61 | return $_oUtil->getElement( |
@@ -26,7 +26,7 @@ |
||
26 | 26 | * |
27 | 27 | * @since 3.6.2 |
28 | 28 | */ |
29 | - public function __construct( $sActionName ) { |
|
29 | + public function __construct( $sActionName ) { |
|
30 | 30 | add_action( |
31 | 31 | $sActionName, |
32 | 32 | array( $this, 'replyToDoAction' ) |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | * |
48 | 48 | * @return array |
49 | 49 | */ |
50 | - public function get( $iItems=0 ) { |
|
50 | + public function get( $iItems = 0 ) { |
|
51 | 51 | |
52 | 52 | $_aOutput = array(); |
53 | 53 | $_aURLs = $this->_aURLs; |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | return $_aOutput; |
57 | 57 | } |
58 | 58 | |
59 | - $_oFeed = fetch_feed( $_aURLs ); |
|
59 | + $_oFeed = fetch_feed( $_aURLs ); |
|
60 | 60 | foreach ( $_oFeed->get_items() as $_oItem ) { |
61 | 61 | $_aOutput[ $_oItem->get_title() ] = array( |
62 | 62 | 'content' => $_oItem->get_content(), |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | 'title' => $_oItem->get_title(), |
65 | 65 | 'date' => $_oItem->get_date( 'j F Y, g:i a' ), |
66 | 66 | 'author' => $_oItem->get_author(), |
67 | - 'link' => $_oItem->get_permalink(), // get_link() may be used as well |
|
67 | + 'link' => $_oItem->get_permalink(), // get_link() may be used as well |
|
68 | 68 | ); |
69 | 69 | } |
70 | 70 |
@@ -30,7 +30,7 @@ |
||
30 | 30 | */ |
31 | 31 | $_sMaingPluginFileName = 'admin-page-framework-loader.php'; |
32 | 32 | if ( file_exists( dirname( __FILE__ ). '/' . $_sMaingPluginFileName ) ) { |
33 | - include( $_sMaingPluginFileName ); |
|
33 | + include( $_sMaingPluginFileName ); |
|
34 | 34 | } |
35 | 35 | |
36 | 36 | if ( class_exists( 'AdminPageFrameworkLoader_Registry' ) ) : |
@@ -9,10 +9,10 @@ discard block |
||
9 | 9 | * @since 3.5.0 |
10 | 10 | */ |
11 | 11 | |
12 | -if ( ! defined( 'ABSPATH' ) ) { |
|
12 | +if ( !defined( 'ABSPATH' ) ) { |
|
13 | 13 | exit; |
14 | 14 | } |
15 | -if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) { |
|
15 | +if ( !defined( 'WP_UNINSTALL_PLUGIN' ) ) { |
|
16 | 16 | exit; |
17 | 17 | } |
18 | 18 | |
@@ -21,15 +21,15 @@ discard block |
||
21 | 21 | * We are going to load the main file to get the registry class. And in the main file, |
22 | 22 | * if this constant is set, it will return after declaring the registry class. |
23 | 23 | **/ |
24 | -if ( ! defined( 'DOING_UNINSTALL' ) ) { |
|
25 | - define( 'DOING_UNINSTALL', true ); |
|
24 | +if ( !defined( 'DOING_UNINSTALL' ) ) { |
|
25 | + define( 'DOING_UNINSTALL', true ); |
|
26 | 26 | } |
27 | 27 | |
28 | 28 | /** |
29 | 29 | * Set the main plugin file name here. |
30 | 30 | */ |
31 | -$_sMaingPluginFileName = 'admin-page-framework-loader.php'; |
|
32 | -if ( file_exists( dirname( __FILE__ ). '/' . $_sMaingPluginFileName ) ) { |
|
31 | +$_sMaingPluginFileName = 'admin-page-framework-loader.php'; |
|
32 | +if ( file_exists( dirname( __FILE__ ).'/'.$_sMaingPluginFileName ) ) { |
|
33 | 33 | include( $_sMaingPluginFileName ); |
34 | 34 | } |
35 | 35 | |
@@ -41,12 +41,12 @@ discard block |
||
41 | 41 | // Delete transients |
42 | 42 | $_aPrefixes = array( |
43 | 43 | AdminPageFrameworkLoader_Registry::TRANSIENT_PREFIX, // the plugin transients |
44 | - 'apf_', // the admin page framework transients |
|
44 | + 'apf_', // the admin page framework transients |
|
45 | 45 | ); |
46 | - foreach( $_aPrefixes as $_sPrefix ) { |
|
47 | - if ( ! $_sPrefix ) { continue; } |
|
48 | - $GLOBALS['wpdb']->query( "DELETE FROM `" . $GLOBALS['table_prefix'] . "options` WHERE `option_name` LIKE ( '_transient_%{$_sPrefix}%' )" ); |
|
49 | - $GLOBALS['wpdb']->query( "DELETE FROM `" . $GLOBALS['table_prefix'] . "options` WHERE `option_name` LIKE ( '_transient_timeout_%{$_sPrefix}%' )" ); |
|
46 | + foreach ( $_aPrefixes as $_sPrefix ) { |
|
47 | + if ( !$_sPrefix ) { continue; } |
|
48 | + $GLOBALS[ 'wpdb' ]->query( "DELETE FROM `".$GLOBALS[ 'table_prefix' ]."options` WHERE `option_name` LIKE ( '_transient_%{$_sPrefix}%' )" ); |
|
49 | + $GLOBALS[ 'wpdb' ]->query( "DELETE FROM `".$GLOBALS[ 'table_prefix' ]."options` WHERE `option_name` LIKE ( '_transient_timeout_%{$_sPrefix}%' )" ); |
|
50 | 50 | } |
51 | 51 | |
52 | 52 | endif; |
53 | 53 | \ No newline at end of file |
@@ -299,8 +299,6 @@ |
||
299 | 299 | * @since DEVVER Changed back the visibility scope to protected as there is the `getFieldErrors()` public method. |
300 | 300 | * @access protected |
301 | 301 | * @internal |
302 | - * @param string $sID deprecated |
|
303 | - * @param boolean $bDelete whether or not the transient should be deleted after retrieving it. |
|
304 | 302 | * @return array |
305 | 303 | * @deprecated DEVVER Use `getFieldErrors()` instead. Kept for backward compatibility. |
306 | 304 | */ |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | 'title' => null, |
65 | 65 | 'help_aside' => null, |
66 | 66 | ); |
67 | - if ( ! $aFieldset[ 'help' ] ) { |
|
67 | + if ( !$aFieldset[ 'help' ] ) { |
|
68 | 68 | return; |
69 | 69 | } |
70 | 70 | $this->oHelpPane->_addHelpTextForFormFields( |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | public function _replyToModifySectionsets( $aSectionsets ) { |
102 | 102 | |
103 | 103 | return $this->oUtil->addAndApplyFilter( |
104 | - $this, // caller factory object |
|
104 | + $this, // caller factory object |
|
105 | 105 | "sections_{$this->oProp->sClassName}", |
106 | 106 | $aSectionsets |
107 | 107 | ); |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | public function _replyToModifyFieldsets( $aFieldsets, $aSectionsets ) { |
122 | 122 | |
123 | 123 | // Apply filters to added fieldsets |
124 | - foreach( $aFieldsets as $_sSectionPath => $_aFields ) { |
|
124 | + foreach ( $aFieldsets as $_sSectionPath => $_aFields ) { |
|
125 | 125 | $_aSectionPath = explode( '|', $_sSectionPath ); |
126 | 126 | $_sFilterSuffix = implode( '_', $_aSectionPath ); |
127 | 127 | $aFieldsets[ $_sSectionPath ] = $this->oUtil->addAndApplyFilter( |
@@ -130,7 +130,7 @@ discard block |
||
130 | 130 | $_aFields |
131 | 131 | ); |
132 | 132 | } |
133 | - $aFieldsets = $this->oUtil->addAndApplyFilter( |
|
133 | + $aFieldsets = $this->oUtil->addAndApplyFilter( |
|
134 | 134 | $this, |
135 | 135 | "fields_{$this->oProp->sClassName}", |
136 | 136 | $aFieldsets |
@@ -170,12 +170,12 @@ discard block |
||
170 | 170 | */ |
171 | 171 | public function _replyToModifyFieldsetDefinition( $aFieldset /*, $aSectionsets */ ) { |
172 | 172 | |
173 | - $_sFieldPart = '_' . implode( '_', $aFieldset[ '_field_path_array' ] ); |
|
173 | + $_sFieldPart = '_'.implode( '_', $aFieldset[ '_field_path_array' ] ); |
|
174 | 174 | $_sSectionPart = implode( '_', $aFieldset[ '_section_path_array' ] ); |
175 | 175 | $_sSectionPart = $this->oUtil->getAOrB( |
176 | 176 | '_default' === $_sSectionPart, |
177 | 177 | '', |
178 | - '_' . $_sSectionPart |
|
178 | + '_'.$_sSectionPart |
|
179 | 179 | ); |
180 | 180 | return $this->oUtil->addAndApplyFilter( |
181 | 181 | $this, |
@@ -257,7 +257,7 @@ discard block |
||
257 | 257 | public function _replyToGetSavedFormData() { |
258 | 258 | return $this->oUtil->addAndApplyFilter( |
259 | 259 | $this, // the caller factory object |
260 | - 'options_' . $this->oProp->sClassName, |
|
260 | + 'options_'.$this->oProp->sClassName, |
|
261 | 261 | $this->oProp->aOptions // subject value to be filtered |
262 | 262 | ); |
263 | 263 | } |
@@ -334,7 +334,7 @@ discard block |
||
334 | 334 | * An alias of `_setLastInputs()`. |
335 | 335 | * @deprecated DEVVER |
336 | 336 | */ |
337 | - public function _setLastInput( $aLastInputs ) { |
|
337 | + public function _setLastInput( $aLastInputs ) { |
|
338 | 338 | return $this->setLastInputs( $aLastInputs ); |
339 | 339 | } |
340 | 340 |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | * but it requires to call the setUp() method in the overridden method so it's not that useful. |
46 | 46 | * @internal |
47 | 47 | */ |
48 | - protected function _setUp() { |
|
48 | + protected function _setUp() { |
|
49 | 49 | $this->setUp(); |
50 | 50 | } |
51 | 51 | |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | * @since DEVVER |
99 | 99 | * @return array The modified sectionsets definition array. |
100 | 100 | */ |
101 | - public function _replyToModifySectionsets( $aSectionsets ) { |
|
101 | + public function _replyToModifySectionsets( $aSectionsets ) { |
|
102 | 102 | |
103 | 103 | return $this->oUtil->addAndApplyFilter( |
104 | 104 | $this, // caller factory object |
@@ -201,7 +201,7 @@ discard block |
||
201 | 201 | */ |
202 | 202 | public function _replyToFormatFieldsetDefinition( $aFieldset, $aSectionsets ) { |
203 | 203 | |
204 | - if ( empty( $aFieldset ) ) { |
|
204 | + if ( empty( $aFieldset ) ) { |
|
205 | 205 | return $aFieldset; |
206 | 206 | } |
207 | 207 | return $aFieldset; |
@@ -334,7 +334,7 @@ discard block |
||
334 | 334 | * An alias of `_setLastInputs()`. |
335 | 335 | * @deprecated DEVVER |
336 | 336 | */ |
337 | - public function _setLastInput( $aLastInputs ) { |
|
337 | + public function _setLastInput( $aLastInputs ) { |
|
338 | 338 | return $this->setLastInputs( $aLastInputs ); |
339 | 339 | } |
340 | 340 |