home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2004 April
/
CMCD0404.ISO
/
Software
/
Freeware
/
Programare
/
groupoffice-com-2.01
/
modules
/
wiki
/
template
/
admin.php
next >
Wrap
PHP Script
|
2004-03-08
|
1KB
|
33 lines
<?php
// $Id: admin.php,v 1.1 2004/01/12 22:14:05 comsubvie Exp $
require_once(TemplateDir . '/common.php');
// The admin template is passed an associative array with the following
// elements:
//
// html => A string containing the XHTML markup of the form to be
// displayed.
function template_admin($args)
{
template_common_prologue(array('norobots' => 1,
'title' => TMPL_Administration,
'heading' => TMPL_Administration,
'headlink' => '',
'headsufx' => '',
'toolbar' => 0));
?>
<div id="body">
<?php print $args['html']; ?>
</div>
<?php
template_common_epilogue(array('twin' => '',
'edit' => '',
'editver' => 0,
'history' => '',
'timestamp' => '',
'nosearch' => 1));
}
?>