Nofooter.php 294 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 <?php class QLib_Actions_Nofooter extends QLib_Action { public function init() { parent::init(); $isXmlHttpRequest = $this->getRequest()->isXmlHttpRequest(); if ($isXmlHttpRequest == false) { $this->getView()->setLayout('nofooter'); } } }