HomeHelpTrac

Changeset 15872


Ignore:
Timestamp:
01/13/12 05:11:43 (5 months ago)
Author:
Anton Lesnikov
Message:

Minor fixes and improvements.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/inc/classes/BxDolAcl.php

    r15794 r15872  
    112112     * @param int $iActionId ID of the action itself 
    113113     * @param boolean $bPerformAction if true, then action information is updated, i.e. action is 'performed' 
    114      * @return array(   CHECK_ACTION_RESULT => CHECK_ACTION_RESULT_ constant, 
    115      *                  CHECK_ACTION_MESSAGE => CHECK_ACTION_MESSAGE_ constant, 
    116      *                  CHECK_ACTION_PARAMETER => additional action parameter (string) ) 
     114     * @return array(    
     115     *              CHECK_ACTION_RESULT => CHECK_ACTION_RESULT_ constant, 
     116     *              CHECK_ACTION_MESSAGE => CHECK_ACTION_MESSAGE_ constant, 
     117     *              CHECK_ACTION_PARAMETER => additional action parameter (string) 
     118     *          ) 
    117119     * 
    118120     * NOTES: 
     
    313315     * 
    314316     * @param int $iLevelId membership to get info about 
    315      * @return array('Name' => name, 'Active' => active, 'Purchasable' => purchasable, 'Removable' => removable) 
     317     * @return array( 
     318     *              'id'                    =>  ID,  
     319     *              'name'                  =>  name, 
     320     *              'icon'                  =>  icon, 
     321     *              'description'           =>  description,  
     322     *              'active'                =>  active,  
     323     *              'purchasable'           =>  purchasable,  
     324     *              'removable'             =>  removable 
     325     *              'quota_size'            =>  quota size, 
     326     *              'quota_number'          =>  quota number, 
     327     *              'quota_max_file_size'   =>  quota max file size 
     328     *          ) 
    316329     */ 
    317330    function getMembershipInfo($iLevelId) { 
     
    353366     * @param int $iProfileId ID of a profile to get info about 
    354367     * @param int $time specifies the time to use when determining membership; if not specified, the function takes the current time 
    355      * @return array(   'ID'            => membership id, 
    356      *                  'Name'          => membership name, 
    357      *                  'DateStarts'    => (UNIX timestamp) date/time purchased, 
    358      *                  'DateExpires'   => (UNIX timestamp) date/time expires ) 
    359      * 
     368     * @return array(    
     369     *              'id'            => membership id, 
     370     *              'name'          => membership name, 
     371     *              'date_starts'   => (UNIX timestamp) date/time purchased, 
     372     *              'date_expires'  => (UNIX timestamp) date/time expires 
     373     *          ) 
    360374     */ 
    361375    function getMemberMembershipInfo($iProfileId, $iTime = 0) { 
Note: See TracChangeset for help on using the changeset viewer.