@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | |
33 | 33 | $_aParameters = func_get_args() + array( |
34 | 34 | $this->aFieldset, |
35 | - $this->aSavedData, // passed by reference. @todo: examine why it needs to be passed by reference. |
|
35 | + $this->aSavedData, // passed by reference. @todo: examine why it needs to be passed by reference. |
|
36 | 36 | $this->aFieldErrors, |
37 | 37 | $this->aFieldTypeDefinitions, |
38 | 38 | $this->aCallbacks, // field output element callables. |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | |
61 | 61 | $aFieldset = $this->aFieldset; |
62 | 62 | |
63 | - if ( ! $this->isNormalPlacement( $aFieldset ) ) { |
|
63 | + if ( !$this->isNormalPlacement( $aFieldset ) ) { |
|
64 | 64 | return ''; |
65 | 65 | } |
66 | 66 | |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | return $this->_getFieldByContainer( |
72 | 72 | $aFieldset, |
73 | 73 | array( |
74 | - 'open_main' => "<div " . $_oFieldrowAttribute->get() . ">", |
|
74 | + 'open_main' => "<div ".$_oFieldrowAttribute->get().">", |
|
75 | 75 | 'close_main' => "</div>", |
76 | 76 | ) |
77 | 77 | ); |
@@ -67,16 +67,16 @@ discard block |
||
67 | 67 | */ |
68 | 68 | protected function getField( $aField ) { |
69 | 69 | |
70 | - $_oCallerForm = $aField[ '_caller_object' ]; |
|
70 | + $_oCallerForm = $aField[ '_caller_object' ]; |
|
71 | 71 | |
72 | 72 | $_aInlineMixedOutput = array(); |
73 | - foreach( $this->getAsArray( $aField[ 'content' ] ) as $_aChildFieldset ) { |
|
73 | + foreach ( $this->getAsArray( $aField[ 'content' ] ) as $_aChildFieldset ) { |
|
74 | 74 | |
75 | 75 | if ( is_scalar( $_aChildFieldset ) ) { |
76 | 76 | continue; |
77 | 77 | } |
78 | 78 | |
79 | - if ( ! $this->isNormalPlacement( $_aChildFieldset ) ) { |
|
79 | + if ( !$this->isNormalPlacement( $_aChildFieldset ) ) { |
|
80 | 80 | continue; |
81 | 81 | } |
82 | 82 | |
@@ -92,12 +92,12 @@ discard block |
||
92 | 92 | $_oFieldset = new AdminPageFramework_Form_View___Fieldset( |
93 | 93 | $_aChildFieldset, |
94 | 94 | $_oCallerForm->aSavedData, |
95 | - $_oCallerForm->getFieldErrors(), // @todo Generate field errors. $this->aErrors, |
|
95 | + $_oCallerForm->getFieldErrors(), // @todo Generate field errors. $this->aErrors, |
|
96 | 96 | $_oCallerForm->aFieldTypeDefinitions, |
97 | 97 | $_oCallerForm->oMsg, |
98 | 98 | $_oCallerForm->aCallbacks // field output element callables. |
99 | 99 | ); |
100 | - $_aInlineMixedOutput[] = $_oFieldset->get(); // field output |
|
100 | + $_aInlineMixedOutput[ ] = $_oFieldset->get(); // field output |
|
101 | 101 | |
102 | 102 | |
103 | 103 | } |
@@ -36,7 +36,7 @@ |
||
36 | 36 | * |
37 | 37 | * @since 3.8.0 |
38 | 38 | */ |
39 | - protected function getStyles() { |
|
39 | + protected function getStyles() { |
|
40 | 40 | return <<<CSSRULES |
41 | 41 | /* Nested fieldsets 3.8.0+ */ |
42 | 42 | .admin-page-framework-fieldset > .admin-page-framework-fields > .admin-page-framework-field.with-nested-fields > .admin-page-framework-fieldset.multiple-nesting { |
@@ -112,18 +112,18 @@ discard block |
||
112 | 112 | */ |
113 | 113 | private function _setHooks( $aScreenIDs ) { |
114 | 114 | |
115 | - foreach( $aScreenIDs as $_sScreenID ) { |
|
116 | - if ( ! $_sScreenID ) { |
|
115 | + foreach ( $aScreenIDs as $_sScreenID ) { |
|
116 | + if ( !$_sScreenID ) { |
|
117 | 117 | continue; |
118 | 118 | } |
119 | 119 | add_filter( |
120 | - get_class( $this ) . '-' . $_sScreenID, |
|
120 | + get_class( $this ).'-'.$_sScreenID, |
|
121 | 121 | array( $this, '_replyToSetPointer' ) |
122 | 122 | ); |
123 | 123 | |
124 | 124 | } |
125 | 125 | |
126 | - if ( ! $this->_hasBeenCalled() ) { |
|
126 | + if ( !$this->_hasBeenCalled() ) { |
|
127 | 127 | return; |
128 | 128 | } |
129 | 129 | |
@@ -170,7 +170,7 @@ discard block |
||
170 | 170 | |
171 | 171 | $_aPointers = $this->_getValidPointers( $this->_getPointers() ); |
172 | 172 | |
173 | - if ( empty( $_aPointers ) || ! is_array( $_aPointers ) ) { |
|
173 | + if ( empty( $_aPointers ) || !is_array( $_aPointers ) ) { |
|
174 | 174 | return; |
175 | 175 | } |
176 | 176 | |
@@ -190,11 +190,11 @@ discard block |
||
190 | 190 | $_oScreen = get_current_screen(); |
191 | 191 | $_sScreenID = $_oScreen->id; |
192 | 192 | if ( in_array( $_sScreenID, $this->aScreenIDs ) ) { |
193 | - return apply_filters( get_class( $this ) . '-' . $_sScreenID, array() ); |
|
193 | + return apply_filters( get_class( $this ).'-'.$_sScreenID, array() ); |
|
194 | 194 | } |
195 | 195 | |
196 | 196 | if ( isset( $_GET[ 'page' ] ) ) { |
197 | - return apply_filters( get_class( $this ) . '-' . $_GET[ 'page' ], array() ); |
|
197 | + return apply_filters( get_class( $this ).'-'.$_GET[ 'page' ], array() ); |
|
198 | 198 | } |
199 | 199 | return array(); |
200 | 200 | |
@@ -208,7 +208,7 @@ discard block |
||
208 | 208 | private function _getValidPointers( $_aPointers ) { |
209 | 209 | |
210 | 210 | // Get dismissed pointers |
211 | - $_aDismissed = explode( |
|
211 | + $_aDismissed = explode( |
|
212 | 212 | ',', |
213 | 213 | ( string ) get_user_meta( |
214 | 214 | get_current_user_id(), |
@@ -236,7 +236,7 @@ discard block |
||
236 | 236 | $_aPointer[ 'pointer_id' ] = $_iPointerID; |
237 | 237 | |
238 | 238 | // Add the pointer to $_aValidPointers array |
239 | - $_aValidPointers[] = $_aPointer; |
|
239 | + $_aValidPointers[ ] = $_aPointer; |
|
240 | 240 | |
241 | 241 | } |
242 | 242 | return $_aValidPointers; |
@@ -312,9 +312,9 @@ discard block |
||
312 | 312 | * @return string |
313 | 313 | * @internal |
314 | 314 | */ |
315 | - public function _getInternalScript( $aPointers=array() ) { |
|
315 | + public function _getInternalScript( $aPointers = array() ) { |
|
316 | 316 | |
317 | - $_aJSArray = json_encode( $aPointers ); |
|
317 | + $_aJSArray = json_encode( $aPointers ); |
|
318 | 318 | |
319 | 319 | /** |
320 | 320 | * Checks check-boxes in siblings. |
@@ -69,7 +69,7 @@ |
||
69 | 69 | * |
70 | 70 | * @since 3.7.0 |
71 | 71 | * @see https://codex.wordpress.org/Plugin_API/Admin_Screen_Reference |
72 | - * @param array|strin $asScreenIDs Screen IDs or page slug. |
|
72 | + * @param string[] $asScreenIDs Screen IDs or page slug. |
|
73 | 73 | * @param string $sPointerID A unique pointer ID. |
74 | 74 | * @param array $aPointerData The pointer data. |
75 | 75 | * <h4>Arguments</h4> |
@@ -213,7 +213,7 @@ |
||
213 | 213 | get_current_user_id(), |
214 | 214 | 'dismissed_wp_pointers', |
215 | 215 | true |
216 | - ) |
|
216 | + ) |
|
217 | 217 | ); |
218 | 218 | $_aValidPointers = array(); |
219 | 219 |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | public function __construct( $asScreenIDs, $sPointerID, array $aPointerData ) { |
92 | 92 | |
93 | 93 | // Bail if the WordPress version is less than 3.3, |
94 | - if ( version_compare( $GLOBALS[ 'wp_version' ], '3.3', '<' ) ) { |
|
94 | + if ( version_compare( $GLOBALS[ 'wp_version' ], '3.3', '<' ) ) { |
|
95 | 95 | return false; |
96 | 96 | } |
97 | 97 | |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | */ |
112 | 112 | private function _setHooks( $aScreenIDs ) { |
113 | 113 | |
114 | - foreach( $aScreenIDs as $_sScreenID ) { |
|
114 | + foreach( $aScreenIDs as $_sScreenID ) { |
|
115 | 115 | if ( ! $_sScreenID ) { |
116 | 116 | continue; |
117 | 117 | } |
@@ -59,23 +59,23 @@ discard block |
||
59 | 59 | */ |
60 | 60 | public function get() { |
61 | 61 | |
62 | - $this->aResources[ 'internal_scripts' ] = $this->_getUpdatedInternalItemsByCallback( |
|
62 | + $this->aResources[ 'internal_scripts' ] = $this->_getUpdatedInternalItemsByCallback( |
|
63 | 63 | $this->aResources[ 'internal_scripts' ], |
64 | 64 | 'hfGetScripts' |
65 | 65 | ); |
66 | - $this->aResources[ 'internal_styles' ] = $this->_getUpdatedInternalItemsByCallback( |
|
66 | + $this->aResources[ 'internal_styles' ] = $this->_getUpdatedInternalItemsByCallback( |
|
67 | 67 | $this->aResources[ 'internal_styles' ], |
68 | 68 | 'hfGetStyles' |
69 | 69 | ); |
70 | - $this->aResources[ 'internal_styles_ie' ] = $this->_getUpdatedInternalItemsByCallback( |
|
70 | + $this->aResources[ 'internal_styles_ie' ] = $this->_getUpdatedInternalItemsByCallback( |
|
71 | 71 | $this->aResources[ 'internal_styles_ie' ], |
72 | 72 | 'hfGetIEStyles' |
73 | 73 | ); |
74 | - $this->aResources[ 'src_styles' ] = $this->_getUpdatedEnqueuingItemsByCallback( |
|
74 | + $this->aResources[ 'src_styles' ] = $this->_getUpdatedEnqueuingItemsByCallback( |
|
75 | 75 | $this->aResources[ 'src_styles' ], |
76 | 76 | 'aEnqueueStyles' |
77 | 77 | ); |
78 | - $this->aResources[ 'src_scripts' ] = $this->_getUpdatedEnqueuingItemsByCallback( |
|
78 | + $this->aResources[ 'src_scripts' ] = $this->_getUpdatedEnqueuingItemsByCallback( |
|
79 | 79 | $this->aResources[ 'src_scripts' ], |
80 | 80 | 'aEnqueueScripts' |
81 | 81 | ); |
@@ -89,10 +89,10 @@ discard block |
||
89 | 89 | */ |
90 | 90 | private function _getUpdatedInternalItemsByCallback( array $aSubject, $sKey ) { |
91 | 91 | $_oCallable = $this->getElement( $this->aFieldTypeDefinition, $sKey ); |
92 | - if ( ! is_callable( $_oCallable ) ) { |
|
92 | + if ( !is_callable( $_oCallable ) ) { |
|
93 | 93 | return $aSubject; |
94 | 94 | } |
95 | - $aSubject[] = call_user_func_array( |
|
95 | + $aSubject[ ] = call_user_func_array( |
|
96 | 96 | $_oCallable, |
97 | 97 | array() |
98 | 98 | ); |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | /** |
60 | 60 | * Defines the field type slugs used for this field type. |
61 | 61 | */ |
62 | - public $aFieldTypeSlugs = array( 'image', ); |
|
62 | + public $aFieldTypeSlugs = array( 'image',); |
|
63 | 63 | |
64 | 64 | /** |
65 | 65 | * Defines the default key-values of this field type. |
@@ -68,8 +68,8 @@ discard block |
||
68 | 68 | */ |
69 | 69 | protected $aDefaultKeys = array( |
70 | 70 | 'attributes_to_store' => array(), // ( array ) This is for the image and media field type. The attributes to save besides URL. e.g. ( for the image field type ) array( 'title', 'alt', 'width', 'height', 'caption', 'id', 'align', 'link' ). |
71 | - 'show_preview' => true, // ( boolean ) Indicates whether the image preview should be displayed or not. |
|
72 | - 'allow_external_source' => true, // ( boolean ) Indicates whether the media library box has the From URL tab. |
|
71 | + 'show_preview' => true, // ( boolean ) Indicates whether the image preview should be displayed or not. |
|
72 | + 'allow_external_source' => true, // ( boolean ) Indicates whether the media library box has the From URL tab. |
|
73 | 73 | 'attributes' => array( |
74 | 74 | 'input' => array( |
75 | 75 | 'size' => 40, |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | return // $this->_getScript_CustomMediaUploaderObject() . PHP_EOL |
100 | 100 | $this->_getScript_ImageSelector( |
101 | 101 | "admin_page_framework" |
102 | - ) . PHP_EOL |
|
102 | + ).PHP_EOL |
|
103 | 103 | . $this->_getScript_RegisterCallbacks(); |
104 | 104 | } |
105 | 105 | /** |
@@ -217,7 +217,7 @@ discard block |
||
217 | 217 | $_sInsertFromURL = esc_js( $this->oMsg->get( 'insert_from_url' ) ); |
218 | 218 | |
219 | 219 | // if the WordPress version is 3.4.x or below |
220 | - if ( ! function_exists( 'wp_enqueue_media' ) ) { |
|
220 | + if ( !function_exists( 'wp_enqueue_media' ) ) { |
|
221 | 221 | |
222 | 222 | return <<<JAVASCRIPTS |
223 | 223 | /** |
@@ -605,13 +605,13 @@ discard block |
||
605 | 605 | . "<label for='{$aField[ 'input_id' ]}'>" |
606 | 606 | . $aField[ 'before_input' ] |
607 | 607 | . $this->getAOrB( |
608 | - $aField[ 'label' ] && ! $aField[ 'repeatable' ], |
|
609 | - "<span " . $this->getLabelContainerAttributes( $aField, 'admin-page-framework-input-label-string' ) . ">" |
|
608 | + $aField[ 'label' ] && !$aField[ 'repeatable' ], |
|
609 | + "<span ".$this->getLabelContainerAttributes( $aField, 'admin-page-framework-input-label-string' ).">" |
|
610 | 610 | . $aField[ 'label' ] |
611 | 611 | . "</span>", |
612 | 612 | '' |
613 | 613 | ) |
614 | - . "<input " . $this->getAttributes( $this->_getImageInputAttributes( $aField, $_iCountAttributes, $_sImageURL, $_aBaseAttributes ) ) . " />" |
|
614 | + . "<input ".$this->getAttributes( $this->_getImageInputAttributes( $aField, $_iCountAttributes, $_sImageURL, $_aBaseAttributes ) )." />" |
|
615 | 615 | . $aField[ 'after_input' ] |
616 | 616 | . "<div class='repeatable-field-buttons'></div>" // the repeatable field buttons will be replaced with this element. |
617 | 617 | . $this->getExtraInputFields( $aField ) |
@@ -651,7 +651,7 @@ discard block |
||
651 | 651 | */ |
652 | 652 | private function _getBaseAttributes( array $aField ) { |
653 | 653 | |
654 | - $_aBaseAttributes = $aField[ 'attributes' ] + array( 'class' => null ); |
|
654 | + $_aBaseAttributes = $aField[ 'attributes' ] + array( 'class' => null ); |
|
655 | 655 | unset( |
656 | 656 | $_aBaseAttributes[ 'input' ], |
657 | 657 | $_aBaseAttributes[ 'button' ], |
@@ -720,8 +720,8 @@ discard block |
||
720 | 720 | protected function getExtraInputFields( array $aField ) { |
721 | 721 | |
722 | 722 | $_aOutputs = array(); |
723 | - foreach( $this->getElementAsArray( $aField, 'attributes_to_store' ) as $sAttribute ) { |
|
724 | - $_aOutputs[] = "<input " . $this->getAttributes( |
|
723 | + foreach ( $this->getElementAsArray( $aField, 'attributes_to_store' ) as $sAttribute ) { |
|
724 | + $_aOutputs[ ] = "<input ".$this->getAttributes( |
|
725 | 725 | array( |
726 | 726 | 'id' => "{$aField[ 'input_id' ]}_{$sAttribute}", |
727 | 727 | 'type' => 'hidden', |
@@ -737,7 +737,7 @@ discard block |
||
737 | 737 | '' |
738 | 738 | ), |
739 | 739 | ) |
740 | - ) . "/>"; |
|
740 | + )."/>"; |
|
741 | 741 | } |
742 | 742 | return implode( PHP_EOL, $_aOutputs ); |
743 | 743 | |
@@ -750,17 +750,17 @@ discard block |
||
750 | 750 | */ |
751 | 751 | protected function _getPreviewContainer( $aField, $sImageURL, $aPreviewAtrributes ) { |
752 | 752 | |
753 | - if ( ! $aField[ 'show_preview' ] ) { |
|
753 | + if ( !$aField[ 'show_preview' ] ) { |
|
754 | 754 | return ''; |
755 | 755 | } |
756 | 756 | |
757 | 757 | $sImageURL = esc_url( $this->getResolvedSRC( $sImageURL, true ) ); |
758 | 758 | return |
759 | - "<div " . $this->getAttributes( |
|
759 | + "<div ".$this->getAttributes( |
|
760 | 760 | array( |
761 | 761 | 'id' => "image_preview_container_{$aField[ 'input_id' ]}", |
762 | - 'class' => 'image_preview ' . $this->getElement( $aPreviewAtrributes, 'class', '' ), |
|
763 | - 'style' => $this->getAOrB( $sImageURL, '', "display: none; " ) |
|
762 | + 'class' => 'image_preview '.$this->getElement( $aPreviewAtrributes, 'class', '' ), |
|
763 | + 'style' => $this->getAOrB( $sImageURL, '', "display: none; " ) |
|
764 | 764 | . $this->getElement( $aPreviewAtrributes, 'style', '' ), |
765 | 765 | ) + $aPreviewAtrributes |
766 | 766 | ) |
@@ -783,12 +783,12 @@ discard block |
||
783 | 783 | */ |
784 | 784 | protected function _getUploaderButtonScript( $sInputID, $abRepeatable, $bExternalSource, array $aButtonAttributes ) { |
785 | 785 | |
786 | - $_bRepeatable = ! empty( $abRepeatable ); |
|
786 | + $_bRepeatable = !empty( $abRepeatable ); |
|
787 | 787 | |
788 | 788 | // Do not include the escaping character (backslash) in the heredoc variable declaration |
789 | 789 | // because the minifier script will parse it and the <<<JAVASCRIPTS and JAVASCRIPTS; parts are converted to double quotes (") |
790 | 790 | // which causes the PHP syntax error. |
791 | - $_sButtonHTML = '"' . $this->_getUploaderButtonHTML( $sInputID, $aButtonAttributes, $_bRepeatable, $bExternalSource ) . '"'; |
|
791 | + $_sButtonHTML = '"'.$this->_getUploaderButtonHTML( $sInputID, $aButtonAttributes, $_bRepeatable, $bExternalSource ).'"'; |
|
792 | 792 | $_sRepeatable = $this->getAOrB( $_bRepeatable, 'true', 'false' ); |
793 | 793 | $_bExternalSource = $this->getAOrB( $bExternalSource, 'true', 'false' ); |
794 | 794 | $_sScript = <<<JAVASCRIPTS |
@@ -804,7 +804,7 @@ discard block |
||
804 | 804 | . '/* <![CDATA[ */' |
805 | 805 | . $_sScript |
806 | 806 | . '/* ]]> */' |
807 | - . "</script>". PHP_EOL; |
|
807 | + . "</script>".PHP_EOL; |
|
808 | 808 | |
809 | 809 | } |
810 | 810 | /** |
@@ -823,7 +823,7 @@ discard block |
||
823 | 823 | $bRepeatable, |
824 | 824 | $bExternalSource |
825 | 825 | ); |
826 | - return "<a " . $this->getAttributes( $_aAttributes ) . ">" |
|
826 | + return "<a ".$this->getAttributes( $_aAttributes ).">" |
|
827 | 827 | . ( $_bIsLabelSet |
828 | 828 | ? $_aAttributes[ 'data-label' ] |
829 | 829 | : ( strrpos( $_aAttributes[ 'class' ], 'dashicons' ) |
@@ -842,7 +842,7 @@ discard block |
||
842 | 842 | */ |
843 | 843 | private function _getFormattedUploadButtonAttributes( $sInputID, array $aButtonAttributes, $_bIsLabelSet, $bRepeatable, $bExternalSource ) { |
844 | 844 | |
845 | - $_aAttributes = array( |
|
845 | + $_aAttributes = array( |
|
846 | 846 | 'id' => "select_image_{$sInputID}", |
847 | 847 | 'href' => '#', |
848 | 848 | 'data-uploader_type' => ( string ) function_exists( 'wp_enqueue_media' ), |
@@ -855,7 +855,7 @@ discard block |
||
855 | 855 | : $this->oMsg->get( 'select_image' ), |
856 | 856 | 'data-label' => null, |
857 | 857 | ); |
858 | - $_aAttributes[ 'class' ] = $this->getClassAttribute( |
|
858 | + $_aAttributes[ 'class' ] = $this->getClassAttribute( |
|
859 | 859 | 'select_image button button-small ', |
860 | 860 | $this->getAOrB( |
861 | 861 | trim( $aButtonAttributes[ 'class' ] ), |
@@ -883,16 +883,16 @@ discard block |
||
883 | 883 | * @return string |
884 | 884 | * @internal |
885 | 885 | */ |
886 | - protected function _getRemoveButtonScript( $sInputID, array $aButtonAttributes, $sType='image' ) { |
|
886 | + protected function _getRemoveButtonScript( $sInputID, array $aButtonAttributes, $sType = 'image' ) { |
|
887 | 887 | |
888 | - if ( ! function_exists( 'wp_enqueue_media' ) ) { |
|
888 | + if ( !function_exists( 'wp_enqueue_media' ) ) { |
|
889 | 889 | return ''; |
890 | 890 | } |
891 | 891 | |
892 | 892 | // Do not include the escaping character (backslash) in the heredoc variable declaration |
893 | 893 | // because the minifier script will parse it and the <<<JAVASCRIPTS and JAVASCRIPTS; parts are converted to double quotes (") |
894 | 894 | // which causes the PHP syntax error. |
895 | - $_sButtonHTML = '"' . $this->_getRemoveButtonHTMLByType( $sInputID, $aButtonAttributes, $sType ) . '"'; |
|
895 | + $_sButtonHTML = '"'.$this->_getRemoveButtonHTMLByType( $sInputID, $aButtonAttributes, $sType ).'"'; |
|
896 | 896 | $_sScript = <<<JAVASCRIPTS |
897 | 897 | if ( 0 === jQuery( 'a#remove_{$sType}_{$sInputID}' ).length ) { |
898 | 898 | jQuery( 'input#{$sInputID}' ).after( $_sButtonHTML ); |
@@ -903,7 +903,7 @@ discard block |
||
903 | 903 | . '/* <![CDATA[ */' |
904 | 904 | . $_sScript |
905 | 905 | . '/* ]]> */' |
906 | - . "</script>". PHP_EOL; |
|
906 | + . "</script>".PHP_EOL; |
|
907 | 907 | |
908 | 908 | } |
909 | 909 | |
@@ -913,11 +913,11 @@ discard block |
||
913 | 913 | * @return string The generated HTML remove button output. |
914 | 914 | * @internal |
915 | 915 | */ |
916 | - protected function _getRemoveButtonHTMLByType( $sInputID, array $aButtonAttributes, $sType='image' ) { |
|
916 | + protected function _getRemoveButtonHTMLByType( $sInputID, array $aButtonAttributes, $sType = 'image' ) { |
|
917 | 917 | |
918 | 918 | $_bIsLabelSet = isset( $aButtonAttributes[ 'data-label' ] ) && $aButtonAttributes[ 'data-label' ]; |
919 | 919 | $_aAttributes = $this->_getFormattedRemoveButtonAttributesByType( $sInputID, $aButtonAttributes, $_bIsLabelSet, $sType ); |
920 | - return "<a " . $this->getAttributes( $_aAttributes ) . ">" |
|
920 | + return "<a ".$this->getAttributes( $_aAttributes ).">" |
|
921 | 921 | . ( $_bIsLabelSet |
922 | 922 | ? $_aAttributes[ 'data-label' ] |
923 | 923 | : $this->getAOrB( |
@@ -936,9 +936,9 @@ discard block |
||
936 | 936 | * @return array The formatted remove button attributes array. |
937 | 937 | * @internal |
938 | 938 | */ |
939 | - protected function _getFormattedRemoveButtonAttributesByType( $sInputID, array $aButtonAttributes, $_bIsLabelSet, $sType='image' ) { |
|
939 | + protected function _getFormattedRemoveButtonAttributesByType( $sInputID, array $aButtonAttributes, $_bIsLabelSet, $sType = 'image' ) { |
|
940 | 940 | |
941 | - $_sOnClickFunctionName = 'removeInputValuesFor' . ucfirst( $sType ); |
|
941 | + $_sOnClickFunctionName = 'removeInputValuesFor'.ucfirst( $sType ); |
|
942 | 942 | $_aAttributes = array( |
943 | 943 | 'id' => "remove_{$sType}_{$sInputID}", |
944 | 944 | 'href' => '#', |
@@ -950,7 +950,7 @@ discard block |
||
950 | 950 | ? $aButtonAttributes[ 'data-label' ] |
951 | 951 | : $this->oMsg->get( 'remove_value' ), |
952 | 952 | ); |
953 | - $_aAttributes[ 'class' ] = $this->getClassAttribute( |
|
953 | + $_aAttributes[ 'class' ] = $this->getClassAttribute( |
|
954 | 954 | "remove_value remove_{$sType} button button-small", |
955 | 955 | $this->getAOrB( |
956 | 956 | trim( $aButtonAttributes[ 'class' ] ), |
@@ -625,7 +625,7 @@ |
||
625 | 625 | return $_aBaseAttributes; |
626 | 626 | |
627 | 627 | } |
628 | - /** |
|
628 | + /** |
|
629 | 629 | * Returns the set image url. |
630 | 630 | * |
631 | 631 | * When the 'attributes_to_store' argument is present, there will be sub elements to the field value. |
@@ -476,7 +476,7 @@ discard block |
||
476 | 476 | * Returns the field type specific CSS rules. |
477 | 477 | * @internal |
478 | 478 | */ |
479 | - protected function getStyles() { |
|
479 | + protected function getStyles() { |
|
480 | 480 | return <<<CSSRULES |
481 | 481 | /* Image Field Preview Container */ |
482 | 482 | .admin-page-framework-field .image_preview { |
@@ -714,7 +714,7 @@ discard block |
||
714 | 714 | */ |
715 | 715 | protected function _getPreviewContainer( $aField, $sImageURL, $aPreviewAtrributes ) { |
716 | 716 | |
717 | - if ( ! $aField[ 'show_preview' ] ) { |
|
717 | + if ( ! $aField[ 'show_preview' ] ) { |
|
718 | 718 | return ''; |
719 | 719 | } |
720 | 720 |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | /** |
66 | 66 | * Defines the field type slugs used for this field type. |
67 | 67 | */ |
68 | - public $aFieldTypeSlugs = array( 'size', ); |
|
68 | + public $aFieldTypeSlugs = array( 'size',); |
|
69 | 69 | |
70 | 70 | /** |
71 | 71 | * Defines the default key-values of this field type. |
@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | */ |
75 | 75 | protected $aDefaultKeys = array( |
76 | 76 | 'is_multiple' => false, // indicates whether the select tag alloes multiple selections. |
77 | - 'units' => null, // do not define units here since this will be merged with the user defined field array. |
|
77 | + 'units' => null, // do not define units here since this will be merged with the user defined field array. |
|
78 | 78 | 'attributes' => array( |
79 | 79 | 'size' => array( |
80 | 80 | 'min' => null, |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | */ |
103 | 103 | protected $aDefaultUnits = array( |
104 | 104 | 'px' => 'px', // pixel |
105 | - '%' => '%', // percentage |
|
105 | + '%' => '%', // percentage |
|
106 | 106 | 'em' => 'em', // font size |
107 | 107 | 'ex' => 'ex', // font height |
108 | 108 | 'in' => 'in', // inch |
@@ -162,8 +162,8 @@ discard block |
||
162 | 162 | ); |
163 | 163 | |
164 | 164 | $_aOutput = array(); |
165 | - foreach( ( array ) $aField[ 'label' ] as $_isKey => $_sLabel ) { |
|
166 | - $_aOutput[] = $this->_getFieldOutputByLabel( |
|
165 | + foreach ( ( array ) $aField[ 'label' ] as $_isKey => $_sLabel ) { |
|
166 | + $_aOutput[ ] = $this->_getFieldOutputByLabel( |
|
167 | 167 | $_isKey, |
168 | 168 | $_sLabel, |
169 | 169 | $aField |
@@ -186,8 +186,8 @@ discard block |
||
186 | 186 | |
187 | 187 | $_aBaseAttributes = $_bMultiLabels |
188 | 188 | ? array( |
189 | - 'name' => $aField[ 'attributes' ][ 'name' ] . "[{$isKey}]", |
|
190 | - 'id' => $aField[ 'attributes' ][ 'id' ] . "_{$isKey}", |
|
189 | + 'name' => $aField[ 'attributes' ][ 'name' ]."[{$isKey}]", |
|
190 | + 'id' => $aField[ 'attributes' ][ 'id' ]."_{$isKey}", |
|
191 | 191 | 'value' => $aField[ 'value' ], |
192 | 192 | ) |
193 | 193 | + $aField[ 'attributes' ] |
@@ -199,9 +199,9 @@ discard block |
||
199 | 199 | |
200 | 200 | $_aOutput = array( |
201 | 201 | $this->getElementByLabel( $aField[ 'before_label' ], $isKey, $aField[ 'label' ] ), |
202 | - "<div " . $this->getLabelContainerAttributes( $aField, 'admin-page-framework-input-label-container admin-page-framework-select-label' ) . ">", |
|
203 | - $this->_getNumberInputPart( $aField, $_aBaseAttributes, $isKey, is_array( $aField[ 'label' ] ) ), // The size (number) part |
|
204 | - $this->_getUnitSelectInput( $aField, $_aBaseAttributes, $isKey, is_array( $aField[ 'label' ] ) ), // The unit (select) part |
|
202 | + "<div ".$this->getLabelContainerAttributes( $aField, 'admin-page-framework-input-label-container admin-page-framework-select-label' ).">", |
|
203 | + $this->_getNumberInputPart( $aField, $_aBaseAttributes, $isKey, is_array( $aField[ 'label' ] ) ), // The size (number) part |
|
204 | + $this->_getUnitSelectInput( $aField, $_aBaseAttributes, $isKey, is_array( $aField[ 'label' ] ) ), // The unit (select) part |
|
205 | 205 | "</div>", |
206 | 206 | $this->getElementByLabel( $aField[ 'after_label' ], $isKey, $aField[ 'label' ] ) |
207 | 207 | ); |
@@ -218,7 +218,7 @@ discard block |
||
218 | 218 | private function _getNumberInputPart( array $aField, array $aBaseAttributes, $isKey, $bMultiLabels ) { |
219 | 219 | |
220 | 220 | // Size and Size Label |
221 | - $_aSizeAttributes = $this->_getSizeAttributes( |
|
221 | + $_aSizeAttributes = $this->_getSizeAttributes( |
|
222 | 222 | $aField, |
223 | 223 | $aBaseAttributes, |
224 | 224 | $bMultiLabels |
@@ -226,32 +226,32 @@ discard block |
||
226 | 226 | : '' |
227 | 227 | ); |
228 | 228 | |
229 | - $_aSizeLabelAttributes = array( |
|
229 | + $_aSizeLabelAttributes = array( |
|
230 | 230 | 'for' => $_aSizeAttributes[ 'id' ], |
231 | 231 | 'class' => $_aSizeAttributes[ 'disabled' ] |
232 | 232 | ? 'disabled' |
233 | 233 | : null, |
234 | 234 | ); |
235 | 235 | |
236 | - $_sLabel = $this->getElementByLabel( |
|
236 | + $_sLabel = $this->getElementByLabel( |
|
237 | 237 | $aField[ 'label' ], |
238 | 238 | $isKey, |
239 | 239 | $aField[ 'label' ] |
240 | 240 | ); |
241 | - return "<label " . $this->getAttributes( $_aSizeLabelAttributes ) . ">" |
|
241 | + return "<label ".$this->getAttributes( $_aSizeLabelAttributes ).">" |
|
242 | 242 | . $this->getElement( |
243 | 243 | $aField, |
244 | 244 | $bMultiLabels |
245 | 245 | ? array( 'before_label', $isKey, 'size' ) |
246 | 246 | : array( 'before_label', 'size' ) |
247 | 247 | ) |
248 | - . ( $aField[ 'label' ] && ! $aField[ 'repeatable' ] |
|
249 | - ? "<span " . $this->getLabelContainerAttributes( $aField, 'admin-page-framework-input-label-string' ) . ">" |
|
248 | + . ( $aField[ 'label' ] && !$aField[ 'repeatable' ] |
|
249 | + ? "<span ".$this->getLabelContainerAttributes( $aField, 'admin-page-framework-input-label-string' ).">" |
|
250 | 250 | . $_sLabel |
251 | 251 | . "</span>" |
252 | 252 | : "" |
253 | 253 | ) |
254 | - . "<input " . $this->getAttributes( $_aSizeAttributes ) . " />" |
|
254 | + . "<input ".$this->getAttributes( $_aSizeAttributes )." />" |
|
255 | 255 | . $this->getElement( |
256 | 256 | $aField, |
257 | 257 | $bMultiLabels |
@@ -294,7 +294,7 @@ discard block |
||
294 | 294 | ) |
295 | 295 | : $aField[ 'units' ]; |
296 | 296 | |
297 | - return "<label " . $this->getAttributes( |
|
297 | + return "<label ".$this->getAttributes( |
|
298 | 298 | array( |
299 | 299 | 'for' => $_aUnitAttributes[ 'id' ], |
300 | 300 | 'class' => $_aUnitAttributes[ 'disabled' ] |
@@ -326,9 +326,9 @@ discard block |
||
326 | 326 | * @return array an unit attribute array |
327 | 327 | * @internal |
328 | 328 | */ |
329 | - private function _getUnitAttributes( array $aField, array $aBaseAttributes, $isLabelKey='' ) { |
|
329 | + private function _getUnitAttributes( array $aField, array $aBaseAttributes, $isLabelKey = '' ) { |
|
330 | 330 | |
331 | - $_bIsMultiple = $aField[ 'is_multiple' ] |
|
331 | + $_bIsMultiple = $aField[ 'is_multiple' ] |
|
332 | 332 | ? true |
333 | 333 | : $this->getElement( |
334 | 334 | $aField, |
@@ -340,13 +340,13 @@ discard block |
||
340 | 340 | |
341 | 341 | $_aSelectAttributes = array( |
342 | 342 | 'type' => 'select', |
343 | - 'id' => $aField[ 'input_id' ] . ( '' === $isLabelKey ? '' : '_' . $isLabelKey ) . '_' . 'unit', |
|
343 | + 'id' => $aField[ 'input_id' ].( '' === $isLabelKey ? '' : '_'.$isLabelKey ).'_'.'unit', |
|
344 | 344 | 'multiple' => $_bIsMultiple |
345 | 345 | ? 'multiple' |
346 | 346 | : null, |
347 | 347 | 'name' => $_bIsMultiple |
348 | - ? "{$aField['_input_name']}" . ( '' === $isLabelKey ? '' : '[' . $isLabelKey . ']' ) . "[unit][]" |
|
349 | - : "{$aField['_input_name']}" . ( '' === $isLabelKey ? '' : '[' . $isLabelKey . ']' ) . "[unit]", |
|
348 | + ? "{$aField[ '_input_name' ]}".( '' === $isLabelKey ? '' : '['.$isLabelKey.']' )."[unit][]" |
|
349 | + : "{$aField[ '_input_name' ]}".( '' === $isLabelKey ? '' : '['.$isLabelKey.']' )."[unit]", |
|
350 | 350 | 'value' => $this->getElement( |
351 | 351 | $aField, |
352 | 352 | array( 'value', 'unit' ), |
@@ -358,7 +358,7 @@ discard block |
||
358 | 358 | '' === $isLabelKey |
359 | 359 | ? array( 'attributes', 'unit' ) |
360 | 360 | : array( 'attributes', $isLabelKey, 'unit' ), |
361 | - $this->aDefaultKeys['attributes']['unit'] |
|
361 | + $this->aDefaultKeys[ 'attributes' ][ 'unit' ] |
|
362 | 362 | ) |
363 | 363 | + $aBaseAttributes; |
364 | 364 | return $_aSelectAttributes; |
@@ -372,15 +372,15 @@ discard block |
||
372 | 372 | * @return array an size attribute array |
373 | 373 | * @internal |
374 | 374 | */ |
375 | - private function _getSizeAttributes( array $aField, array $aBaseAttributes, $sLabelKey='' ) { |
|
375 | + private function _getSizeAttributes( array $aField, array $aBaseAttributes, $sLabelKey = '' ) { |
|
376 | 376 | |
377 | 377 | return array( |
378 | 378 | 'type' => 'number', |
379 | - 'id' => $aField['input_id'] . '_' . ( '' !== $sLabelKey ? $sLabelKey . '_' : '' ) . 'size', |
|
380 | - 'name' => $aField[ '_input_name' ] . ( '' !== $sLabelKey ? "[{$sLabelKey}]" : '' ) . '[size]', |
|
379 | + 'id' => $aField[ 'input_id' ].'_'.( '' !== $sLabelKey ? $sLabelKey.'_' : '' ).'size', |
|
380 | + 'name' => $aField[ '_input_name' ].( '' !== $sLabelKey ? "[{$sLabelKey}]" : '' ).'[size]', |
|
381 | 381 | 'value' => $this->getElement( |
382 | - $aField, // subject |
|
383 | - array( 'value', 'size' ), // dimensional keys |
|
382 | + $aField, // subject |
|
383 | + array( 'value', 'size' ), // dimensional keys |
|
384 | 384 | '' // default |
385 | 385 | ), |
386 | 386 | ) |
@@ -211,6 +211,7 @@ discard block |
||
211 | 211 | * Returns the HTML output of the number input part. |
212 | 212 | * |
213 | 213 | * @since 3.5.3 |
214 | + * @param boolean $bMultiLabels |
|
214 | 215 | * @return string The number input output. |
215 | 216 | * @internal |
216 | 217 | */ |
@@ -265,6 +266,7 @@ discard block |
||
265 | 266 | * Returns the HTML output of the unit select input part. |
266 | 267 | * |
267 | 268 | * @since 3.5.3 |
269 | + * @param boolean $bMultiLabels |
|
268 | 270 | * @return string The unit select input output. |
269 | 271 | * @internal |
270 | 272 | */ |
@@ -67,7 +67,7 @@ |
||
67 | 67 | . ( $aField[ 'label' ] |
68 | 68 | ? "<span " . $this->getLabelContainerAttributes( $aField, 'admin-page-framework-input-label-string' ) . ">" |
69 | 69 | . $aField[ 'label' ] |
70 | - . "</span>" |
|
70 | + . "</span>" |
|
71 | 71 | : "" |
72 | 72 | ) |
73 | 73 | . "<input " . $this->getAttributes( $aField[ 'attributes' ] ) . " />" |
@@ -60,21 +60,21 @@ |
||
60 | 60 | protected function getField( $aField ) { |
61 | 61 | |
62 | 62 | return |
63 | - $aField['before_label'] |
|
63 | + $aField[ 'before_label' ] |
|
64 | 64 | . "<div class='admin-page-framework-input-label-container'>" |
65 | 65 | . "<label for='{$aField[ 'input_id' ]}'>" |
66 | 66 | . $aField[ 'before_input' ] |
67 | 67 | . ( $aField[ 'label' ] |
68 | - ? "<span " . $this->getLabelContainerAttributes( $aField, 'admin-page-framework-input-label-string' ) . ">" |
|
68 | + ? "<span ".$this->getLabelContainerAttributes( $aField, 'admin-page-framework-input-label-string' ).">" |
|
69 | 69 | . $aField[ 'label' ] |
70 | 70 | . "</span>" |
71 | 71 | : "" |
72 | 72 | ) |
73 | - . "<input " . $this->getAttributes( $aField[ 'attributes' ] ) . " />" |
|
74 | - . $aField['after_input'] |
|
73 | + . "<input ".$this->getAttributes( $aField[ 'attributes' ] )." />" |
|
74 | + . $aField[ 'after_input' ] |
|
75 | 75 | . "</label>" |
76 | 76 | . "</div>" |
77 | - . $aField['after_label']; |
|
77 | + . $aField[ 'after_label' ]; |
|
78 | 78 | |
79 | 79 | } |
80 | 80 |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | * </code> |
74 | 74 | * @var array |
75 | 75 | */ |
76 | - public $aFieldTypeSlugs = array( 'system', ); |
|
76 | + public $aFieldTypeSlugs = array( 'system',); |
|
77 | 77 | |
78 | 78 | /** |
79 | 79 | * Defines the default key-values of this field type. |
@@ -93,8 +93,8 @@ discard block |
||
93 | 93 | * @remark `$_aDefaultKeys` holds shared default key-values defined in the base class. |
94 | 94 | */ |
95 | 95 | protected $aDefaultKeys = array( |
96 | - 'data' => array(), // [3.2.0+] Stores the data to be displayed |
|
97 | - 'print_type' => 1, // [3.4.6+] 1: readable representation of array. 2: print_r() |
|
96 | + 'data' => array(), // [3.2.0+] Stores the data to be displayed |
|
97 | + 'print_type' => 1, // [3.4.6+] 1: readable representation of array. 2: print_r() |
|
98 | 98 | 'attributes' => array( |
99 | 99 | 'rows' => 60, |
100 | 100 | 'autofocus' => null, |
@@ -233,13 +233,13 @@ discard block |
||
233 | 233 | . "<div class='admin-page-framework-input-label-container'>" |
234 | 234 | . "<label for='{$aField[ 'input_id' ]}'>" |
235 | 235 | . $aField[ 'before_input' ] |
236 | - . ( $aField[ 'label' ] && ! $aField[ 'repeatable' ] |
|
237 | - ? "<span " . $this->getLabelContainerAttributes( $aField, 'admin-page-framework-input-label-string' ) . ">" |
|
236 | + . ( $aField[ 'label' ] && !$aField[ 'repeatable' ] |
|
237 | + ? "<span ".$this->getLabelContainerAttributes( $aField, 'admin-page-framework-input-label-string' ).">" |
|
238 | 238 | . $aField[ 'label' ] |
239 | 239 | . "</span>" |
240 | 240 | : "" |
241 | 241 | ) |
242 | - . "<textarea " . $this->getAttributes( $_aInputAttributes ) . " >" |
|
242 | + . "<textarea ".$this->getAttributes( $_aInputAttributes )." >" |
|
243 | 243 | . esc_textarea( $this->_getSystemInfomation( $aField[ 'value' ], $aField[ 'data' ], $aField[ 'print_type' ] ) ) |
244 | 244 | . "</textarea>" |
245 | 245 | . $aField[ 'after_input' ] |
@@ -254,15 +254,15 @@ discard block |
||
254 | 254 | * @return string The human readable system information. |
255 | 255 | * @internal |
256 | 256 | */ |
257 | - private function _getSystemInfomation( $asValue=null, $asCustomData=null, $iPrintType=1 ) { |
|
257 | + private function _getSystemInfomation( $asValue = null, $asCustomData = null, $iPrintType = 1 ) { |
|
258 | 258 | |
259 | 259 | if ( isset( $asValue ) ) { |
260 | 260 | return $asValue; |
261 | 261 | } |
262 | 262 | |
263 | - $_aOutput = array(); |
|
264 | - foreach( $this->_getFormattedSystemInformation( $asCustomData ) as $_sSection => $_aInfo ) { |
|
265 | - $_aOutput[] = $this->_getSystemInfoBySection( $_sSection, $_aInfo, $iPrintType ); |
|
263 | + $_aOutput = array(); |
|
264 | + foreach ( $this->_getFormattedSystemInformation( $asCustomData ) as $_sSection => $_aInfo ) { |
|
265 | + $_aOutput[ ] = $this->_getSystemInfoBySection( $_sSection, $_aInfo, $iPrintType ); |
|
266 | 266 | } |
267 | 267 | return implode( PHP_EOL, $_aOutput ); |
268 | 268 | |
@@ -277,18 +277,18 @@ discard block |
||
277 | 277 | |
278 | 278 | $_aData = $this->getAsArray( $asCustomData ); |
279 | 279 | $_aData = $_aData + array( |
280 | - 'Admin Page Framework' => isset( $_aData['Admin Page Framework'] ) |
|
280 | + 'Admin Page Framework' => isset( $_aData[ 'Admin Page Framework' ] ) |
|
281 | 281 | ? null |
282 | 282 | : AdminPageFramework_Registry::getInfo(), |
283 | - 'WordPress' => $this->_getSiteInfoWithCache( ! isset( $_aData['WordPress'] ) ), |
|
284 | - 'PHP' => $this->_getPHPInfo( ! isset( $_aData['PHP'] ) ), |
|
285 | - 'PHP Error Log' => $this->_getErrorLogByType( 'php', ! isset( $_aData['PHP Error Log'] ) ), |
|
286 | - 'MySQL' => isset( $_aData['MySQL'] ) |
|
283 | + 'WordPress' => $this->_getSiteInfoWithCache( !isset( $_aData[ 'WordPress' ] ) ), |
|
284 | + 'PHP' => $this->_getPHPInfo( !isset( $_aData[ 'PHP' ] ) ), |
|
285 | + 'PHP Error Log' => $this->_getErrorLogByType( 'php', !isset( $_aData[ 'PHP Error Log' ] ) ), |
|
286 | + 'MySQL' => isset( $_aData[ 'MySQL' ] ) |
|
287 | 287 | ? null |
288 | - : $this->getMySQLInfo(), // defined in the utility class. |
|
289 | - 'MySQL Error Log' => $this->_getErrorLogByType( 'mysql', ! isset( $_aData['MySQL Error Log'] ) ), |
|
290 | - 'Server' => $this->_getWebServerInfo( ! isset( $_aData['Server'] ) ), |
|
291 | - 'Browser' => $this->_getClientInfo( ! isset( $_aData['Browser'] ) ), |
|
288 | + : $this->getMySQLInfo(), // defined in the utility class. |
|
289 | + 'MySQL Error Log' => $this->_getErrorLogByType( 'mysql', !isset( $_aData[ 'MySQL Error Log' ] ) ), |
|
290 | + 'Server' => $this->_getWebServerInfo( !isset( $_aData[ 'Server' ] ) ), |
|
291 | + 'Browser' => $this->_getClientInfo( !isset( $_aData[ 'Browser' ] ) ), |
|
292 | 292 | ); |
293 | 293 | |
294 | 294 | // Dropping empty elements allows the user to remove a section by setting an empty section. |
@@ -305,10 +305,10 @@ discard block |
||
305 | 305 | switch ( $iPrintType ) { |
306 | 306 | default: |
307 | 307 | case 1: // use the framework readable representation of arrays. |
308 | - return $this->getReadableArrayContents( $sSectionName, $aData, 32 ) . PHP_EOL; |
|
308 | + return $this->getReadableArrayContents( $sSectionName, $aData, 32 ).PHP_EOL; |
|
309 | 309 | case 2: // use print_r() |
310 | - return "[{$sSectionName}]" . PHP_EOL |
|
311 | - . print_r( $aData, true ) . PHP_EOL; |
|
310 | + return "[{$sSectionName}]".PHP_EOL |
|
311 | + . print_r( $aData, true ).PHP_EOL; |
|
312 | 312 | } |
313 | 313 | } |
314 | 314 | /** |
@@ -318,17 +318,17 @@ discard block |
||
318 | 318 | * @since 3.4.6 |
319 | 319 | * @since 3.5.3 Added the $bGenerateInfo paramter. This is to reduce conditional statment in the caller method. |
320 | 320 | */ |
321 | - private function _getClientInfo( $bGenerateInfo=true ) { |
|
321 | + private function _getClientInfo( $bGenerateInfo = true ) { |
|
322 | 322 | |
323 | - if ( ! $bGenerateInfo ) { |
|
323 | + if ( !$bGenerateInfo ) { |
|
324 | 324 | return ''; |
325 | 325 | } |
326 | 326 | |
327 | 327 | // Check the browscap value in the ini file first to prevent warnings from being populated |
328 | 328 | $_aBrowser = @ini_get( 'browscap' ) |
329 | - ? get_browser( $_SERVER['HTTP_USER_AGENT'], true ) |
|
329 | + ? get_browser( $_SERVER[ 'HTTP_USER_AGENT' ], true ) |
|
330 | 330 | : array(); |
331 | - unset( $_aBrowser['browser_name_regex'] ); // this element causes output to be blank |
|
331 | + unset( $_aBrowser[ 'browser_name_regex' ] ); // this element causes output to be blank |
|
332 | 332 | return empty( $_aBrowser ) |
333 | 333 | ? __( 'No browser information found.', 'admin-page-framework' ) |
334 | 334 | : $_aBrowser; |
@@ -344,9 +344,9 @@ discard block |
||
344 | 344 | * @param string $sType The error log type. Either 'php' or 'mysql' is accepted. |
345 | 345 | * @param boolean $bGenerateInfo Whether to generate a log. This is for the caller method to reduce a conditinal statement. |
346 | 346 | */ |
347 | - private function _getErrorLogByType( $sType, $bGenerateInfo=true ) { |
|
347 | + private function _getErrorLogByType( $sType, $bGenerateInfo = true ) { |
|
348 | 348 | |
349 | - if ( ! $bGenerateInfo ) { |
|
349 | + if ( !$bGenerateInfo ) { |
|
350 | 350 | return ''; |
351 | 351 | } |
352 | 352 | switch ( $sType ) { |
@@ -378,9 +378,9 @@ discard block |
||
378 | 378 | * @since 3.5.3 Added the $bGenerateInfo paramter. This is to reduce conditional statment in the caller method. |
379 | 379 | * @return array The generated site information array. |
380 | 380 | */ |
381 | - private function _getSiteInfoWithCache( $bGenerateInfo=true ) { |
|
381 | + private function _getSiteInfoWithCache( $bGenerateInfo = true ) { |
|
382 | 382 | |
383 | - if ( ! $bGenerateInfo || isset( self::$_aSiteInfo ) ) { |
|
383 | + if ( !$bGenerateInfo || isset( self::$_aSiteInfo ) ) { |
|
384 | 384 | return self::$_aSiteInfo; |
385 | 385 | } |
386 | 386 | self::$_aSiteInfo = self::_getSiteInfo(); |
@@ -414,8 +414,8 @@ discard block |
||
414 | 414 | 'wp_remote_get()' => $this->_getWPRemoteGetStatus(), |
415 | 415 | __( 'Multibite String Extension', 'admin-page-framework' ) => $this->getAOrB( function_exists( 'mb_detect_encoding' ), $this->oMsg->get( 'enabled' ), $this->oMsg->get( 'disabled' ) ), |
416 | 416 | __( 'WP_CONTENT_DIR Writeable', 'admin-page-framework' ) => $this->getAOrB( is_writable( WP_CONTENT_DIR ), $this->oMsg->get( 'yes' ), $this->oMsg->get( 'no' ) ), |
417 | - __( 'Active Plugins', 'admin-page-framework' ) => PHP_EOL . $this->_getActivePlugins(), |
|
418 | - __( 'Network Active Plugins', 'admin-page-framework' ) => PHP_EOL . $this->_getNetworkActivePlugins(), |
|
417 | + __( 'Active Plugins', 'admin-page-framework' ) => PHP_EOL.$this->_getActivePlugins(), |
|
418 | + __( 'Network Active Plugins', 'admin-page-framework' ) => PHP_EOL.$this->_getNetworkActivePlugins(), |
|
419 | 419 | __( 'Constants', 'admin-page-framework' ) => $this->_getDefinedConstants( 'user' ), |
420 | 420 | ); |
421 | 421 | } |
@@ -425,9 +425,9 @@ discard block |
||
425 | 425 | * @return string|array |
426 | 426 | * @internal |
427 | 427 | */ |
428 | - private function _getDefinedConstants( $asCategories=null, $asRemovingCategories=null ) { |
|
428 | + private function _getDefinedConstants( $asCategories = null, $asRemovingCategories = null ) { |
|
429 | 429 | $_asConstants = $this->getDefinedConstants( $asCategories, $asRemovingCategories ); |
430 | - if ( ! is_array( $_asConstants ) ) { |
|
430 | + if ( !is_array( $_asConstants ) ) { |
|
431 | 431 | return $_asConstants; |
432 | 432 | } |
433 | 433 | if ( isset( $_asConstants[ 'user' ] ) ) { |
@@ -463,13 +463,13 @@ discard block |
||
463 | 463 | private function _getActiveThemeName() { |
464 | 464 | |
465 | 465 | // If the WordPress version is less than 3.4, |
466 | - if ( version_compare( $GLOBALS['wp_version'], '3.4', '<' ) ) { |
|
467 | - $_aThemeData = get_theme_data( get_stylesheet_directory() . '/style.css' ); |
|
468 | - return $_aThemeData['Name'] . ' ' . $_aThemeData['Version']; |
|
466 | + if ( version_compare( $GLOBALS[ 'wp_version' ], '3.4', '<' ) ) { |
|
467 | + $_aThemeData = get_theme_data( get_stylesheet_directory().'/style.css' ); |
|
468 | + return $_aThemeData[ 'Name' ].' '.$_aThemeData[ 'Version' ]; |
|
469 | 469 | } |
470 | 470 | |
471 | 471 | $_oThemeData = wp_get_theme(); |
472 | - return $_oThemeData->Name . ' ' . $_oThemeData->Version; |
|
472 | + return $_oThemeData->Name.' '.$_oThemeData->Version; |
|
473 | 473 | |
474 | 474 | } |
475 | 475 | /** |
@@ -483,10 +483,10 @@ discard block |
||
483 | 483 | $_aPluginList = array(); |
484 | 484 | $_aActivePlugins = get_option( 'active_plugins', array() ); |
485 | 485 | foreach ( get_plugins() as $_sPluginPath => $_aPlugin ) { |
486 | - if ( ! in_array( $_sPluginPath, $_aActivePlugins ) ) { |
|
486 | + if ( !in_array( $_sPluginPath, $_aActivePlugins ) ) { |
|
487 | 487 | continue; |
488 | 488 | } |
489 | - $_aPluginList[] = ' ' . $_aPlugin['Name'] . ': ' . $_aPlugin['Version']; |
|
489 | + $_aPluginList[ ] = ' '.$_aPlugin[ 'Name' ].': '.$_aPlugin[ 'Version' ]; |
|
490 | 490 | } |
491 | 491 | return implode( PHP_EOL, $_aPluginList ); |
492 | 492 | |
@@ -498,17 +498,17 @@ discard block |
||
498 | 498 | */ |
499 | 499 | private function _getNetworkActivePlugins() { |
500 | 500 | |
501 | - if ( ! is_multisite() ) { |
|
501 | + if ( !is_multisite() ) { |
|
502 | 502 | return ''; |
503 | 503 | } |
504 | 504 | $_aPluginList = array(); |
505 | 505 | $_aActivePlugins = get_site_option( 'active_sitewide_plugins', array() ); |
506 | 506 | foreach ( wp_get_active_network_plugins() as $_sPluginPath ) { |
507 | - if ( ! array_key_exists( plugin_basename( $_sPluginPath ), $_aActivePlugins ) ) { |
|
507 | + if ( !array_key_exists( plugin_basename( $_sPluginPath ), $_aActivePlugins ) ) { |
|
508 | 508 | continue; |
509 | 509 | } |
510 | 510 | $_aPlugin = get_plugin_data( $_sPluginPath ); |
511 | - $_aPluginList[] = ' ' . $_aPlugin['Name'] . ' :' . $_aPlugin['Version']; |
|
511 | + $_aPluginList[ ] = ' '.$_aPlugin[ 'Name' ].' :'.$_aPlugin[ 'Version' ]; |
|
512 | 512 | } |
513 | 513 | return implode( PHP_EOL, $_aPluginList ); |
514 | 514 | |
@@ -526,7 +526,7 @@ discard block |
||
526 | 526 | $_vResponse = false === $_vResponse |
527 | 527 | ? wp_remote_post( |
528 | 528 | // 'https://www.paypal.com/cgi-bin/webscr', |
529 | - add_query_arg( $_GET, admin_url( $GLOBALS['pagenow'] ) ), |
|
529 | + add_query_arg( $_GET, admin_url( $GLOBALS[ 'pagenow' ] ) ), |
|
530 | 530 | array( |
531 | 531 | 'sslverify' => false, |
532 | 532 | 'timeout' => 60, |
@@ -549,7 +549,7 @@ discard block |
||
549 | 549 | $_vResponse = $this->getTransient( 'apf_rg_check' ); |
550 | 550 | $_vResponse = false === $_vResponse |
551 | 551 | ? wp_remote_get( |
552 | - add_query_arg( $_GET + array( 'apf_remote_request_test' => '_testing' ), admin_url( $GLOBALS['pagenow'] ) ), |
|
552 | + add_query_arg( $_GET + array( 'apf_remote_request_test' => '_testing' ), admin_url( $GLOBALS[ 'pagenow' ] ) ), |
|
553 | 553 | array( |
554 | 554 | 'sslverify' => false, |
555 | 555 | 'timeout' => 60, |
@@ -574,7 +574,7 @@ discard block |
||
574 | 574 | if ( is_wp_error( $mResponse ) ) { |
575 | 575 | return true; |
576 | 576 | } |
577 | - if ( $mResponse[ 'response'][ 'code' ] < 200 ) { |
|
577 | + if ( $mResponse[ 'response' ][ 'code' ] < 200 ) { |
|
578 | 578 | return true; |
579 | 579 | } |
580 | 580 | if ( $mResponse[ 'response' ][ 'code' ] >= 300 ) { |
@@ -597,13 +597,13 @@ discard block |
||
597 | 597 | * @since 3.4.6 |
598 | 598 | * @since 3.5.3 Added the $bGenerateInfo parameter. This is to reduce conditional statement in the caller method. |
599 | 599 | */ |
600 | - private function _getPHPInfo( $bGenerateInfo=true ) { |
|
600 | + private function _getPHPInfo( $bGenerateInfo = true ) { |
|
601 | 601 | |
602 | - if ( ! $bGenerateInfo || isset( self::$_aPHPInfo ) ) { |
|
602 | + if ( !$bGenerateInfo || isset( self::$_aPHPInfo ) ) { |
|
603 | 603 | return self::$_aPHPInfo; |
604 | 604 | } |
605 | 605 | |
606 | - $_oErrorReporting = new AdminPageFramework_ErrorReporting; |
|
606 | + $_oErrorReporting = new AdminPageFramework_ErrorReporting; |
|
607 | 607 | self::$_aPHPInfo = array( |
608 | 608 | __( 'Version', 'admin-page-framework' ) => phpversion(), |
609 | 609 | __( 'Safe Mode', 'admin-page-framework' ) => $this->getAOrB( @ini_get( 'safe_mode' ), $this->oMsg->get( 'yes' ), $this->oMsg->get( 'no' ) ), |
@@ -614,16 +614,16 @@ discard block |
||
614 | 614 | __( 'Max Execution Time', 'admin-page-framework' ) => @ini_get( 'max_execution_time' ), |
615 | 615 | __( 'Max Input Vars', 'admin-page-framework' ) => @ini_get( 'max_input_vars' ), |
616 | 616 | __( 'Argument Separator', 'admin-page-framework' ) => @ini_get( 'arg_separator.output' ), |
617 | - __( 'Allow URL File Open', 'admin-page-framework' ) => $this->getAOrB( @ini_get( 'allow_url_fopen' ), $this->oMsg->get( 'yes' ), $this->oMsg->get( 'no' ) ), |
|
618 | - __( 'Display Errors', 'admin-page-framework' ) => $this->getAOrB( @ini_get( 'display_errors' ), $this->oMsg->get( 'on' ), $this->oMsg->get( 'off' ) ), |
|
619 | - __( 'Log Errors', 'admin-page-framework' ) => $this->getAOrB( @ini_get( 'log_errors' ), $this->oMsg->get( 'on' ), $this->oMsg->get( 'off' ) ), |
|
617 | + __( 'Allow URL File Open', 'admin-page-framework' ) => $this->getAOrB( @ini_get( 'allow_url_fopen' ), $this->oMsg->get( 'yes' ), $this->oMsg->get( 'no' ) ), |
|
618 | + __( 'Display Errors', 'admin-page-framework' ) => $this->getAOrB( @ini_get( 'display_errors' ), $this->oMsg->get( 'on' ), $this->oMsg->get( 'off' ) ), |
|
619 | + __( 'Log Errors', 'admin-page-framework' ) => $this->getAOrB( @ini_get( 'log_errors' ), $this->oMsg->get( 'on' ), $this->oMsg->get( 'off' ) ), |
|
620 | 620 | __( 'Error log location', 'admin-page-framework' ) => @ini_get( 'error_log' ), |
621 | 621 | __( 'Error Reporting Level', 'admin-page-framework' ) => $_oErrorReporting->getErrorLevel(), |
622 | - __( 'FSOCKOPEN', 'admin-page-framework' ) => $this->getAOrB( function_exists( 'fsockopen' ), $this->oMsg->get( 'supported' ), $this->oMsg->get( 'not_supported' ) ), |
|
623 | - __( 'cURL', 'admin-page-framework' ) => $this->getAOrB( function_exists( 'curl_init' ), $this->oMsg->get( 'supported' ), $this->oMsg->get( 'not_supported' ) ), |
|
624 | - __( 'SOAP', 'admin-page-framework' ) => $this->getAOrB( class_exists( 'SoapClient' ), $this->oMsg->get( 'supported' ), $this->oMsg->get( 'not_supported' ) ), |
|
625 | - __( 'SUHOSIN', 'admin-page-framework' ) => $this->getAOrB( extension_loaded( 'suhosin' ), $this->oMsg->get( 'supported' ), $this->oMsg->get( 'not_supported' ) ), |
|
626 | - 'ini_set()' => $this->getAOrB( function_exists( 'ini_set' ), $this->oMsg->get( 'supported' ), $this->oMsg->get( 'not_supported' ) ), |
|
622 | + __( 'FSOCKOPEN', 'admin-page-framework' ) => $this->getAOrB( function_exists( 'fsockopen' ), $this->oMsg->get( 'supported' ), $this->oMsg->get( 'not_supported' ) ), |
|
623 | + __( 'cURL', 'admin-page-framework' ) => $this->getAOrB( function_exists( 'curl_init' ), $this->oMsg->get( 'supported' ), $this->oMsg->get( 'not_supported' ) ), |
|
624 | + __( 'SOAP', 'admin-page-framework' ) => $this->getAOrB( class_exists( 'SoapClient' ), $this->oMsg->get( 'supported' ), $this->oMsg->get( 'not_supported' ) ), |
|
625 | + __( 'SUHOSIN', 'admin-page-framework' ) => $this->getAOrB( extension_loaded( 'suhosin' ), $this->oMsg->get( 'supported' ), $this->oMsg->get( 'not_supported' ) ), |
|
626 | + 'ini_set()' => $this->getAOrB( function_exists( 'ini_set' ), $this->oMsg->get( 'supported' ), $this->oMsg->get( 'not_supported' ) ), |
|
627 | 627 | ) |
628 | 628 | + $this->getPHPInfo() |
629 | 629 | + array( |
@@ -642,11 +642,11 @@ discard block |
||
642 | 642 | * @since 3.5.3 Added the $bGenerateInfo paramter. This is to reduce conditional statment in the caller method. |
643 | 643 | * @return array|string |
644 | 644 | */ |
645 | - private function _getWebServerInfo( $bGenerateInfo=true ) { |
|
645 | + private function _getWebServerInfo( $bGenerateInfo = true ) { |
|
646 | 646 | |
647 | 647 | return $bGenerateInfo |
648 | 648 | ? array( |
649 | - __( 'Web Server', 'admin-page-framework' ) => $_SERVER['SERVER_SOFTWARE'], |
|
649 | + __( 'Web Server', 'admin-page-framework' ) => $_SERVER[ 'SERVER_SOFTWARE' ], |
|
650 | 650 | 'SSL' => $this->getAOrB( is_ssl(), $this->oMsg->get( 'yes' ), $this->oMsg->get( 'no' ) ), |
651 | 651 | __( 'Session', 'admin-page-framework' ) => $this->getAOrB( isset( $_SESSION ), $this->oMsg->get( 'enabled' ), $this->oMsg->get( 'disabled' ) ), |
652 | 652 | __( 'Session Name', 'admin-page-framework' ) => esc_html( @ini_get( 'session.name' ) ), |
@@ -297,6 +297,7 @@ discard block |
||
297 | 297 | /** |
298 | 298 | * Returns the system information by section. |
299 | 299 | * @since 3.5.3 |
300 | + * @param integer $iPrintType |
|
300 | 301 | * @return string The system information by section. |
301 | 302 | * @internal |
302 | 303 | */ |
@@ -421,6 +422,8 @@ discard block |
||
421 | 422 | /** |
422 | 423 | * |
423 | 424 | * @since 3.5.12 |
425 | + * @param string $asCategories |
|
426 | + * @param string $asRemovingCategories |
|
424 | 427 | * @return string|array |
425 | 428 | * @internal |
426 | 429 | */ |
@@ -143,7 +143,7 @@ discard block |
||
143 | 143 | * @internal |
144 | 144 | * @return array |
145 | 145 | */ |
146 | - protected function getEnqueuingScripts() { |
|
146 | + protected function getEnqueuingScripts() { |
|
147 | 147 | return array(); |
148 | 148 | } |
149 | 149 | |
@@ -161,7 +161,7 @@ discard block |
||
161 | 161 | * @return array |
162 | 162 | * @internal |
163 | 163 | */ |
164 | - protected function getEnqueuingStyles() { |
|
164 | + protected function getEnqueuingStyles() { |
|
165 | 165 | return array(); |
166 | 166 | } |
167 | 167 | |
@@ -171,7 +171,7 @@ discard block |
||
171 | 171 | * @internal |
172 | 172 | * @return string |
173 | 173 | */ |
174 | - protected function getScripts() { |
|
174 | + protected function getScripts() { |
|
175 | 175 | return ''; |
176 | 176 | } |
177 | 177 | |
@@ -181,7 +181,7 @@ discard block |
||
181 | 181 | * @internal |
182 | 182 | * @return string |
183 | 183 | */ |
184 | - protected function getIEStyles() { |
|
184 | + protected function getIEStyles() { |
|
185 | 185 | return ''; |
186 | 186 | } |
187 | 187 | |
@@ -222,7 +222,7 @@ discard block |
||
222 | 222 | * @internal |
223 | 223 | * @return string |
224 | 224 | */ |
225 | - protected function getField( $aField ) { |
|
225 | + protected function getField( $aField ) { |
|
226 | 226 | |
227 | 227 | $_aInputAttributes = $aField[ 'attributes' ]; |
228 | 228 | $_aInputAttributes[ 'class' ] .= ' system'; |
@@ -554,8 +554,8 @@ discard block |
||
554 | 554 | protected function getField( $aField ) { |
555 | 555 | |
556 | 556 | $_aOutput = array(); |
557 | - foreach( ( array ) $aField[ 'label' ] as $_sKey => $_sLabel ) { |
|
558 | - $_aOutput[] = $this->_getFieldOutputByLabel( |
|
557 | + foreach ( ( array ) $aField[ 'label' ] as $_sKey => $_sLabel ) { |
|
558 | + $_aOutput[ ] = $this->_getFieldOutputByLabel( |
|
559 | 559 | $_sKey, |
560 | 560 | $_sLabel, |
561 | 561 | $aField |
@@ -563,7 +563,7 @@ discard block |
||
563 | 563 | } |
564 | 564 | |
565 | 565 | // the repeatable field buttons will be replaced with this element. |
566 | - $_aOutput[] = "<div class='repeatable-field-buttons'></div>"; |
|
566 | + $_aOutput[ ] = "<div class='repeatable-field-buttons'></div>"; |
|
567 | 567 | return implode( '', $_aOutput ); |
568 | 568 | |
569 | 569 | } |
@@ -584,27 +584,27 @@ discard block |
||
584 | 584 | $aField[ 'rich' ] = $this->getElementByLabel( $aField[ 'rich' ], $sKey, $aField[ 'label' ] ); |
585 | 585 | $aField[ 'attributes' ] = $_bIsArray |
586 | 586 | ? array( |
587 | - 'name' => $aField[ 'attributes' ][ 'name' ] . "[{$sKey}]", |
|
588 | - 'id' => $aField[ 'attributes' ][ 'id' ] . "_{$sKey}", |
|
587 | + 'name' => $aField[ 'attributes' ][ 'name' ]."[{$sKey}]", |
|
588 | + 'id' => $aField[ 'attributes' ][ 'id' ]."_{$sKey}", |
|
589 | 589 | 'value' => $aField[ 'value' ], |
590 | 590 | ) |
591 | 591 | + $aField[ 'attributes' ] |
592 | 592 | : $aField[ 'attributes' ]; |
593 | - $_aOutput = array( |
|
594 | - $this->getElementByLabel( $aField['before_label'], $sKey, $aField[ 'label' ] ), |
|
593 | + $_aOutput = array( |
|
594 | + $this->getElementByLabel( $aField[ 'before_label' ], $sKey, $aField[ 'label' ] ), |
|
595 | 595 | "<div class='admin-page-framework-input-label-container {$_sClassSelector}'>", |
596 | - "<label for='" . $aField[ 'attributes' ][ 'id' ] . "'>", |
|
597 | - $this->getElementByLabel( $aField['before_input'], $sKey, $aField[ 'label' ] ), |
|
596 | + "<label for='".$aField[ 'attributes' ][ 'id' ]."'>", |
|
597 | + $this->getElementByLabel( $aField[ 'before_input' ], $sKey, $aField[ 'label' ] ), |
|
598 | 598 | $_sLabel |
599 | - ? "<span " . $this->getLabelContainerAttributes( $aField, 'admin-page-framework-input-label-string' ) . ">" |
|
599 | + ? "<span ".$this->getLabelContainerAttributes( $aField, 'admin-page-framework-input-label-string' ).">" |
|
600 | 600 | . $_sLabel |
601 | 601 | . "</span>" |
602 | 602 | : '', |
603 | 603 | $this->_getEditor( $aField ), |
604 | - $this->getElementByLabel( $aField['after_input'], $sKey, $aField[ 'label' ] ), |
|
604 | + $this->getElementByLabel( $aField[ 'after_input' ], $sKey, $aField[ 'label' ] ), |
|
605 | 605 | "</label>", |
606 | 606 | "</div>", |
607 | - $this->getElementByLabel( $aField['after_label'], $sKey, $aField[ 'label' ] ), |
|
607 | + $this->getElementByLabel( $aField[ 'after_label' ], $sKey, $aField[ 'label' ] ), |
|
608 | 608 | ); |
609 | 609 | return implode( '', $_aOutput ); |
610 | 610 | |
@@ -619,31 +619,31 @@ discard block |
||
619 | 619 | */ |
620 | 620 | private function _getEditor( $aField ) { |
621 | 621 | |
622 | - unset( $aField['attributes']['value'] ); |
|
622 | + unset( $aField[ 'attributes' ][ 'value' ] ); |
|
623 | 623 | |
624 | 624 | // For no TinyMCE |
625 | - if ( empty( $aField['rich'] ) || ! $this->isTinyMCESupported() ) { |
|
626 | - return "<textarea " . $this->getAttributes( $aField['attributes'] ) . " >" // this method is defined in the base class |
|
627 | - . esc_textarea( $aField['value'] ) |
|
625 | + if ( empty( $aField[ 'rich' ] ) || !$this->isTinyMCESupported() ) { |
|
626 | + return "<textarea ".$this->getAttributes( $aField[ 'attributes' ] )." >" // this method is defined in the base class |
|
627 | + . esc_textarea( $aField[ 'value' ] ) |
|
628 | 628 | . "</textarea>"; |
629 | 629 | } |
630 | 630 | |
631 | 631 | // Rich editor |
632 | 632 | ob_start(); |
633 | 633 | wp_editor( |
634 | - $aField['value'], |
|
635 | - $aField['attributes']['id'], |
|
634 | + $aField[ 'value' ], |
|
635 | + $aField[ 'attributes' ][ 'id' ], |
|
636 | 636 | $this->uniteArrays( |
637 | - ( array ) $aField['rich'], |
|
637 | + ( array ) $aField[ 'rich' ], |
|
638 | 638 | array( |
639 | 639 | 'wpautop' => true, // use wpautop? |
640 | 640 | 'media_buttons' => true, // show insert/upload button(s) |
641 | - 'textarea_name' => $aField['attributes']['name'], |
|
642 | - 'textarea_rows' => $aField['attributes']['rows'], |
|
641 | + 'textarea_name' => $aField[ 'attributes' ][ 'name' ], |
|
642 | + 'textarea_rows' => $aField[ 'attributes' ][ 'rows' ], |
|
643 | 643 | 'tabindex' => '', |
644 | 644 | 'tabfocus_elements' => ':prev,:next', // the previous and next element ID to move the focus to when pressing the Tab key in TinyMCE |
645 | 645 | 'editor_css' => '', // intended for extra styles for both visual and Text editors buttons, needs to include the <style> tags, can use "scoped". |
646 | - 'editor_class' => $aField['attributes']['class'], // add extra class(es) to the editor textarea |
|
646 | + 'editor_class' => $aField[ 'attributes' ][ 'class' ], // add extra class(es) to the editor textarea |
|
647 | 647 | 'teeny' => false, // output the minimal editor config used in Press This |
648 | 648 | 'dfw' => false, // replace the default fullscreen with DFW (needs specific DOM elements and css) |
649 | 649 | 'tinymce' => true, // load TinyMCE, can be used to pass settings directly to TinyMCE using an array() |
@@ -655,7 +655,7 @@ discard block |
||
655 | 655 | ob_end_clean(); |
656 | 656 | |
657 | 657 | return $_sContent |
658 | - . $this->_getScriptForRichEditor( $aField['attributes']['id'] ); |
|
658 | + . $this->_getScriptForRichEditor( $aField[ 'attributes' ][ 'id' ] ); |
|
659 | 659 | |
660 | 660 | } |
661 | 661 |