Sindbad~EG File Manager

Current Path : /home/sarayaglobal/sarayamystair.in/plugins/system/nrframework/fields/
Upload File :
Current File : /home/sarayaglobal/sarayamystair.in/plugins/system/nrframework/fields/nreventbookingcategories.php

<?php
/**
 * @author          Tassos Marinos <info@tassos.gr>
 * @link            http://www.tassos.gr
 * @copyright       Copyright © 2018 Tassos Marinos All Rights Reserved
 * @license         GNU GPLv3 <http://www.gnu.org/licenses/gpl.html> or later
 */

defined('_JEXEC') or die;

require_once __DIR__ . '/treeselect.php';

class JFormFieldNREventBookingCategories extends JFormFieldNRTreeSelect
{
	/**
	 * Indicates whether the options array should be sorted before render.
	 *
	 * @var boolean
	 */
	protected $sortTree = true;

	/**
	 * Get a list of all EventBooking Categories
	 *
	 * @return void
	 */
	protected function getOptions()
	{
		// Get a database object.
		$db = $this->db;

		$query = $db->getQuery(true)
			->select('id as value, name as text, level, parent, IF (published=1, 0, 1) as disable')
			->from('#__eb_categories');
			
		$db->setQuery($query);

		return $db->loadObjectList();
	}
}

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists