Changeset 15872
- Timestamp:
- 01/13/12 05:11:43 (5 months ago)
- File:
-
- 1 edited
-
trunk/inc/classes/BxDolAcl.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/inc/classes/BxDolAcl.php
r15794 r15872 112 112 * @param int $iActionId ID of the action itself 113 113 * @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 * ) 117 119 * 118 120 * NOTES: … … 313 315 * 314 316 * @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 * ) 316 329 */ 317 330 function getMembershipInfo($iLevelId) { … … 353 366 * @param int $iProfileId ID of a profile to get info about 354 367 * @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 * ) 360 374 */ 361 375 function getMemberMembershipInfo($iProfileId, $iTime = 0) {
Note: See TracChangeset
for help on using the changeset viewer.