string = $string; $this->setCssClass(null); } /** * Makes a new instance of the object in a static fashion * * @return object */ public static function make() { $obj = new ReflectionClass(__CLASS__); $args = func_get_args(); return $obj->newInstanceArgs($args); } /** * Prints the string * * @return string The string; wrapped in a if it has styling */ public function paint() { if ($this->_prepareStyle()) { return '_prepareStyle() . '>' . $this->string . ''; } return $this->string; } } ?>