I like to share this awesome Jquery calendar plug-in, which I'm using this in one of my project. FullCalendar is a jQuery plugin that provides a full-sized, drag & drop calendar like the one below. It uses AJAX to fetch events on-the-fly for each month and is easily configured to use your own feed format (an extension is provided for Google Calendar). It...
Do you want to redirect the user to any other page, when some task is performed. It is simple and you can do it easily by the following. in controller.php file function force_login(){ $app =& JFactory::getApplication(); $app->redirect('index.php?option=com_users&view=login'); } In the above given example, the users will be redirected to URL ==> index.php?option=com_users&view=login. ...
Create a PHP file on the root of Joomla 2.5.x Include this script at the very beginning of the PHP file, below the PHP opening tag <?php // Script to access Joomla core functionality start define( '_JEXEC', 1 ); define( 'JPATH_BASE', realpath(dirname(__FILE__).'/../..' )); define( 'DS', DIRECTORY_SEPARATOR ); require_once ( JPATH_BASE .DS.'includes'.DS.'defines.php' ); require_once ( JPATH_BASE .DS.'includes'.DS.'framework.php' ); $mainframe =& JFactory::getApplication('site'); $mainframe->initialise(); // script end...