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

Source for file PlainLayout.php

Documentation is available at PlainLayout.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: 462 $  $Date: 2006-12-23 22:29:15 +0000 (Sa, 23 Dez 2006) $
  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 PlainLayout extends TTemplateControl
  21. {
  22.     public function onInit($param)
  23.     {
  24.         parent :: onInit($param);
  25.     }
  26.  
  27.     public function onUnLoad($param)
  28.     {
  29.         parent :: onUnLoad($param);
  30.         Prado :: log("MasterLayout onUnLoad called"1"Main");
  31.  
  32.     }
  33.  
  34.     /**
  35.      * Hides right sidebar
  36.      */
  37.     function enlargeContent()
  38.     {
  39.         $this->CellMain->getStyle()->setCssClass("WidthLarge LayoutMainContainer");
  40.         $this->CellRight->setVisible(false);
  41.         #$this->CellRight->setVisible(false);
  42.     }
  43.  
  44. }
  45. ?>

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