@@ -33,23 +33,23 @@ discard block |
||
33 | 33 | * @internal |
34 | 34 | */ |
35 | 35 | static public $aStructure = array( |
36 | - '_section_index' => null, // 3.0.0+ - internally set to indicate the section index for repeatable sections. |
|
36 | + '_section_index' => null, // 3.0.0+ - internally set to indicate the section index for repeatable sections. |
|
37 | 37 | |
38 | 38 | 'tag_id' => null, |
39 | - '_tag_id_model' => '', // 3.6.0+ |
|
39 | + '_tag_id_model' => '', // 3.6.0+ |
|
40 | 40 | |
41 | - '_field_name' => '', // 3.6.0+ |
|
42 | - '_field_name_model' => '', // 3.6.0+ |
|
41 | + '_field_name' => '', // 3.6.0+ |
|
42 | + '_field_name_model' => '', // 3.6.0+ |
|
43 | 43 | |
44 | - '_field_name_flat' => '', // 3.6.0+ |
|
45 | - '_field_name_flat_model' => '', // 3.6.0+ |
|
44 | + '_field_name_flat' => '', // 3.6.0+ |
|
45 | + '_field_name_flat_model' => '', // 3.6.0+ |
|
46 | 46 | |
47 | - '_field_address' => '', // 3.6.0+ |
|
48 | - '_field_address_model' => '', // 3.6.0+ |
|
47 | + '_field_address' => '', // 3.6.0+ |
|
48 | + '_field_address_model' => '', // 3.6.0+ |
|
49 | 49 | |
50 | - '_parent_field_object' => null, // 3.6.0+ Assigned when a field creates a nested field. |
|
50 | + '_parent_field_object' => null, // 3.6.0+ Assigned when a field creates a nested field. |
|
51 | 51 | |
52 | - '_parent_tag_id' => null, // 3.8.0+ Set outside the class. |
|
52 | + '_parent_tag_id' => null, // 3.8.0+ Set outside the class. |
|
53 | 53 | |
54 | 54 | ); |
55 | 55 | |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | $_aFieldset = $this->aFieldset + self::$aStructure; |
93 | 93 | |
94 | 94 | // The section index must be set before generating a field tag id as it uses a section index. |
95 | - $_aFieldset[ '_section_index' ] = $this->iSectionIndex; |
|
95 | + $_aFieldset[ '_section_index' ] = $this->iSectionIndex; |
|
96 | 96 | $_oFieldTagIDGenerator = new AdminPageFramework_Form_View___Generate_FieldTagID( |
97 | 97 | $_aFieldset, |
98 | 98 | $_aFieldset[ '_caller_object' ]->aCallbacks[ 'hfTagID' ] |
@@ -126,7 +126,7 @@ discard block |
||
126 | 126 | |
127 | 127 | // 3.8.0+ Format nested fieldsets. |
128 | 128 | if ( $this->hasFieldDefinitionsInContent( $_aFieldset ) ) { |
129 | - foreach( $_aFieldset[ 'content' ] as &$_aNestedFieldset ) { |
|
129 | + foreach ( $_aFieldset[ 'content' ] as &$_aNestedFieldset ) { |
|
130 | 130 | // The inline-mixed type has a string element. |
131 | 131 | if ( is_scalar( $_aNestedFieldset ) ) { |
132 | 132 | continue; |
@@ -203,6 +203,7 @@ discard block |
||
203 | 203 | * Constructs a WordPress filter hook name. |
204 | 204 | * @internal |
205 | 205 | * @since 3.8.4 |
206 | + * @param string $sPrefix |
|
206 | 207 | * @return string |
207 | 208 | */ |
208 | 209 | private function _getHookNameByFieldsetAndPrefix( $sPrefix, $aFieldset ) { |
@@ -339,8 +340,6 @@ discard block |
||
339 | 340 | * @since 3.7.0 Changed back the visibility scope to protected as there is the `getFieldErrors()` public method. |
340 | 341 | * @access protected |
341 | 342 | * @internal |
342 | - * @param string $sID deprecated |
|
343 | - * @param boolean $bDelete whether or not the transient should be deleted after retrieving it. |
|
344 | 343 | * @return array |
345 | 344 | * @deprecated 3.7.0 Use `getFieldErrors()` instead. Kept for backward compatibility. |
346 | 345 | */ |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | * @since 3.7.0 |
94 | 94 | * @return array The modified section-sets definition array. |
95 | 95 | */ |
96 | - public function _replyToModifySectionsets( $aSectionsets ) { |
|
96 | + public function _replyToModifySectionsets( $aSectionsets ) { |
|
97 | 97 | |
98 | 98 | return $this->oUtil->addAndApplyFilter( |
99 | 99 | $this, // caller factory object |
@@ -364,7 +364,7 @@ discard block |
||
364 | 364 | * An alias of `_setLastInputs()`. |
365 | 365 | * @deprecated 3.7.0 |
366 | 366 | */ |
367 | - public function _setLastInput( $aLastInputs ) { |
|
367 | + public function _setLastInput( $aLastInputs ) { |
|
368 | 368 | return $this->setLastInputs( $aLastInputs ); |
369 | 369 | } |
370 | 370 |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | |
32 | 32 | add_filter( |
33 | 33 | // 'field_types_admin_page_framework', |
34 | - 'field_types_' . $oProp->sClassName, |
|
34 | + 'field_types_'.$oProp->sClassName, |
|
35 | 35 | array( $this, '_replyToFilterFieldTypeDefinitions' ) |
36 | 36 | ); |
37 | 37 | |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | 'title' => null, |
54 | 54 | 'help_aside' => null, |
55 | 55 | ); |
56 | - if ( ! $aFieldset[ 'help' ] ) { |
|
56 | + if ( !$aFieldset[ 'help' ] ) { |
|
57 | 57 | return; |
58 | 58 | } |
59 | 59 | $this->oHelpPane->_addHelpTextForFormFields( |
@@ -73,9 +73,9 @@ discard block |
||
73 | 73 | public function _replyToFilterFieldTypeDefinitions( $aFieldTypeDefinitions ) { |
74 | 74 | |
75 | 75 | // Not triggering `__call()` as the filter is fired manually in the form class. |
76 | - if ( method_exists( $this, 'field_types_' . $this->oProp->sClassName ) ) { |
|
76 | + if ( method_exists( $this, 'field_types_'.$this->oProp->sClassName ) ) { |
|
77 | 77 | return call_user_func_array( |
78 | - array( $this, 'field_types_' . $this->oProp->sClassName ), |
|
78 | + array( $this, 'field_types_'.$this->oProp->sClassName ), |
|
79 | 79 | array( $aFieldTypeDefinitions ) |
80 | 80 | ); |
81 | 81 | } |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | public function _replyToModifySectionsets( $aSectionsets ) { |
97 | 97 | |
98 | 98 | return $this->oUtil->addAndApplyFilter( |
99 | - $this, // caller factory object |
|
99 | + $this, // caller factory object |
|
100 | 100 | "sections_{$this->oProp->sClassName}", |
101 | 101 | $aSectionsets |
102 | 102 | ); |
@@ -116,7 +116,7 @@ discard block |
||
116 | 116 | public function _replyToModifyFieldsets( $aFieldsets, $aSectionsets ) { |
117 | 117 | |
118 | 118 | // Apply filters to added field-sets |
119 | - foreach( $aFieldsets as $_sSectionPath => $_aFields ) { |
|
119 | + foreach ( $aFieldsets as $_sSectionPath => $_aFields ) { |
|
120 | 120 | $_aSectionPath = explode( '|', $_sSectionPath ); |
121 | 121 | $_sFilterSuffix = implode( '_', $_aSectionPath ); |
122 | 122 | $aFieldsets[ $_sSectionPath ] = $this->oUtil->addAndApplyFilter( |
@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | $_aFields |
126 | 126 | ); |
127 | 127 | } |
128 | - $aFieldsets = $this->oUtil->addAndApplyFilter( |
|
128 | + $aFieldsets = $this->oUtil->addAndApplyFilter( |
|
129 | 129 | $this, |
130 | 130 | "fields_{$this->oProp->sClassName}", |
131 | 131 | $aFieldsets |
@@ -195,14 +195,14 @@ discard block |
||
195 | 195 | */ |
196 | 196 | private function _getHookNameByFieldsetAndPrefix( $sPrefix, $aFieldset ) { |
197 | 197 | |
198 | - $_sFieldPart = '_' . implode( '_', $aFieldset[ '_field_path_array' ] ); |
|
198 | + $_sFieldPart = '_'.implode( '_', $aFieldset[ '_field_path_array' ] ); |
|
199 | 199 | $_sSectionPart = implode( '_', $aFieldset[ '_section_path_array' ] ); |
200 | 200 | $_sSectionPart = $this->oUtil->getAOrB( |
201 | 201 | '_default' === $_sSectionPart, |
202 | 202 | '', |
203 | - '_' . $_sSectionPart |
|
203 | + '_'.$_sSectionPart |
|
204 | 204 | ); |
205 | - return $sPrefix . $this->oProp->sClassName . $_sSectionPart . $_sFieldPart; |
|
205 | + return $sPrefix.$this->oProp->sClassName.$_sSectionPart.$_sFieldPart; |
|
206 | 206 | |
207 | 207 | } |
208 | 208 | |
@@ -272,9 +272,9 @@ discard block |
||
272 | 272 | public function _replyToGetSavedFormData() { |
273 | 273 | |
274 | 274 | // Must update the property with the filtered value. |
275 | - $this->oProp->aOptions = $this->oUtil->addAndApplyFilter( |
|
275 | + $this->oProp->aOptions = $this->oUtil->addAndApplyFilter( |
|
276 | 276 | $this, // the caller factory object |
277 | - 'options_' . $this->oProp->sClassName, |
|
277 | + 'options_'.$this->oProp->sClassName, |
|
278 | 278 | $this->oProp->aOptions // subject value to be filtered |
279 | 279 | ); |
280 | 280 | return $this->oProp->aOptions; |
@@ -364,7 +364,7 @@ discard block |
||
364 | 364 | * An alias of `_setLastInputs()`. |
365 | 365 | * @deprecated 3.7.0 |
366 | 366 | */ |
367 | - public function _setLastInput( $aLastInputs ) { |
|
367 | + public function _setLastInput( $aLastInputs ) { |
|
368 | 368 | return $this->setLastInputs( $aLastInputs ); |
369 | 369 | } |
370 | 370 |
@@ -42,8 +42,6 @@ discard block |
||
42 | 42 | * Sets up properties. |
43 | 43 | * @since 3.6.0 |
44 | 44 | * @since 3.7.0 Changed the parameter structure. |
45 | - * @param array|string $asArguments The content output or the tooltip argument array. |
|
46 | - * @param string $sTitleElementID Not used at the moment. |
|
47 | 45 | */ |
48 | 46 | public function __construct( /* $aArguments, $sTitleElementID */ ) { |
49 | 47 | |
@@ -170,6 +168,7 @@ discard block |
||
170 | 168 | |
171 | 169 | /** |
172 | 170 | * Generates HTML attributes of the specified element. |
171 | + * @param string $sElementKey |
|
173 | 172 | * @return string |
174 | 173 | * @since 3.8.5 |
175 | 174 | */ |
@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | /** |
21 | 21 | * Stores the default argument values. |
22 | 22 | */ |
23 | - public $aArguments = array( |
|
23 | + public $aArguments = array( |
|
24 | 24 | 'attributes' => array( |
25 | 25 | 'container' => array(), |
26 | 26 | 'title' => array(), |
@@ -28,11 +28,11 @@ discard block |
||
28 | 28 | 'description' => array(), |
29 | 29 | 'icon' => array(), |
30 | 30 | ), |
31 | - 'icon' => null, // the icon output to override |
|
32 | - 'dash-icon' => 'dashicons-editor-help', // the dash-icon class selector for the icon |
|
33 | - 'icon_alt_text' => '[?]', // [3.8.5+] alternative text when icon is not available. For WP v3.7.x or below. |
|
31 | + 'icon' => null, // the icon output to override |
|
32 | + 'dash-icon' => 'dashicons-editor-help', // the dash-icon class selector for the icon |
|
33 | + 'icon_alt_text' => '[?]', // [3.8.5+] alternative text when icon is not available. For WP v3.7.x or below. |
|
34 | 34 | 'title' => null, |
35 | - 'content' => null, // will be assigned in the constructor |
|
35 | + 'content' => null, // will be assigned in the constructor |
|
36 | 36 | ); |
37 | 37 | |
38 | 38 | public $sTitleElementID; |
@@ -89,7 +89,7 @@ discard block |
||
89 | 89 | if ( is_string( $asContent ) ) { |
90 | 90 | return true; |
91 | 91 | } |
92 | - if ( is_array( $asContent ) && ! $this->isAssociative( $asContent ) ) { |
|
92 | + if ( is_array( $asContent ) && !$this->isAssociative( $asContent ) ) { |
|
93 | 93 | return true; |
94 | 94 | } |
95 | 95 | return false; |
@@ -103,12 +103,12 @@ discard block |
||
103 | 103 | * @return string The output. |
104 | 104 | */ |
105 | 105 | public function get() { |
106 | - if ( ! $this->aArguments[ 'content' ] ) { |
|
106 | + if ( !$this->aArguments[ 'content' ] ) { |
|
107 | 107 | return ''; |
108 | 108 | } |
109 | - return "<a " . $this->_getElementAttributes( 'container', 'admin-page-framework-form-tooltip' ) . ">" |
|
109 | + return "<a ".$this->_getElementAttributes( 'container', 'admin-page-framework-form-tooltip' ).">" |
|
110 | 110 | . $this->_getTipLinkIcon() |
111 | - . "<span " . $this->_getElementAttributes( 'content', 'admin-page-framework-form-tooltip-content' ) . ">" |
|
111 | + . "<span ".$this->_getElementAttributes( 'content', 'admin-page-framework-form-tooltip-content' ).">" |
|
112 | 112 | . $this->_getTipTitle() |
113 | 113 | . $this->_getDescriptions() |
114 | 114 | . "</span>" |
@@ -126,7 +126,7 @@ discard block |
||
126 | 126 | return $this->aArguments[ 'icon' ]; |
127 | 127 | } |
128 | 128 | if ( version_compare( $GLOBALS[ 'wp_version' ], '3.8', '>=' ) ) { |
129 | - return "<span " . $this->_getElementAttributes( |
|
129 | + return "<span ".$this->_getElementAttributes( |
|
130 | 130 | 'icon', |
131 | 131 | array( |
132 | 132 | 'dashicons', |
@@ -144,7 +144,7 @@ discard block |
||
144 | 144 | */ |
145 | 145 | private function _getTipTitle() { |
146 | 146 | if ( isset( $this->aArguments[ 'title' ] ) ) { |
147 | - return "<span " . $this->_getElementAttributes( 'title', 'admin-page-framework-form-tooltip-title' ) . ">" |
|
147 | + return "<span ".$this->_getElementAttributes( 'title', 'admin-page-framework-form-tooltip-title' ).">" |
|
148 | 148 | . $this->aArguments[ 'title' ] |
149 | 149 | . "</span>"; |
150 | 150 | } |
@@ -156,9 +156,9 @@ discard block |
||
156 | 156 | */ |
157 | 157 | private function _getDescriptions() { |
158 | 158 | if ( isset( $this->aArguments[ 'content' ] ) ) { |
159 | - return "<span " . $this->_getElementAttributes( 'description', 'admin-page-framework-form-tooltip-description' ) . ">" |
|
159 | + return "<span ".$this->_getElementAttributes( 'description', 'admin-page-framework-form-tooltip-description' ).">" |
|
160 | 160 | . implode( |
161 | - "</span><span " . $this->_getElementAttributes( 'description', 'admin-page-framework-form-tooltip-description' ) . ">", |
|
161 | + "</span><span ".$this->_getElementAttributes( 'description', 'admin-page-framework-form-tooltip-description' ).">", |
|
162 | 162 | $this->getAsArray( $this->aArguments[ 'content' ] ) |
163 | 163 | ) |
164 | 164 | . "</span>" |
@@ -177,7 +177,7 @@ discard block |
||
177 | 177 | $_aContainerAttributes = $this->getElementAsArray( |
178 | 178 | $this->aArguments, |
179 | 179 | array( 'attributes', $sElementKey ) |
180 | - ) + array( 'class' => '' ) ; |
|
180 | + ) + array( 'class' => '' ); |
|
181 | 181 | $_aContainerAttributes[ 'class' ] = $this->getClassAttribute( |
182 | 182 | $_aContainerAttributes[ 'class' ], |
183 | 183 | $asClassSelectors |
@@ -19,7 +19,7 @@ discard block |
||
19 | 19 | */ |
20 | 20 | class AdminPageFramework_Form_View___DebugInfo extends AdminPageFramework_FrameworkUtility { |
21 | 21 | |
22 | - public $sStructureType = ''; |
|
22 | + public $sStructureType = ''; |
|
23 | 23 | |
24 | 24 | /** |
25 | 25 | * @since 3.8.5 |
@@ -57,12 +57,12 @@ discard block |
||
57 | 57 | */ |
58 | 58 | public function get() { |
59 | 59 | |
60 | - if ( ! $this->_shouldProceed() ) { |
|
60 | + if ( !$this->_shouldProceed() ) { |
|
61 | 61 | return ''; |
62 | 62 | } |
63 | 63 | |
64 | 64 | return "<div class='admin-page-framework-info'>" |
65 | - . $this->oMsg->get( 'debug_info' ) . ': ' |
|
65 | + . $this->oMsg->get( 'debug_info' ).': ' |
|
66 | 66 | . $this->getFrameworkNameVersion() |
67 | 67 | . "</div>"; |
68 | 68 | |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | */ |
74 | 74 | private function _shouldProceed() { |
75 | 75 | |
76 | - if ( ! $this->callBack( $this->aCallbacks[ 'show_debug_info' ], true ) ) { |
|
76 | + if ( !$this->callBack( $this->aCallbacks[ 'show_debug_info' ], true ) ) { |
|
77 | 77 | return false; |
78 | 78 | } |
79 | 79 | // For the generic admin pages, do no show debug information for each section. |
@@ -16,7 +16,7 @@ |
||
16 | 16 | * @extends AdminPageFramework_FrameworkUtility |
17 | 17 | * @internal |
18 | 18 | */ |
19 | -class AdminPageFramework_Form_View___DebugInfo extends AdminPageFramework_FrameworkUtility { |
|
19 | +class AdminPageFramework_Form_View___DebugInfo extends AdminPageFramework_FrameworkUtility { |
|
20 | 20 | |
21 | 21 | public $sStructureType = ''; |
22 | 22 |
@@ -74,6 +74,8 @@ discard block |
||
74 | 74 | * <li>a base64-encoded SVG using a data URI, which will be colored to match the color scheme. This should begin with 'data:image/svg+xml;base64,'.</li> |
75 | 75 | * </ul> |
76 | 76 | * @param string (optional) the position number that is passed to the <var>$position</var> parameter of the <a href="http://codex.wordpress.org/Function_Reference/add_menu_page">add_menu_page()</a> function. |
77 | + * @param string $sIcon16x16 |
|
78 | + * @param integer $iMenuPosition |
|
77 | 79 | * @return void |
78 | 80 | */ |
79 | 81 | public function setRootMenuPage( $sRootMenuLabel, $sIcon16x16=null, $iMenuPosition=null ) { |
@@ -96,6 +98,7 @@ discard block |
||
96 | 98 | * |
97 | 99 | * @since 2.0.0 |
98 | 100 | * @internal |
101 | + * @param string $sMenuLabel |
|
99 | 102 | * @return void|string Returns the associated slug string, if true. |
100 | 103 | */ |
101 | 104 | private function _isBuiltInMenuItem( $sMenuLabel ) { |
@@ -160,9 +163,6 @@ discard block |
||
160 | 163 | * @since 3.0.0 Changed the scope to public. |
161 | 164 | * @remark The sub menu page slug should be unique because add_submenu_page() can add one callback per page slug. |
162 | 165 | * @remark Accepts variadic parameters; the number of accepted parameters are not limited to three. |
163 | - * @param array $aSubMenuItem1 a first sub-menu array. A sub-menu array can be a link or a page. For the specifications of the array structures and its arguments, refer to the parameter section of the `addSubMenuItem()` method. |
|
164 | - * @param array $aSubMenuItem2 (optional) a second sub-menu array. |
|
165 | - * @param array $_and_more (optional) a third and add items as many as necessary with next parameters. |
|
166 | 166 | * @access public |
167 | 167 | * @return void |
168 | 168 | */ |
@@ -250,20 +250,20 @@ |
||
250 | 250 | } |
251 | 251 | |
252 | 252 | /** |
253 | - * Adds the given link into the menu on the left sidebar of the administration panel. |
|
254 | - * |
|
255 | - * @since 2.0.0 |
|
256 | - * @since 3.0.0 Changed the scope to public from protected. |
|
257 | - * @since 3.5.0 Changed the scope to public as it was still protected. |
|
258 | - * @param string the menu title. |
|
259 | - * @param string the URL linked to the menu. |
|
260 | - * @param string (optional) the <a href="http://codex.wordpress.org/Roles_and_Capabilities" target="_blank">access level</a>. |
|
261 | - * @param string (optional) the order number. The larger it is, the lower the position it gets. |
|
262 | - * @param string (optional) if set to false, the menu title will not be listed in the tab navigation menu at the top of the page. |
|
263 | - * @access public |
|
264 | - * @return void |
|
265 | - * @internal |
|
266 | - */ |
|
253 | + * Adds the given link into the menu on the left sidebar of the administration panel. |
|
254 | + * |
|
255 | + * @since 2.0.0 |
|
256 | + * @since 3.0.0 Changed the scope to public from protected. |
|
257 | + * @since 3.5.0 Changed the scope to public as it was still protected. |
|
258 | + * @param string the menu title. |
|
259 | + * @param string the URL linked to the menu. |
|
260 | + * @param string (optional) the <a href="http://codex.wordpress.org/Roles_and_Capabilities" target="_blank">access level</a>. |
|
261 | + * @param string (optional) the order number. The larger it is, the lower the position it gets. |
|
262 | + * @param string (optional) if set to false, the menu title will not be listed in the tab navigation menu at the top of the page. |
|
263 | + * @access public |
|
264 | + * @return void |
|
265 | + * @internal |
|
266 | + */ |
|
267 | 267 | public function addSubMenuLink( array $aSubMenuLink ) { |
268 | 268 | |
269 | 269 | // If required keys are not set, return. |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | * @param string (optional) the position number that is passed to the <var>$position</var> parameter of the <a href="http://codex.wordpress.org/Function_Reference/add_menu_page">add_menu_page()</a> function. |
77 | 77 | * @return void |
78 | 78 | */ |
79 | - public function setRootMenuPage( $sRootMenuLabel, $sIcon16x16=null, $iMenuPosition=null ) { |
|
79 | + public function setRootMenuPage( $sRootMenuLabel, $sIcon16x16 = null, $iMenuPosition = null ) { |
|
80 | 80 | |
81 | 81 | $sRootMenuLabel = trim( $sRootMenuLabel ); |
82 | 82 | $_sSlug = $this->_isBuiltInMenuItem( $sRootMenuLabel ); // if true, this method returns the slug |
@@ -267,16 +267,16 @@ discard block |
||
267 | 267 | public function addSubMenuLink( array $aSubMenuLink ) { |
268 | 268 | |
269 | 269 | // If required keys are not set, return. |
270 | - if ( ! isset( $aSubMenuLink[ 'href' ], $aSubMenuLink[ 'title' ] ) ) { |
|
270 | + if ( !isset( $aSubMenuLink[ 'href' ], $aSubMenuLink[ 'title' ] ) ) { |
|
271 | 271 | return; |
272 | 272 | } |
273 | 273 | |
274 | 274 | // If the set URL is not valid, return. |
275 | - if ( ! filter_var( $aSubMenuLink[ 'href' ], FILTER_VALIDATE_URL ) ) { |
|
275 | + if ( !filter_var( $aSubMenuLink[ 'href' ], FILTER_VALIDATE_URL ) ) { |
|
276 | 276 | return; |
277 | 277 | } |
278 | 278 | |
279 | - $_oFormatter = new AdminPageFramework_Format_SubMenuLink( |
|
279 | + $_oFormatter = new AdminPageFramework_Format_SubMenuLink( |
|
280 | 280 | $aSubMenuLink, |
281 | 281 | $this, |
282 | 282 | count( $this->oProp->aPages ) + 1 |
@@ -334,11 +334,11 @@ discard block |
||
334 | 334 | */ |
335 | 335 | public function addSubMenuPage( array $aSubMenuPage ) { |
336 | 336 | |
337 | - if ( ! isset( $aSubMenuPage[ 'page_slug' ] ) ) { |
|
337 | + if ( !isset( $aSubMenuPage[ 'page_slug' ] ) ) { |
|
338 | 338 | return; |
339 | 339 | } |
340 | 340 | |
341 | - $_oFormatter = new AdminPageFramework_Format_SubMenuPage( |
|
341 | + $_oFormatter = new AdminPageFramework_Format_SubMenuPage( |
|
342 | 342 | $aSubMenuPage, |
343 | 343 | $this, |
344 | 344 | count( $this->oProp->aPages ) + 1 |
@@ -267,12 +267,12 @@ discard block |
||
267 | 267 | public function addSubMenuLink( array $aSubMenuLink ) { |
268 | 268 | |
269 | 269 | // If required keys are not set, return. |
270 | - if ( ! isset( $aSubMenuLink[ 'href' ], $aSubMenuLink[ 'title' ] ) ) { |
|
270 | + if ( ! isset( $aSubMenuLink[ 'href' ], $aSubMenuLink[ 'title' ] ) ) { |
|
271 | 271 | return; |
272 | 272 | } |
273 | 273 | |
274 | 274 | // If the set URL is not valid, return. |
275 | - if ( ! filter_var( $aSubMenuLink[ 'href' ], FILTER_VALIDATE_URL ) ) { |
|
275 | + if ( ! filter_var( $aSubMenuLink[ 'href' ], FILTER_VALIDATE_URL ) ) { |
|
276 | 276 | return; |
277 | 277 | } |
278 | 278 | |
@@ -334,7 +334,7 @@ discard block |
||
334 | 334 | */ |
335 | 335 | public function addSubMenuPage( array $aSubMenuPage ) { |
336 | 336 | |
337 | - if ( ! isset( $aSubMenuPage[ 'page_slug' ] ) ) { |
|
337 | + if ( ! isset( $aSubMenuPage[ 'page_slug' ] ) ) { |
|
338 | 338 | return; |
339 | 339 | } |
340 | 340 |
@@ -10,7 +10,7 @@ discard block |
||
10 | 10 | * @package AdminPageFramework |
11 | 11 | */ |
12 | 12 | |
13 | -if ( ! class_exists( 'AdminPageFramework_Registry', false ) ) : |
|
13 | +if ( !class_exists( 'AdminPageFramework_Registry', false ) ) : |
|
14 | 14 | /** |
15 | 15 | * Facilitates WordPress plugin and theme development. |
16 | 16 | * |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | final class AdminPageFramework_Registry extends AdminPageFramework_Registry_Base { |
62 | 62 | |
63 | 63 | const TEXT_DOMAIN = 'admin-page-framework'; |
64 | - const TEXT_DOMAIN_PATH = '/language'; // not used at the moment |
|
64 | + const TEXT_DOMAIN_PATH = '/language'; // not used at the moment |
|
65 | 65 | |
66 | 66 | /** |
67 | 67 | * Indicates whether the framework is loaded from the minified version or not. |
@@ -103,11 +103,11 @@ discard block |
||
103 | 103 | * Sets up static properties. |
104 | 104 | * @return void |
105 | 105 | */ |
106 | - static public function setUp( $sFilePath=__FILE__ ) { |
|
106 | + static public function setUp( $sFilePath = __FILE__ ) { |
|
107 | 107 | |
108 | 108 | self::$sFilePath = $sFilePath; |
109 | 109 | self::$sDirPath = dirname( self::$sFilePath ); |
110 | - self::$sIncludeClassListPath = self::$sDirPath . '/admin-page-framework-include-class-list.php'; |
|
110 | + self::$sIncludeClassListPath = self::$sDirPath.'/admin-page-framework-include-class-list.php'; |
|
111 | 111 | self::$aClassFiles = self::_getClassFilePathList( self::$sIncludeClassListPath ); |
112 | 112 | self::$sAutoLoaderPath = isset( self::$aClassFiles[ 'AdminPageFramework_RegisterClasses' ] ) |
113 | 113 | ? self::$aClassFiles[ 'AdminPageFramework_RegisterClasses' ] |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | * @return array |
123 | 123 | */ |
124 | 124 | static private function _getClassFilePathList( $sInclusionClassListPath ) { |
125 | - $aClassFiles = array(); // this will be updated if the inclusion below is successful. |
|
125 | + $aClassFiles = array(); // this will be updated if the inclusion below is successful. |
|
126 | 126 | include( $sInclusionClassListPath ); |
127 | 127 | return $aClassFiles; |
128 | 128 | } |
@@ -135,11 +135,11 @@ discard block |
||
135 | 135 | */ |
136 | 136 | static public function getVersion() { |
137 | 137 | |
138 | - if ( ! isset( self::$sAutoLoaderPath ) ) { |
|
139 | - trigger_error( self::NAME . ': ' . ' : ' . sprintf( __( 'The method is called too early. Perform <code>%2$s</code> earlier.', 'admin-page-framework' ), __METHOD__, 'setUp()' ), E_USER_WARNING ); |
|
138 | + if ( !isset( self::$sAutoLoaderPath ) ) { |
|
139 | + trigger_error( self::NAME.': '.' : '.sprintf( __( 'The method is called too early. Perform <code>%2$s</code> earlier.', 'admin-page-framework' ), __METHOD__, 'setUp()' ), E_USER_WARNING ); |
|
140 | 140 | return self::VERSION; |
141 | 141 | } |
142 | - $_aMinifiedVesionSuffix = array( |
|
142 | + $_aMinifiedVesionSuffix = array( |
|
143 | 143 | 0 => '', |
144 | 144 | 1 => '.min', |
145 | 145 | ); |
@@ -168,7 +168,7 @@ discard block |
||
168 | 168 | } |
169 | 169 | endif; |
170 | 170 | |
171 | -if ( ! class_exists( 'AdminPageFramework_Bootstrap', false ) ) : |
|
171 | +if ( !class_exists( 'AdminPageFramework_Bootstrap', false ) ) : |
|
172 | 172 | /** |
173 | 173 | * Loads the Admin Page Framework library. |
174 | 174 | * |
@@ -189,7 +189,7 @@ discard block |
||
189 | 189 | */ |
190 | 190 | public function __construct( $sLibraryPath ) { |
191 | 191 | |
192 | - if ( ! $this->_isLoadable() ) { |
|
192 | + if ( !$this->_isLoadable() ) { |
|
193 | 193 | return; |
194 | 194 | } |
195 | 195 |
@@ -158,7 +158,7 @@ |
||
158 | 158 | . $this->getFrameworkNameVersion() |
159 | 159 | . ' (' |
160 | 160 | . $this->oMsg->get( 'debug_info_will_be_disabled' ) |
161 | - . ')' |
|
161 | + . ')' |
|
162 | 162 | . '</span>', |
163 | 163 | 'attributes' => array( |
164 | 164 | 'container' => array( |
@@ -17,14 +17,14 @@ discard block |
||
17 | 17 | */ |
18 | 18 | class AdminPageFramework_Form_View___SectionTitle extends AdminPageFramework_Form_View___Section_Base { |
19 | 19 | |
20 | - public $aArguments = array( |
|
20 | + public $aArguments = array( |
|
21 | 21 | 'title' => null, |
22 | 22 | 'tag' => null, |
23 | 23 | 'section_index' => null, |
24 | 24 | |
25 | 25 | 'sectionset' => array(), |
26 | 26 | ); |
27 | - public $aFieldsets = array(); |
|
27 | + public $aFieldsets = array(); |
|
28 | 28 | public $aSavedData = array(); |
29 | 29 | public $aFieldErrors = array(); |
30 | 30 | public $aFieldTypeDefinitions = array(); |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | * @since 3.7.0 Moved from `AdminPageFramework_FormPart_SectionTitle`. |
91 | 91 | * @return string The section title output. |
92 | 92 | */ |
93 | - protected function _getSectionTitle( $sTitle, $sTag, $aFieldsets, $iSectionIndex=null, $aFieldTypeDefinitions=array(), $aCollapsible=array() ) { |
|
93 | + protected function _getSectionTitle( $sTitle, $sTag, $aFieldsets, $iSectionIndex = null, $aFieldTypeDefinitions = array(), $aCollapsible = array() ) { |
|
94 | 94 | |
95 | 95 | $_aSectionTitleFieldset = $this->_getSectionTitleField( $aFieldsets, $iSectionIndex, $aFieldTypeDefinitions ); |
96 | 96 | $_sFieldsInSectionTitle = $this->_getFieldsetsOutputInSectionTitleArea( $aFieldsets, $iSectionIndex, $aFieldTypeDefinitions ); |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | $_bHasOtherFields = $_sFieldsInSectionTitle |
101 | 101 | ? ' has-fields' |
102 | 102 | : ''; |
103 | - $_sOutput = $_sTitle . $_sFieldsInSectionTitle; |
|
103 | + $_sOutput = $_sTitle.$_sFieldsInSectionTitle; |
|
104 | 104 | return $_sOutput |
105 | 105 | ? "<div class='section-title-height-fixer'></div>" |
106 | 106 | . "<div class='section-title-outer-container'>" // 3.8.13+ For vertical alignment |
@@ -132,7 +132,7 @@ discard block |
||
132 | 132 | * @return string |
133 | 133 | */ |
134 | 134 | private function _getToolTip( $_aSectionset ) { |
135 | - $_sSectionTitleTagID = str_replace( '|', '_', $_aSectionset[ '_section_path' ] ) . '_' . $this->aArguments[ 'section_index' ]; |
|
135 | + $_sSectionTitleTagID = str_replace( '|', '_', $_aSectionset[ '_section_path' ] ).'_'.$this->aArguments[ 'section_index' ]; |
|
136 | 136 | $_oToolTip = new AdminPageFramework_Form_View___ToolTip( |
137 | 137 | $_aSectionset[ 'tip' ], |
138 | 138 | $_sSectionTitleTagID |
@@ -147,14 +147,14 @@ discard block |
||
147 | 147 | */ |
148 | 148 | private function _getDebugInfo( $aSectionset ) { |
149 | 149 | |
150 | - if ( ! $aSectionset[ 'show_debug_info' ] ) { |
|
150 | + if ( !$aSectionset[ 'show_debug_info' ] ) { |
|
151 | 151 | return ''; |
152 | 152 | } |
153 | - $_oToolTip = new AdminPageFramework_Form_View___ToolTip( |
|
153 | + $_oToolTip = new AdminPageFramework_Form_View___ToolTip( |
|
154 | 154 | array( |
155 | 155 | 'title' => $this->oMsg->get( 'section_arguments' ), |
156 | 156 | 'dash-icon' => 'dashicons-info', |
157 | - 'icon_alt_text' => '[' . $this->oMsg->get( 'debug' ) . ' ]', |
|
157 | + 'icon_alt_text' => '['.$this->oMsg->get( 'debug' ).' ]', |
|
158 | 158 | 'content' => AdminPageFramework_Debug::getDetails( $aSectionset ) |
159 | 159 | . '<span class="admin-page-framework-info">' |
160 | 160 | . $this->getFrameworkNameVersion() |
@@ -168,7 +168,7 @@ discard block |
||
168 | 168 | ), |
169 | 169 | ) |
170 | 170 | ), |
171 | - $aSectionset[ '_section_path' ] . '_debug' |
|
171 | + $aSectionset[ '_section_path' ].'_debug' |
|
172 | 172 | ); |
173 | 173 | return $_oToolTip->get(); |
174 | 174 | |
@@ -197,8 +197,8 @@ discard block |
||
197 | 197 | private function _getFieldsetsOutputInSectionTitleArea( array $aFieldsets, $iSectionIndex, $aFieldTypeDefinitions ) { |
198 | 198 | |
199 | 199 | $_sOutput = ''; |
200 | - foreach( $this->_getFieldsetsInSectionTitleArea( $aFieldsets, $iSectionIndex, $aFieldTypeDefinitions ) as $_aFieldset ) { |
|
201 | - if ( empty( $_aFieldset ) ) { |
|
200 | + foreach ( $this->_getFieldsetsInSectionTitleArea( $aFieldsets, $iSectionIndex, $aFieldTypeDefinitions ) as $_aFieldset ) { |
|
201 | + if ( empty( $_aFieldset ) ) { |
|
202 | 202 | continue; |
203 | 203 | } |
204 | 204 | $_sOutput .= $this->getFieldsetOutput( $_aFieldset ); |
@@ -214,7 +214,7 @@ discard block |
||
214 | 214 | private function _getFieldsetsInSectionTitleArea( array $aFieldsets, $iSectionIndex, $aFieldTypeDefinitions ) { |
215 | 215 | |
216 | 216 | $_aFieldsetsInSectionTitle = array(); |
217 | - foreach( $aFieldsets as $_aFieldset ) { |
|
217 | + foreach ( $aFieldsets as $_aFieldset ) { |
|
218 | 218 | |
219 | 219 | if ( 'section_title' !== $_aFieldset[ 'placement' ] ) { |
220 | 220 | continue; |
@@ -225,7 +225,7 @@ discard block |
||
225 | 225 | $iSectionIndex, |
226 | 226 | $aFieldTypeDefinitions |
227 | 227 | ); |
228 | - $_aFieldsetsInSectionTitle[] = $_oFieldsetOutputFormatter->get(); |
|
228 | + $_aFieldsetsInSectionTitle[ ] = $_oFieldsetOutputFormatter->get(); |
|
229 | 229 | |
230 | 230 | } |
231 | 231 | return $_aFieldsetsInSectionTitle; |
@@ -244,7 +244,7 @@ discard block |
||
244 | 244 | */ |
245 | 245 | private function _getSectionTitleField( array $aFieldsets, $iSectionIndex, $aFieldTypeDefinitions ) { |
246 | 246 | |
247 | - foreach( $aFieldsets as $_aFieldset ) { |
|
247 | + foreach ( $aFieldsets as $_aFieldset ) { |
|
248 | 248 | |
249 | 249 | if ( 'section_title' !== $_aFieldset[ 'type' ] ) { |
250 | 250 | continue; |
@@ -15,7 +15,7 @@ discard block |
||
15 | 15 | * @since 3.7.0 Changed the name from `AdminPageFramework_FormPart_SectionTitle`. |
16 | 16 | * @internal |
17 | 17 | */ |
18 | -class AdminPageFramework_Form_View___SectionTitle extends AdminPageFramework_Form_View___Section_Base { |
|
18 | +class AdminPageFramework_Form_View___SectionTitle extends AdminPageFramework_Form_View___Section_Base { |
|
19 | 19 | |
20 | 20 | public $aArguments = array( |
21 | 21 | 'title' => null, |
@@ -194,11 +194,11 @@ discard block |
||
194 | 194 | * @since 3.8.0 |
195 | 195 | * @internal |
196 | 196 | */ |
197 | - private function _getFieldsetsOutputInSectionTitleArea( array $aFieldsets, $iSectionIndex, $aFieldTypeDefinitions ) { |
|
197 | + private function _getFieldsetsOutputInSectionTitleArea( array $aFieldsets, $iSectionIndex, $aFieldTypeDefinitions ) { |
|
198 | 198 | |
199 | 199 | $_sOutput = ''; |
200 | 200 | foreach( $this->_getFieldsetsInSectionTitleArea( $aFieldsets, $iSectionIndex, $aFieldTypeDefinitions ) as $_aFieldset ) { |
201 | - if ( empty( $_aFieldset ) ) { |
|
201 | + if ( empty( $_aFieldset ) ) { |
|
202 | 202 | continue; |
203 | 203 | } |
204 | 204 | $_sOutput .= $this->getFieldsetOutput( $_aFieldset ); |
@@ -242,7 +242,7 @@ discard block |
||
242 | 242 | * @since 3.7.0 Moved from `AdminPageFramework_FormPart_SectionTitle`. |
243 | 243 | * @return array|void |
244 | 244 | */ |
245 | - private function _getSectionTitleField( array $aFieldsets, $iSectionIndex, $aFieldTypeDefinitions ) { |
|
245 | + private function _getSectionTitleField( array $aFieldsets, $iSectionIndex, $aFieldTypeDefinitions ) { |
|
246 | 246 | |
247 | 247 | foreach( $aFieldsets as $_aFieldset ) { |
248 | 248 |
@@ -218,8 +218,8 @@ |
||
218 | 218 | * @remark $_aDefaultKeys holds shared default key-values defined in the base class. |
219 | 219 | */ |
220 | 220 | protected $aDefaultKeys = array( |
221 | - 'label_min_width' => '', // disabled as the embedded elements are all inline. |
|
222 | - 'show_debug_info' => false, // 3.8.8+ @todo Examine why this value does not override the default value of field definition arguments and if possible and appropriate, override it. |
|
221 | + 'label_min_width' => '', // disabled as the embedded elements are all inline. |
|
222 | + 'show_debug_info' => false, // 3.8.8+ @todo Examine why this value does not override the default value of field definition arguments and if possible and appropriate, override it. |
|
223 | 223 | ); |
224 | 224 | |
225 | 225 |
@@ -1,40 +1,40 @@ |
||
1 | 1 | <?php |
2 | 2 | $_aClassFiles = array( |
3 | - "GitHubCustomFieldType"=> AdminPageFrameworkLoader_Registry::$sDirPath . "/include/library/github-custom-field-type/GitHubCustomFieldType.php", |
|
4 | - "AdminPageFrameworkLoader_Bootstrap"=> AdminPageFrameworkLoader_Registry::$sDirPath . "/include/class/AdminPageFrameworkLoader_Bootstrap.php", |
|
5 | - "AdminPageFrameworkLoader_AdminPage"=> AdminPageFrameworkLoader_Registry::$sDirPath . "/include/class/admin/admin-page-framework/AdminPageFrameworkLoader_AdminPage.php", |
|
6 | - "AdminPageFrameworkLoader_AdminPageMetaBox_ExternalLinks"=> AdminPageFrameworkLoader_Registry::$sDirPath . "/include/class/admin/admin-page-framework/AdminPageFrameworkLoader_AdminPageMetaBox_ExternalLinks.php", |
|
7 | - "AdminPageFrameworkLoader_AdminPageMetaBox_Notification"=> AdminPageFrameworkLoader_Registry::$sDirPath . "/include/class/admin/admin-page-framework/AdminPageFrameworkLoader_AdminPageMetaBox_Notification.php", |
|
8 | - "AdminPageFrameworkLoader_AdminPage_Addon"=> AdminPageFrameworkLoader_Registry::$sDirPath . "/include/class/admin/admin-page-framework/addon/AdminPageFrameworkLoader_AdminPage_Addon.php", |
|
9 | - "AdminPageFrameworkLoader_AdminPage_Addon_Top"=> AdminPageFrameworkLoader_Registry::$sDirPath . "/include/class/admin/admin-page-framework/addon/AdminPageFrameworkLoader_AdminPage_Addon_Top.php", |
|
10 | - "AdminPageFrameworkLoader_AdminPage_Help"=> AdminPageFrameworkLoader_Registry::$sDirPath . "/include/class/admin/admin-page-framework/help/AdminPageFrameworkLoader_AdminPage_Help.php", |
|
11 | - "AdminPageFrameworkLoader_AdminPage_Help_About"=> AdminPageFrameworkLoader_Registry::$sDirPath . "/include/class/admin/admin-page-framework/help/AdminPageFrameworkLoader_AdminPage_Help_About.php", |
|
12 | - "AdminPageFrameworkLoader_AdminPage_Help_Debug"=> AdminPageFrameworkLoader_Registry::$sDirPath . "/include/class/admin/admin-page-framework/help/AdminPageFrameworkLoader_AdminPage_Help_Debug.php", |
|
13 | - "AdminPageFrameworkLoader_AdminPage_Help_Example"=> AdminPageFrameworkLoader_Registry::$sDirPath . "/include/class/admin/admin-page-framework/help/AdminPageFrameworkLoader_AdminPage_Help_Example.php", |
|
14 | - "AdminPageFrameworkLoader_AdminPage_Help_FAQ"=> AdminPageFrameworkLoader_Registry::$sDirPath . "/include/class/admin/admin-page-framework/help/AdminPageFrameworkLoader_AdminPage_Help_FAQ.php", |
|
15 | - "AdminPageFrameworkLoader_AdminPage_Help_Guide"=> AdminPageFrameworkLoader_Registry::$sDirPath . "/include/class/admin/admin-page-framework/help/AdminPageFrameworkLoader_AdminPage_Help_Guide.php", |
|
16 | - "AdminPageFrameworkLoader_AdminPage_Help_Information"=> AdminPageFrameworkLoader_Registry::$sDirPath . "/include/class/admin/admin-page-framework/help/AdminPageFrameworkLoader_AdminPage_Help_Information.php", |
|
17 | - "AdminPageFrameworkLoader_AdminPage_Help_Report"=> AdminPageFrameworkLoader_Registry::$sDirPath . "/include/class/admin/admin-page-framework/help/AdminPageFrameworkLoader_AdminPage_Help_Report.php", |
|
18 | - "AdminPageFrameworkLoader_AdminPage_Help_Report_Report"=> AdminPageFrameworkLoader_Registry::$sDirPath . "/include/class/admin/admin-page-framework/help/AdminPageFrameworkLoader_AdminPage_Help_Report_Report.php", |
|
19 | - "AdminPageFrameworkLoader_AdminPage_Help_Tip"=> AdminPageFrameworkLoader_Registry::$sDirPath . "/include/class/admin/admin-page-framework/help/AdminPageFrameworkLoader_AdminPage_Help_Tip.php", |
|
20 | - "AdminPageFrameworkLoader_AdminPage_Tool"=> AdminPageFrameworkLoader_Registry::$sDirPath . "/include/class/admin/admin-page-framework/tool/AdminPageFrameworkLoader_AdminPage_Tool.php", |
|
21 | - "AdminPageFrameworkLoader_AdminPage_Tool_Generator"=> AdminPageFrameworkLoader_Registry::$sDirPath . "/include/class/admin/admin-page-framework/tool/generator/AdminPageFrameworkLoader_AdminPage_Tool_Generator.php", |
|
22 | - "AdminPageFrameworkLoader_AdminPage_Tool_Generator_CustomFieldTypes"=> AdminPageFrameworkLoader_Registry::$sDirPath . "/include/class/admin/admin-page-framework/tool/generator/AdminPageFrameworkLoader_AdminPage_Tool_Generator_CustomFieldTypes.php", |
|
23 | - "AdminPageFrameworkLoader_AdminPage_Tool_Generator_Generator"=> AdminPageFrameworkLoader_Registry::$sDirPath . "/include/class/admin/admin-page-framework/tool/generator/AdminPageFrameworkLoader_AdminPage_Tool_Generator_Generator.php", |
|
24 | - "AdminPageFrameworkLoader_AdminPage_Tool_Minifier"=> AdminPageFrameworkLoader_Registry::$sDirPath . "/include/class/admin/admin-page-framework/tool/minifier/AdminPageFrameworkLoader_AdminPage_Tool_Minifier.php", |
|
25 | - "AdminPageFrameworkLoader_AdminPage_Tool_Minifier_Minifier"=> AdminPageFrameworkLoader_Registry::$sDirPath . "/include/class/admin/admin-page-framework/tool/minifier/AdminPageFrameworkLoader_AdminPage_Tool_Minifier_Minifier.php", |
|
26 | - "AdminPageFrameworkLoader_AdminPageWelcome"=> AdminPageFrameworkLoader_Registry::$sDirPath . "/include/class/admin/dashboard/AdminPageFrameworkLoader_AdminPageWelcome.php", |
|
27 | - "AdminPageFrameworkLoader_AdminPageWelcome_Welcome"=> AdminPageFrameworkLoader_Registry::$sDirPath . "/include/class/admin/dashboard/welcome/AdminPageFrameworkLoader_AdminPageWelcome_Welcome.php", |
|
28 | - "AdminPageFrameworkLoader_Demo"=> AdminPageFrameworkLoader_Registry::$sDirPath . "/include/class/admin/demo/AdminPageFrameworkLoader_Demo.php", |
|
29 | - "AdminPageFrameworkLoader_NetworkAdmin"=> AdminPageFrameworkLoader_Registry::$sDirPath . "/include/class/admin/network-admin/AdminPageFrameworkLoader_NetworkAdmin.php", |
|
30 | - "AdminPageFrameworkLoader_AdminPage_Page_Base"=> AdminPageFrameworkLoader_Registry::$sDirPath . "/include/class/admin/_abstract/AdminPageFrameworkLoader_AdminPage_Page_Base.php", |
|
31 | - "AdminPageFrameworkLoader_AdminPage_RootBase"=> AdminPageFrameworkLoader_Registry::$sDirPath . "/include/class/admin/_abstract/AdminPageFrameworkLoader_AdminPage_RootBase.php", |
|
32 | - "AdminPageFrameworkLoader_AdminPage_Section_Base"=> AdminPageFrameworkLoader_Registry::$sDirPath . "/include/class/admin/_abstract/AdminPageFrameworkLoader_AdminPage_Section_Base.php", |
|
33 | - "AdminPageFrameworkLoader_AdminPage_Tab_Base"=> AdminPageFrameworkLoader_Registry::$sDirPath . "/include/class/admin/_abstract/AdminPageFrameworkLoader_AdminPage_Tab_Base.php", |
|
34 | - "AdminPageFrameworkLoader_AdminPage_Tab_ReadMeBase"=> AdminPageFrameworkLoader_Registry::$sDirPath . "/include/class/admin/_abstract/AdminPageFrameworkLoader_AdminPage_Tab_ReadMeBase.php", |
|
35 | - "AdminPageFrameworkLoader_Event"=> AdminPageFrameworkLoader_Registry::$sDirPath . "/include/class/event/AdminPageFrameworkLoader_Event.php", |
|
36 | - "AdminPageFrameworkLoader_Event_Action_GetDevelopmentVersion"=> AdminPageFrameworkLoader_Registry::$sDirPath . "/include/class/event/AdminPageFrameworkLoader_Event_Action_GetDevelopmentVersion.php", |
|
37 | - "AdminPageFrameworkLoader_Option"=> AdminPageFrameworkLoader_Registry::$sDirPath . "/include/class/option/AdminPageFrameworkLoader_Option.php", |
|
38 | - "AdminPageFrameworkLoader_FeedList"=> AdminPageFrameworkLoader_Registry::$sDirPath . "/include/class/utility/AdminPageFrameworkLoader_FeedList.php", |
|
39 | - "AdminPageFrameworkLoader_Utility"=> AdminPageFrameworkLoader_Registry::$sDirPath . "/include/class/utility/AdminPageFrameworkLoader_Utility.php", |
|
3 | + "GitHubCustomFieldType"=> AdminPageFrameworkLoader_Registry::$sDirPath."/include/library/github-custom-field-type/GitHubCustomFieldType.php", |
|
4 | + "AdminPageFrameworkLoader_Bootstrap"=> AdminPageFrameworkLoader_Registry::$sDirPath."/include/class/AdminPageFrameworkLoader_Bootstrap.php", |
|
5 | + "AdminPageFrameworkLoader_AdminPage"=> AdminPageFrameworkLoader_Registry::$sDirPath."/include/class/admin/admin-page-framework/AdminPageFrameworkLoader_AdminPage.php", |
|
6 | + "AdminPageFrameworkLoader_AdminPageMetaBox_ExternalLinks"=> AdminPageFrameworkLoader_Registry::$sDirPath."/include/class/admin/admin-page-framework/AdminPageFrameworkLoader_AdminPageMetaBox_ExternalLinks.php", |
|
7 | + "AdminPageFrameworkLoader_AdminPageMetaBox_Notification"=> AdminPageFrameworkLoader_Registry::$sDirPath."/include/class/admin/admin-page-framework/AdminPageFrameworkLoader_AdminPageMetaBox_Notification.php", |
|
8 | + "AdminPageFrameworkLoader_AdminPage_Addon"=> AdminPageFrameworkLoader_Registry::$sDirPath."/include/class/admin/admin-page-framework/addon/AdminPageFrameworkLoader_AdminPage_Addon.php", |
|
9 | + "AdminPageFrameworkLoader_AdminPage_Addon_Top"=> AdminPageFrameworkLoader_Registry::$sDirPath."/include/class/admin/admin-page-framework/addon/AdminPageFrameworkLoader_AdminPage_Addon_Top.php", |
|
10 | + "AdminPageFrameworkLoader_AdminPage_Help"=> AdminPageFrameworkLoader_Registry::$sDirPath."/include/class/admin/admin-page-framework/help/AdminPageFrameworkLoader_AdminPage_Help.php", |
|
11 | + "AdminPageFrameworkLoader_AdminPage_Help_About"=> AdminPageFrameworkLoader_Registry::$sDirPath."/include/class/admin/admin-page-framework/help/AdminPageFrameworkLoader_AdminPage_Help_About.php", |
|
12 | + "AdminPageFrameworkLoader_AdminPage_Help_Debug"=> AdminPageFrameworkLoader_Registry::$sDirPath."/include/class/admin/admin-page-framework/help/AdminPageFrameworkLoader_AdminPage_Help_Debug.php", |
|
13 | + "AdminPageFrameworkLoader_AdminPage_Help_Example"=> AdminPageFrameworkLoader_Registry::$sDirPath."/include/class/admin/admin-page-framework/help/AdminPageFrameworkLoader_AdminPage_Help_Example.php", |
|
14 | + "AdminPageFrameworkLoader_AdminPage_Help_FAQ"=> AdminPageFrameworkLoader_Registry::$sDirPath."/include/class/admin/admin-page-framework/help/AdminPageFrameworkLoader_AdminPage_Help_FAQ.php", |
|
15 | + "AdminPageFrameworkLoader_AdminPage_Help_Guide"=> AdminPageFrameworkLoader_Registry::$sDirPath."/include/class/admin/admin-page-framework/help/AdminPageFrameworkLoader_AdminPage_Help_Guide.php", |
|
16 | + "AdminPageFrameworkLoader_AdminPage_Help_Information"=> AdminPageFrameworkLoader_Registry::$sDirPath."/include/class/admin/admin-page-framework/help/AdminPageFrameworkLoader_AdminPage_Help_Information.php", |
|
17 | + "AdminPageFrameworkLoader_AdminPage_Help_Report"=> AdminPageFrameworkLoader_Registry::$sDirPath."/include/class/admin/admin-page-framework/help/AdminPageFrameworkLoader_AdminPage_Help_Report.php", |
|
18 | + "AdminPageFrameworkLoader_AdminPage_Help_Report_Report"=> AdminPageFrameworkLoader_Registry::$sDirPath."/include/class/admin/admin-page-framework/help/AdminPageFrameworkLoader_AdminPage_Help_Report_Report.php", |
|
19 | + "AdminPageFrameworkLoader_AdminPage_Help_Tip"=> AdminPageFrameworkLoader_Registry::$sDirPath."/include/class/admin/admin-page-framework/help/AdminPageFrameworkLoader_AdminPage_Help_Tip.php", |
|
20 | + "AdminPageFrameworkLoader_AdminPage_Tool"=> AdminPageFrameworkLoader_Registry::$sDirPath."/include/class/admin/admin-page-framework/tool/AdminPageFrameworkLoader_AdminPage_Tool.php", |
|
21 | + "AdminPageFrameworkLoader_AdminPage_Tool_Generator"=> AdminPageFrameworkLoader_Registry::$sDirPath."/include/class/admin/admin-page-framework/tool/generator/AdminPageFrameworkLoader_AdminPage_Tool_Generator.php", |
|
22 | + "AdminPageFrameworkLoader_AdminPage_Tool_Generator_CustomFieldTypes"=> AdminPageFrameworkLoader_Registry::$sDirPath."/include/class/admin/admin-page-framework/tool/generator/AdminPageFrameworkLoader_AdminPage_Tool_Generator_CustomFieldTypes.php", |
|
23 | + "AdminPageFrameworkLoader_AdminPage_Tool_Generator_Generator"=> AdminPageFrameworkLoader_Registry::$sDirPath."/include/class/admin/admin-page-framework/tool/generator/AdminPageFrameworkLoader_AdminPage_Tool_Generator_Generator.php", |
|
24 | + "AdminPageFrameworkLoader_AdminPage_Tool_Minifier"=> AdminPageFrameworkLoader_Registry::$sDirPath."/include/class/admin/admin-page-framework/tool/minifier/AdminPageFrameworkLoader_AdminPage_Tool_Minifier.php", |
|
25 | + "AdminPageFrameworkLoader_AdminPage_Tool_Minifier_Minifier"=> AdminPageFrameworkLoader_Registry::$sDirPath."/include/class/admin/admin-page-framework/tool/minifier/AdminPageFrameworkLoader_AdminPage_Tool_Minifier_Minifier.php", |
|
26 | + "AdminPageFrameworkLoader_AdminPageWelcome"=> AdminPageFrameworkLoader_Registry::$sDirPath."/include/class/admin/dashboard/AdminPageFrameworkLoader_AdminPageWelcome.php", |
|
27 | + "AdminPageFrameworkLoader_AdminPageWelcome_Welcome"=> AdminPageFrameworkLoader_Registry::$sDirPath."/include/class/admin/dashboard/welcome/AdminPageFrameworkLoader_AdminPageWelcome_Welcome.php", |
|
28 | + "AdminPageFrameworkLoader_Demo"=> AdminPageFrameworkLoader_Registry::$sDirPath."/include/class/admin/demo/AdminPageFrameworkLoader_Demo.php", |
|
29 | + "AdminPageFrameworkLoader_NetworkAdmin"=> AdminPageFrameworkLoader_Registry::$sDirPath."/include/class/admin/network-admin/AdminPageFrameworkLoader_NetworkAdmin.php", |
|
30 | + "AdminPageFrameworkLoader_AdminPage_Page_Base"=> AdminPageFrameworkLoader_Registry::$sDirPath."/include/class/admin/_abstract/AdminPageFrameworkLoader_AdminPage_Page_Base.php", |
|
31 | + "AdminPageFrameworkLoader_AdminPage_RootBase"=> AdminPageFrameworkLoader_Registry::$sDirPath."/include/class/admin/_abstract/AdminPageFrameworkLoader_AdminPage_RootBase.php", |
|
32 | + "AdminPageFrameworkLoader_AdminPage_Section_Base"=> AdminPageFrameworkLoader_Registry::$sDirPath."/include/class/admin/_abstract/AdminPageFrameworkLoader_AdminPage_Section_Base.php", |
|
33 | + "AdminPageFrameworkLoader_AdminPage_Tab_Base"=> AdminPageFrameworkLoader_Registry::$sDirPath."/include/class/admin/_abstract/AdminPageFrameworkLoader_AdminPage_Tab_Base.php", |
|
34 | + "AdminPageFrameworkLoader_AdminPage_Tab_ReadMeBase"=> AdminPageFrameworkLoader_Registry::$sDirPath."/include/class/admin/_abstract/AdminPageFrameworkLoader_AdminPage_Tab_ReadMeBase.php", |
|
35 | + "AdminPageFrameworkLoader_Event"=> AdminPageFrameworkLoader_Registry::$sDirPath."/include/class/event/AdminPageFrameworkLoader_Event.php", |
|
36 | + "AdminPageFrameworkLoader_Event_Action_GetDevelopmentVersion"=> AdminPageFrameworkLoader_Registry::$sDirPath."/include/class/event/AdminPageFrameworkLoader_Event_Action_GetDevelopmentVersion.php", |
|
37 | + "AdminPageFrameworkLoader_Option"=> AdminPageFrameworkLoader_Registry::$sDirPath."/include/class/option/AdminPageFrameworkLoader_Option.php", |
|
38 | + "AdminPageFrameworkLoader_FeedList"=> AdminPageFrameworkLoader_Registry::$sDirPath."/include/class/utility/AdminPageFrameworkLoader_FeedList.php", |
|
39 | + "AdminPageFrameworkLoader_Utility"=> AdminPageFrameworkLoader_Registry::$sDirPath."/include/class/utility/AdminPageFrameworkLoader_Utility.php", |
|
40 | 40 | ); |