| 1 |
<?php |
| 2 |
/** |
| 3 |
* PFBC (PHP Form Builder Class) - Third-party library |
| 4 |
* @package PFBC |
| 5 |
*/ |
| 6 |
|
| 7 |
// phpcs:disable WordPress.Security.EscapeOutput, WordPress.NamingConventions.PrefixAllGlobals, PluginCheck.CodeAnalysis.Heredoc -- Third-party library |
| 8 |
|
| 9 |
class Element_Date extends Element_Textbox { |
| 10 |
protected $jQueryOptions; |
| 11 |
|
| 12 |
public function jQueryDocumentReady() { |
| 13 |
parent::jQueryDocumentReady(); |
| 14 |
echo 'jQuery("#', $this->attributes["id"], '").datepicker(', $this->jQueryOptions(), ');'; |
| 15 |
} |
| 16 |
|
| 17 |
public function render() { |
| 18 |
$this->validation[] = new Validation_Date; |
| 19 |
parent::render(); |
| 20 |
} |
| 21 |
} |
| 22 |
|