* */ /** * Class admin : contains all the administration functions and the administration menu management * * @author Claire Figueras * @license GPL * @package Maarch PeopleBox 1.0 * @version 2.1 */ class admin extends functions { /** * Retrieve the board of the admin app */ public function retrieve_app_admin_services($app_services) { $debug_style = ''; if (preg_match("/MSIE 6.0/", $_SERVER['HTTP_USER_AGENT'])) $debug_style = 'style="height:100px;"'; echo '

Application

'; echo '
'; for($i=0;$i
>
'; } /** * Retrieve the board of the admin app */ public function retrieve_modules_admin_services($modules_services) { $debug_style = ''; if (preg_match("/MSIE 6.0/", $_SERVER['HTTP_USER_AGENT'])) $debug_style = 'style="height:100px;"'; echo '

Modules

'; echo '
'; foreach(array_keys($modules_services) as $value) { $nb = 0; for($i=0;$iModule : '.$value.''; } $nb ++; ?>
>
'; } } ?>