예제 #1
0
파일: category.php 프로젝트: JKoelman/JEM-3
 /**
  * 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();
 }
예제 #2
0
	/**
	 * Method to get the events
	 *
	 * @access public
	 * @return array
	 */
	public function getItems()
	{
		$items = parent::getItems();

		if ($items) {
			return $items;
		}

		return array();
	}
예제 #3
0
파일: weekcal.php 프로젝트: JKoelman/JEM-3
 /**
  * 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();
 }
예제 #4
0
파일: calendar.php 프로젝트: JKoelman/JEM-3
 /**
  * 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();
 }
예제 #5
0
	/**
	 * Get the events in the category
	 */
	function getItems()
	{
		//$params = clone $this->getState('params');
		$items	= parent::getItems();

		if ($items) {
			return $items;
		}

		return array();
	}
예제 #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();
	}
예제 #7
0
파일: venue.php 프로젝트: BillVGN/PortalPRP
	/**
	 * 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();
	}