Changeset 476


Ignore:
Timestamp:
02/22/06 00:22:23 (7 years ago)
Author:
anarcat
Message:

[project @ alternc: changeset 2004-12-17 20:50:53 by anonymous]
ajout des fichiers adminmenu_* pour alternc-cacti et autres packages
admin optionnels.

Original author: anonymous
Date: 2004-12-17 20:50:53

File:
1 edited

Legend:

Unmodified
Added
Removed
  • bureau/admin/adm_panel.php

    r341 r476  
    11<?php 
    22/* 
    3  $Id: adm_panel.php,v 1.5 2004/06/02 13:23:45 anonymous Exp $ 
     3 $Id: adm_panel.php,v 1.6 2004/12/17 20:50:53 anonymous Exp $ 
    44 ---------------------------------------------------------------------- 
    55 AlternC - Web Hosting System 
     
    5353<tr class="lst2"><td><a href="adm_slaveip.php"><?php __("Manage allowed ip for slave zone transfers"); ?></a></td></tr> 
    5454<tr class="lst1"><td><a href="adm_slaveaccount.php"><?php __("Manage allowed accounts for slave zone transfers"); ?></a></td></tr> 
     55<?php 
     56 
     57// here we include any "adminmenu_*" file content 
     58$d=opendir("."); 
     59if ($d) {  
     60  while ($c=readdir($d)) { 
     61    if (substr($c,0,10)=="adminmenu_") { 
     62      include($c); 
     63    } 
     64  }  
     65} 
     66 
     67closedir($d); 
     68?> 
     69 
    5570</table> 
    5671</blockquote> 
Note: See TracChangeset for help on using the changeset viewer.