예제 #1
0
<?php

/*
to view the initer :
echo $this->showIniter();
or better way
uncomment in this file the line : //$footercontent.=$this->showIniter();
*/
//menu
$menufooter = "";
if ($this->includer->include_pratikclass("menu")) {
    $instanceMenu = new PratikMenu($this->initer);
    $menufooter = $instanceMenu->menu_loader("footer");
}
$this->tpl->remplir_template("menufooter", $menufooter);
$instancePage = new MainFooter($this->initer);
$footercontent = "";
//$footercontent.=$this->showIniter();
$footercontent .= $instancePage->footercontent_loader();
$this->tpl->remplir_template("footercontent", $footercontent);
예제 #2
0
<?php

/*
to view the initer :
echo $this->showIniter();
or better way
uncomment in this file the line : //$headercontent.=$this->showIniter();
*/
//menu
$menuheader = "";
if ($this->includer->include_pratikclass("menu")) {
    $instanceMenu = new PratikMenu($this->initer);
    $menuheader = $instanceMenu->menu_loader("main");
}
$this->tpl->remplir_template("menuheader", $menuheader);
//case
$caseauth = "";
$caseuserinfo = "";
if ($this->includer->include_pratikclass("case")) {
    $instanceCase = new PratikCase($this->initer);
    $caseauth = $instanceCase->case_loader("auth");
    $caseuserinfo = $instanceCase->case_loader("userinfo");
}
$this->tpl->remplir_template("caseauth", $caseauth);
$this->tpl->remplir_template("caseuserinfo", $caseuserinfo);
//colonne
$colonnedroite = "";
$colonnegauche = "";
if ($this->includer->include_pratikclass("colonne")) {
    $instanceColonne = new PratikColonne($this->initer);
    $colonnedroite = $instanceColonne->colonne_loader("colonnedroite");