Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Funktioiden kommentointi (esimerkki):

 


Code Block
    /**
     * Checks if user has permission to perform action
     * 
     * @param string  $actionType   Type of the action
     * @param array   $post         Request parameters
     * @param boolean $skipRedirect If failed request should be
     *                              redirected to the main page
     *                              
     * @return boolean
     */

...

Code Block
        /**
         * 
         * User model
         * @var Application_Model_User
         */
        $this->_model = new Application_Model_User();

 

 

 

...