Update of /cvsroot/phpmp/phpMP/modules
In directory usw-pr-cvs1:/tmp/cvs-serv22503/modules
Added Files:
usercp.php
Log Message:
Adding a little module support.
--- NEW FILE: usercp.php ---
<?
$file = 'usercp.php';
class Module {
var $pagetitle;
function Init() {
$this->pagetitle = "User Control Panel";
}
function MakeContent() {
global $Template;
$Template->Blocking('BeginBig', array(PAGETITLE => ".::" . $this->pagetitle . "::."));
print "This is a test...<br>This is only a test...<br>\n";
$Template->Blocking('EndBig');
}
}
$Module = new Module();
?>
|