Skip to content

Instantly share code, notes, and snippets.

@skremiec
Created January 9, 2010 14:08
Show Gist options
  • Save skremiec/272923 to your computer and use it in GitHub Desktop.
Save skremiec/272923 to your computer and use it in GitHub Desktop.
[Joomla] Creating date input field with datepicker
<?php
/**
* Joomla - Creating date input field with datepicker
*
* @package joomla
*
* @param $value - initial field value
* @param $name - field name
* @param $id - input tag id (required by datepicker)
* @param $format - http://www.php.net/manual/en/function.date.php
* @param $attribs - associative array of HTML input tag attributes
*/
echo JHTML::_('behavior.calendar');
echo JHTML::_('calendar', $value, $name, $id, $format, $attribs);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment