diff options
author | rub <rub@piwigo.org> | 2008-10-10 21:52:00 +0000 |
---|---|---|
committer | rub <rub@piwigo.org> | 2008-10-10 21:52:00 +0000 |
commit | 650a40bf78263cced01e9a1101a4d8bd944b388c (patch) | |
tree | 2a89d1aae58e18c5f8daa62d756e0a5e1f894fb1 /template/yoga/include/datepicker.inc.tpl | |
parent | c7523041643b30ceea65ce945a8678c8728a1616 (diff) |
jQuery Datepicker:
Move code source to template-common in order to use datepicker on version after butterfly
Merge trunk 2703:2704 into branch 2.0
git-svn-id: http://piwigo.org/svn/branches/2.0@2705 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template/yoga/include/datepicker.inc.tpl')
-rw-r--r-- | template/yoga/include/datepicker.inc.tpl | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/template/yoga/include/datepicker.inc.tpl b/template/yoga/include/datepicker.inc.tpl new file mode 100644 index 000000000..871be0ea6 --- /dev/null +++ b/template/yoga/include/datepicker.inc.tpl @@ -0,0 +1,19 @@ +{* $Id$ *} +{known_script id="jquery" src=$ROOT_URL|@cat:"template-common/lib/jquery.packed.js"} +{known_script id="jquery.ui" src=$ROOT_URL|@cat:"template-common/lib/ui/ui.core.packed.js"} +{known_script id="jquery.ui.datepicker" src=$ROOT_URL|@cat:"template-common/lib/ui/ui.datepicker.packed.js"} +{known_script id="jquery.ui.datepicker-$lang_info.code" src=$ROOT_URL|@cat:"template-common/lib/ui/i18n/ui.datepicker-"|@cat:$lang_info.code|@cat:".js"} +{known_script id="datepicker.js" src=$ROOT_URL|@cat:"template-common/datepicker.js"} + +{html_head} +<link rel="stylesheet" type="text/css" href="{$ROOT_URL}template-common/lib/ui/ui.datepicker.css"> +{/html_head} + +<script type="text/javascript"> +function pwg_initialization_datepicker(day, month, year, linked_date, checked_on_change, min_linked_date, max_linked_date) +{ldelim} + return pwg_common_initialization_datepicker( + "{$ROOT_URL}{$themeconf.icon_dir}/datepicker.png", + day, month, year, linked_date, checked_on_change, min_linked_date, max_linked_date); +} +</script> |