Source for file AHTMLText.php

Documentation is available at AHTMLText.php

  1. <?php
  2.  
  3. /**
  4.  * AHTMLText
  5.  *
  6.  * @package Alia
  7.  * @subpackage Widgets
  8.  */
  9.  
  10.  
  11.  
  12.  
  13. /**
  14.  * AHTMLText
  15.  *
  16.  * @package Alia
  17.  * @subpackage Widgets
  18.  */
  19.  
  20. class AHTMLText extends AWidget
  21. {
  22.  
  23.     private $__text;
  24.  
  25.     public function __construct($text=''){
  26.         parent::__construct();
  27.         $this->__text=$text;
  28.     }
  29.  
  30.     public function setText$text {
  31.         $this->__text=$text;
  32.     // end of member function setText
  33.  
  34.     public function getText{
  35.         return $this->__text;
  36.     // end of member function getText
  37.     
  38.     function render(){
  39.         return $this->getText();
  40.     }
  41.  
  42. }
  43.  
  44. ?>

Documentation generated on Fri, 11 Jul 2008 13:28:40 -0400 by phpDocumentor 1.4.2