[ Index ] |
|
Code source de CMS made simple 1.0.5 |
1 <?php 2 { 3 $active_tab = -1; 4 if( isset($params['active_tab'])) 5 { 6 $active_tab = $params['active_tab']; 7 } 8 9 echo $this->StartTabHeaders(); 10 if( $this->CheckPermission('Modify Modules') ) 11 { 12 echo $this->SetTabHeader('modules',$this->Lang('availmodules'), 13 $active_tab == 'modules' ); 14 } 15 if( $this->CheckPermission('Modify Site Preferences') ) 16 { 17 echo $this->SetTabHeader('prefs',$this->Lang('preferences'), 18 $active_tab == 'prefs' ); 19 } 20 echo $this->EndTabHeaders(); 21 22 echo $this->StartTabContent(); 23 if( $this->CheckPermission('Modify Modules') ) 24 { 25 echo $this->StartTab('modules'); 26 $this->_DisplayAdminModulesTab( $id, $params, $returnid ); 27 echo $this->EndTab(); 28 } 29 if( $this->CheckPermission('Modify Site Preferences') ) 30 { 31 echo $this->StartTab('prefs'); 32 $this->_DisplayAdminPrefsTab( $id, $params, $returnid ); 33 echo $this->EndTab(); 34 } 35 echo $this->EndTabContent(); 36 } 37 ?>
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
Généré le : Tue Apr 3 18:50:37 2007 | par Balluche grâce à PHPXref 0.7 |