[phpMP-CVS] CVS: phpMP/modules usercp.php,NONE,1.1
Status: Pre-Alpha
Brought to you by:
heimidal
|
From: Brian R. <hei...@us...> - 2002-04-10 04:38:41
|
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();
?>
|