Image Caption
Showing posts with label calendar. Show all posts
Showing posts with label calendar. Show all posts

Saturday, February 18, 2012

Joomla tooltip and Joomla calendar code

Joomla Tooltip code:
<?php
JHTML::_('behavior.tooltip');
$tooltip='asdf';
$title='zxcv';
echo JHTML::_('tooltip', $tooltip, $title, 'warning.png');
?>
Joomla Calendar code:
<?php
echo JHTML::calendar('','date','inputdate','%d-%m-%Y');
?>