Source for file Colorizer.class.php

Documentation is available at Colorizer.class.php

  1. <?php
  2. /**
  3.  * Class Colorizer, generate colortable and color slder
  4.  *
  5.  * LICENSE: CREATIVE COMMONS PUBLIC LICENSE  "Namensnennung — Nicht-kommerziell 2.0"
  6.  *
  7.  * @copyright  2009 <SEDesign />
  8.  * @license    http://creativecommons.org/licenses/by-nc/2.0/de/
  9.  * @version    $3.0.6$
  10.  * @link       http://www.sedesign.de/de_produkte_chat-v3.html
  11.  * @since      File available since Alpha 1.0
  12.  */
  13.  
  14. class Colorizer extends EtChatConfig
  15. {
  16.     /**
  17.     * Constructor
  18.     *
  19.     * @uses LangXml object creation
  20.     * @uses LangXml::getLang() parser method
  21.     * @return void 
  22.     */
  23.     public function __construct (){
  24.     
  25.         // call parent Constructor from class EtChatConfig
  26.         parent::__construct();
  27.         
  28.         // starts session for LangXml Object
  29.         session_start();
  30.         
  31.         // Disable Browser Chache
  32.         header('Cache-Control: no-store, no-cache, must-revalidate, pre-check=0, post-check=0, max-age=0');
  33.     
  34.         // create new LangXml Object
  35.         $langObj = new LangXml("./");
  36.         $this->lang=$langObj->getLang()->farben_fenster_php[0];
  37.     
  38.         // initialize template
  39.         include_once("./styles/colorizer.tpl.html");
  40.     }
  41. }

Documentation generated on Tue, 22 Dec 2009 09:42:46 +0100 by phpDocumentor 1.4.1