本文整理汇总了PHP中Home::main方法的典型用法代码示例。如果您正苦于以下问题:PHP Home::main方法的具体用法?PHP Home::main怎么用?PHP Home::main使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Home
的用法示例。
在下文中一共展示了Home::main方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: enter
/**
*
* @param $controller
*/
function enter($controller)
{
// Call a given controller, except when the segment1 is "null", in which, call Home.
if ($controller != "null") {
$instance = new $controller();
$instance->main();
} else {
$instance = new Home();
$instance->main();
}
}
示例2: hideBlock
function hideBlock($tempVar)
{
$this->tpl->set_block("rptsTemplate", $tempVar, $tempVar . "Block");
$this->tpl->set_var($tempVar . "Block", "");
}
function setPageDetailPerms()
{
}
function Main()
{
$this->tpl->set_var("uname", $this->user["uname"]);
$this->tpl->set_var("today", date("F j, Y"));
$this->setPageDetailPerms();
$this->tpl->set_var("Session", $this->sess->url(""));
$this->tpl->parse("templatePage", "rptsTemplate");
$this->tpl->finish("templatePage");
$this->tpl->p("templatePage");
}
}
#####################################
# Define Procedures and Functions
#####################################
##########################################################
# Begin Program Script
##########################################################
//*
page_open(array("sess" => "rpts_Session", "auth" => "rpts_Challenge_Auth"));
//*/
$obj = new Home($sess);
$obj->main();
page_close();