Axiom (v1.2.0)

A lightweight PHP framework
H:/Workspace/php-axiom/www/php-axiom/libraries/axiom/axColHelper.class.php
Go to the documentation of this file.
00001 <?php
00016 class axColHelper extends axBaseHelper {
00017     
00021     public function __construct () {
00022         parent::__construct('col');
00023     }
00024     
00030     public function setValue ($value) {
00031         throw new BadMethodCallException("Col tag cannot have value", 3007);
00032     }
00033     
00039     public function appendChild ($node) {
00040         throw new BadMethodCallException("Col tag cannot have children", 3008);
00041     }
00042     
00048     public function prependChild ($node) {
00049         throw new BadMethodCallException("Col tag cannot have children", 3008);
00050     }
00051     
00057     public static function export () {
00058         return new self;
00059     }
00060 }
 All Data Structures Files Functions Variables