diff options
Diffstat (limited to 'app/php/controls/CalendarLabel.php')
-rw-r--r-- | app/php/controls/CalendarLabel.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/app/php/controls/CalendarLabel.php b/app/php/controls/CalendarLabel.php new file mode 100644 index 0000000..667e847 --- /dev/null +++ b/app/php/controls/CalendarLabel.php @@ -0,0 +1,13 @@ +<?php + +Prado::using('Application.controls.UrlBasedCalendarControl'); + +class CalendarLabel extends UrlBasedCalendarControl { + + public function getPradoScriptDependencies() { + return ['jquery']; + } + +} + +?> |