Lines Matching defs:class
8 * Base class for all input elements. Uses a wrapping label when label
14 class InputElement extends Element
77 * Adds a class to the class attribute
79 * This is the preferred method of setting the element's class
81 * @param string $class the new class to add
84 public function addClass($class)
86 if ($this->label) $this->label->addClass($class);
87 return parent::addClass($class);