XCL Web Application Platform 2.5.0
The XoopsCube Legacy Project
Loading...
Searching...
No Matches
IsToppage.class.php
1<?php
19{
20 protected $isTop = false;
21 public function preBlockFilter()
22 {
23 $this->mController->mRoot->mDelegateManager->add("Legacypage.Top.Access", array(&$this, 'topAccess'));
24 }
25
26 public function topAccess()
27 {
28 $this->isTop = true;
29 $GLOBALS['xoopsTpl']->assign('xoops_is_top', $this->isTop);
30 }
31}
preBlockFilter()
[Abstract] Executes the logic, when the controller executes preBlockFilter().