Ejemplo n.º 1
0
 private function header()
 {
     if (!RequestUtils::isAjax()) {
         $this->loadView("main/vHeader", array("infoUser" => Auth::getInfoUser()));
         echo "<div class='container'>";
         echo "<h1>" . $this->title . "</h1>";
     }
 }
Ejemplo n.º 2
0
	public function finalize() {
		if (!RequestUtils::isAjax()) {
			echo "</div>";
			$this->loadView("main/vFooter");
			$all=ob_get_contents();
			ob_end_clean();
			echo $all;
		}
	}
 public function finalize()
 {
     if (!RequestUtils::isAjax()) {
         echo "</div>";
         $this->loadView("main/vFooter");
     }
 }