| 1 |
<?php |
| 2 |
class AccuaForm_Element_ColorPicker extends Element { |
| 3 |
public function __construct($label, $name, array $properties = null) { |
| 4 |
parent::__construct($label,$name,$properties); |
| 5 |
$this->setValidation(new AccuaForm_Validation_Color()); |
| 6 |
} |
| 7 |
|
| 8 |
public function jQueryDocumentReady() { |
| 9 |
parent::jQueryDocumentReady(); |
| 10 |
echo 'jQuery("#', $this->attributes["id"], '").wpColorPicker();'; |
| 11 |
} |
| 12 |
|
| 13 |
public function render() { |
| 14 |
$this->validation[] = new Validation_Date; |
| 15 |
parent::render(); |
| 16 |
} |
| 17 |
} |
| 18 |
|