Axiom (v1.2.0)

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