| [ Index ] |
|
Code source de LifeType 1.2.4 |
1 <?php 2 3 lt_include( PLOG_CLASS_PATH."class/action/admin/adminaction.class.php" ); 4 lt_include( PLOG_CLASS_PATH."class/view/admin/adminglobalsettingslistview.class.php" ); 5 6 /** 7 * \ingroup Action 8 * @private 9 * 10 * List of all the available settings for the site 11 */ 12 class AdminGlobalSettingsAction extends AdminAction 13 { 14 15 function AdminGlobalSettingsAction( $actionInfo, $request ) 16 { 17 $this->AdminAction( $actionInfo, $request ); 18 19 $this->requireAdminPermission( "view_global_settings" ); 20 } 21 22 function perform() 23 { 24 // if no problem, continue 25 $show = $this->_request->getValue( "show" ); 26 $this->_view = new AdminGlobalSettingsListView( $this->_blogInfo, $show ); 27 $this->setCommonData(); 28 29 return true; 30 } 31 } 32 ?>
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
| Généré le : Mon Nov 26 21:04:15 2007 | par Balluche grâce à PHPXref 0.7 |
|