Completed
Branch master (bf4987)
by Michael
03:55
created
development/factory/admin_page/_model/AdminPageFramework_FormEmail.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -202,6 +202,7 @@
 block discarded – undo
202 202
          * 
203 203
          * @since       3.3.0
204 204
          * @since       3.4.2       Moved from the validation class.
205
+         * @param string $sKey
205 206
          */
206 207
         private function _getEmailArgument( $aInput, array $aEmailOptions, $sKey, $sSectionID ) {
207 208
             
Please login to merge, or discard this patch.
development/factory/admin_page/_model/AdminPageFramework_ImportOptions.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -89,6 +89,11 @@
 block discarded – undo
89 89
         return $vData;
90 90
         
91 91
     }
92
+
93
+    /**
94
+     * @param string $vData
95
+     * @param string $sFormatType
96
+     */
92 97
     public function formatImportData( &$vData, $sFormatType=null ) {
93 98
         
94 99
         $sFormatType = isset( $sFormatType ) ? $sFormatType : $this->getFormatType();
Please login to merge, or discard this patch.
admin_page/_model/delegate/AdminPageFramework_Model__FormEmailHandler.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -25,6 +25,7 @@
 block discarded – undo
25 25
     /**
26 26
      * Sets up properties.
27 27
      * @since       3.6.3
28
+     * @param AdminPageFramework_Model_Form $oFactory
28 29
      */
29 30
     public function __construct( $oFactory ) {
30 31
        
Please login to merge, or discard this patch.
admin_page/_model/delegate/AdminPageFramework_Model__FormSubmission.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -26,6 +26,7 @@  discard block
 block discarded – undo
26 26
     /**
27 27
      * Sets up hooks and properties.
28 28
      * @since       3.6.3
29
+     * @param AdminPageFramework_Model_Form $oFactory
29 30
      */
30 31
     public function __construct( $oFactory, $aSavedData, $aArguments, $aSectionsets, $aFieldsets ) {
31 32
        
@@ -250,6 +251,9 @@  discard block
 block discarded – undo
250 251
          * Do the 'submit_...' actions.
251 252
          * 
252 253
          * @internal
254
+         * @param null|string $_sSubmitSectionID
255
+         * @param null|string $_sPressedFieldID
256
+         * @param null|string $_sPressedInputID
253 257
          * @return      void
254 258
          * @since       3.5.3
255 259
          * @since       3.6.3       Moved from `AdminPageFramework_Validation`.
@@ -296,6 +300,8 @@  discard block
 block discarded – undo
296 300
          * Do the 'submit_after_...' actions.
297 301
          * 
298 302
          * @internal
303
+         * @param null|string $_sSubmitSectionID
304
+         * @param null|string $_sPressedFieldID
299 305
          * @return      void
300 306
          * @since       3.5.3
301 307
          * @since       3.6.3       Moved from `AdminPageFramework_Validation`.
Please login to merge, or discard this patch.
_model/delegate/AdminPageFramework_Model__FormSubmission_Base.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -79,6 +79,7 @@
 block discarded – undo
79 79
      * @since       3.5.3
80 80
      * @since       3.6.3       Moved from `AdminPageFramework_Form_Model_Validation_Option`.
81 81
      * @internal
82
+     * @param boolean $bIsInputEmtpy
82 83
      * @return      void
83 84
      * @remark      Accessed from some of the parent/child classes.
84 85
      */
Please login to merge, or discard this patch.
validaor/AdminPageFramework_Model__FormSubmission__Validator__Export.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -92,6 +92,7 @@  discard block
 block discarded – undo
92 92
              * 
93 93
              * @since       3.5.4
94 94
              * @since       3.6.3       Moved from `AdminPageFramework_Form_Model_Export`.
95
+             * @param string $sFileName
95 96
              * @return      array
96 97
              */
97 98
             private function _getExportHeaderArray( array $aArguments, $sFileName, $mData ) {
@@ -132,6 +133,7 @@  discard block
 block discarded – undo
132 133
              * @since       3.5.3
133 134
              * @since       3.6.3       Moved from `AdminPageFramework_Form_Model_Export`.
134 135
              * @internal   
136
+             * @param string $mData
135 137
              * @return      string      The export file name.
136 138
              */        
137 139
             private function _getExportFileName( array $aArguments, $sExportFileName, $mData ) {        
Please login to merge, or discard this patch.
validaor/AdminPageFramework_Model__FormSubmission__Validator__Import.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -143,6 +143,7 @@  discard block
 block discarded – undo
143 143
                 /**
144 144
                  * Sets update admin notice.
145 145
                  * @since       3.5.3
146
+                 * @param boolean $bEmpty
146 147
                  * @return      void
147 148
                  */
148 149
                 private function _setImportAdminNotice( $bEmpty ) {
@@ -204,6 +205,8 @@  discard block
 block discarded – undo
204 205
                  * @since       3.5.3
205 206
                  * @since       3.6.3       Moved from `AdminPageFramework_Form_Model_Import`.
206 207
                  * @internal   
208
+                 * @param string $sFormatType
209
+                 * @param string $sImportOptionKey
207 210
                  * @return      string      The filtered import data.
208 211
                  */    
209 212
                 private function _getFilteredImportData( array $aArguments, $mData, $aStoredOptions, $sFormatType, $sImportOptionKey ) {
@@ -232,6 +235,7 @@  discard block
 block discarded – undo
232 235
      * @param       string      The filter prefix.
233 236
      * @param       mixed       The subject filtering value.
234 237
      * @param       array       An argument array holding submit information. Part of this will be passed to the filter callbacks but this itself does not mean is for the filter callbacks.
238
+     * @param string $sPrefix
235 239
      */
236 240
     protected function _getFilteredItemForPortByPrefix( $sPrefix, $mFilteringValue, array $aArguments ) {
237 241
         return $this->addAndApplyFilters(
Please login to merge, or discard this patch.
validaor/AdminPageFramework_Model__FormSubmission__Validator__Redirect.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -66,6 +66,7 @@
 block discarded – undo
66 66
          * Sets the given URL's transient.
67 67
          * @since       unknown
68 68
          * @since       3.6.3       Moved from `AdminPageFramework_Validation`.
69
+         * @param string $sURL
69 70
          */
70 71
         private function _setRedirectTransients( $sURL, $sPageSlug ) {
71 72
             if ( empty( $sURL ) ) { 
Please login to merge, or discard this patch.
validaor/AdminPageFramework_Model__FormSubmission__Validator__Reset.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -60,6 +60,7 @@
 block discarded – undo
60 60
          * @since       3.6.3       Moved from `AdminPageFramework_Validation`.
61 61
          * @remark      `$aInputs` has only the page elements that called the validation callback. 
62 62
          * In other words, it does not hold other pages' option keys.
63
+         * @param string $sKeyToReset
63 64
          * @return      array       The modified input array.
64 65
          */
65 66
         private function _resetOptions( $sKeyToReset, array $aInputs, array $aSubmitInformation ) {
Please login to merge, or discard this patch.