Axiom (v1.2.0)

A lightweight PHP framework
H:/Workspace/php-axiom/www/php-axiom/libraries/axiom/axTextareaHelper.class.php
Go to the documentation of this file.
00001 <?php
00016 class axTextareaHelper extends axBaseHelper {
00017 
00023     public function __construct ($name, $value = "") {
00024         parent::__construct('textarea', array('name' => $name), $value);
00025         
00026         if (empty($value))
00027             $this->_children[] = null;
00028     }
00029 
00036     public static function export ($name, $value = "") {
00037         return new self ($name, $value);
00038     }
00039 }
 All Data Structures Files Functions Variables