Exemple #1
0
 /**
  * Get the events in the category
  */
 function getItems()
 {
     $params = clone $this->getState('params');
     $items = parent::getItems();
     if ($items) {
         foreach ($items as &$item) {
         }
         return $items;
     }
     return array();
 }
Exemple #2
0
	/**
	 * Method to get the events
	 *
	 * @access public
	 * @return array
	 */
	public function getItems()
	{
		$items = parent::getItems();

		if ($items) {
			return $items;
		}

		return array();
	}
Exemple #3
0
 /**
  * Method to get a list of events.
  */
 public function getItems()
 {
     $app = JFactory::getApplication();
     $params = $app->getParams();
     $items = parent::getItems();
     if ($items) {
         $items = self::calendarMultiday($items);
         return $items;
     }
     return array();
 }
Exemple #4
0
 /**
  * Method to get a list of events.
  */
 public function getItems()
 {
     $app = JFactory::getApplication();
     $params = $app->getParams();
     $items = parent::getItems();
     if ($items) {
         return $items;
     }
     return array();
 }
Exemple #5
0
	/**
	 * Get the events in the category
	 */
	function getItems()
	{
		//$params = clone $this->getState('params');
		$items	= parent::getItems();

		if ($items) {
			return $items;
		}

		return array();
	}
Exemple #6
0
	/**
	 * Method to get a list of events.
	 */
	public function getItems()
	{
		$items = parent::getItems();

		if ($items) {
			$items = $this->calendarMultiday($items);

			return $items;
		}

		return array();
	}
Exemple #7
0
	/**
	 * Method to get a list of events.
	 */
	public function getItems()
	{
		$items	= parent::getItems();
		/* no additional things to do yet - place holder */
		if ($items) {
			return $items;
		}

		return array();
	}