Phundament-Components
[ class tree: Phundament-Components ] [ index: Phundament-Components ] [ all elements ]

Source for file MasterLayout.php

Documentation is available at MasterLayout.php

  1. <?php
  2.  
  3. /**
  4.  * Class file.
  5.  *
  6.  * @license http://opensource.org/licenses/mozilla1.1.php Mozilla Public License
  7.  * @copyright 2005, diemeisterei GmbH. All rights reserved.
  8.  * @author $Author: schmunk $
  9.  * @version $Revision: 601 $  $Date: 2007-02-24 23:49:30 +0100 (Sa, 24 Feb 2007) $
  10.  * @package Phundament.Components
  11.  * @subpackage Pages
  12.  */
  13.  
  14. /**
  15.  * Master layout class
  16.  *
  17.  * @package Admin.Pages
  18.  * @subpackage Master
  19.  */
  20. class MasterLayout extends TTemplateControl
  21. {
  22.     public function onInit($param)
  23.     {
  24.         parent :: onInit($param);
  25.  
  26.         #$response = new LTidyHttpResponseAdapter($this->Response);
  27.         #$this->Response->Adapter = $response;
  28.     }
  29.  
  30.     public function onUnLoad($param)
  31.     {
  32.         parent :: onUnLoad($param);
  33.         Prado :: log("MasterLayout onUnLoad called"1"Main");
  34.  
  35.     }
  36.  
  37.     /**
  38.      * Hides right sidebar
  39.      */
  40.     function enlargeContent()
  41.     {
  42.         $this->CellMain->getStyle()->setCssClass("WidthLarge LayoutMainContainer");
  43.         $this->CellRight->setVisible(false);
  44.         #$this->CellRight->setVisible(false);
  45.     }
  46.  
  47. }
  48. ?>

Documentation generated on Sun, 25 Feb 2007 16:11:49 +0100 by phpDocumentor 1.3.1