Changeset 14388

Show
Ignore:
Timestamp:
01/12/08 14:24:34 (11 months ago)
Author:
flack
Message:

boilerplate docblocks and fixes for _show_xxx functions, part 4

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/midcom/midcom.admin.styleeditor/handler/create.php

    r12791 r14388  
    147147     * @param string $handler_id Name of the used handler 
    148148     * @param mixed $args Array containing the variable arguments passed to the handler 
    149      * @param mixed $data Data passed to the show method 
     149     * @param mixed &$data Data passed to the show method 
    150150     * @return boolean Indicating successful request 
    151151     */ 
     
    241241     * @access private 
    242242     * @param string $handler_id Name of the used handler 
    243      * @param mixed $data Data passed to the show method 
     243     * @param mixed &$data Data passed to the show method 
    244244     */ 
    245245    function _show_create($handler_id, &$data) 
  • trunk/midcom/midcom.admin.styleeditor/handler/edit.php

    r12791 r14388  
    185185     * @param string $handler_id Name of the used handler 
    186186     * @param mixed $args Array containing the variable arguments passed to the handler 
    187      * @param mixed $data Data passed to the show method 
     187     * @param mixed &$data Data passed to the show method 
    188188     * @return boolean Indicating successful request 
    189189     */ 
     
    333333     * @access private 
    334334     * @param string $handler_id Name of the used handler 
    335      * @param mixed $data Data passed to the show method 
     335     * @param mixed &$data Data passed to the show method 
    336336     */ 
    337337    function _show_edit($handler_id, &$data) 
  • trunk/midcom/midcom.admin.styleeditor/handler/file.php

    r14380 r14388  
    382382     * @param string $handler_id Name of the used handler 
    383383     * @param mixed $args Array containing the variable arguments passed to the handler 
    384      * @param mixed $data Data passed to the show method 
     384     * @param mixed &$data Data passed to the show method 
    385385     * @return boolean Indicating successful request 
    386386     */ 
     
    428428     * @access private 
    429429     * @param string $handler_id Name of the used handler 
    430      * @param mixed $data Data passed to the show method 
     430     * @param mixed &$data Data passed to the show method 
    431431     */ 
    432432    function _show_new($handler_id, &$data) 
     
    450450     * @param string $handler_id Name of the used handler 
    451451     * @param mixed $args Array containing the variable arguments passed to the handler 
    452      * @param mixed $data Data passed to the show method 
     452     * @param mixed &$data Data passed to the show method 
    453453     * @return boolean Indicating successful request 
    454454     */ 
     
    511511     * @access private 
    512512     * @param string $handler_id Name of the used handler 
    513      * @param mixed $data Data passed to the show method 
     513     * @param mixed &$data Data passed to the show method 
    514514     */ 
    515515    function _show_edit($handler_id, &$data) 
     
    534534     * @param string $handler_id Name of the used handler 
    535535     * @param mixed $args Array containing the variable arguments passed to the handler 
    536      * @param mixed $data Data passed to the show method 
     536     * @param mixed &$data Data passed to the show method 
    537537     * @return boolean Indicating successful request 
    538538     */ 
     
    600600     * @access private 
    601601     * @param string $handler_id Name of the used handler 
    602      * @param mixed $data Data passed to the show method 
     602     * @param mixed &$data Data passed to the show method 
    603603     */ 
    604604    function _show_delete($handler_id, &$data) 
  • trunk/midcom/midcom.admin.styleeditor/handler/list.php

    r12791 r14388  
    103103     * @param string $handler_id Name of the used handler 
    104104     * @param mixed $args Array containing the variable arguments passed to the handler 
    105      * @param mixed $data Data passed to the show method 
     105     * @param mixed &$data Data passed to the show method 
    106106     * @return boolean Indicating successful request 
    107107     */ 
     
    205205     * @access private 
    206206     * @param string $handler_id Name of the used handler 
    207      * @param mixed $data Data passed to the show method 
     207     * @param mixed &$data Data passed to the show method 
    208208     */ 
    209209    function _show_list($handler_id, &$data) 
  • trunk/midcom/scaffold/handler/index.php

    r14329 r14388  
    6464     * This function does the output. 
    6565     * 
     66     * @param mixed $handler_id The ID of the handler. 
     67     * @param mixed &$data The local request data. 
    6668     */ 
    6769    function _show_index($handler_id, &$data)