<?php
  /** * @package Spider Calendar lite * @author Web-Dorado * @copyright (C) 2011 Web-Dorado. All rights reserved. * @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html **/


defined( '_JEXEC' ) or die( 'Restricted access' );



jimport( 'joomla.application.component.view');







class spidercalendarViewajaxcalendar extends JViewLegacy

{

    function display($tpl = null)

		{			$model = $this->getModel();			$result = $model->getdays();			$this->assignRef( 'array_days',	$result[0] );			$this->assignRef( 'title',	$result[1] );			$this->assignRef( 'option',	$result[2] );			$this->assignRef( 'array_days1',	$result[3] );			$this->assignRef( 'calendar',	$result[4] );				$this->assignRef( 'rows',	$result[5] );		            $result1 = $model->getCategories();				$this->assignRef( 'categories',	$result1[0] );			$this->assignRef( 'eventIDs',	$result[6] );			parent::display($tpl);

		}

}

?>