public static function options($type = 0)
{
if ($type == 1) {
$tree[0] = new CMSObject();
$tree[0]->text = Text::_('COM_PHOCADOWNLOAD_MAIN_CSS');
$tree[0]->value = 1;
$tree[1] = new CMSObject();
$tree[1]->text = Text::_('COM_PHOCADOWNLOAD_CUSTOM_CSS');
$tree[1]->value = 2;
return $tree;
}
$db = Factory::getDBO();
//build the list of categories
$query = 'SELECT a.title AS text, a.id AS value, a.parent_id as parentid' . ' FROM #__phocadownload_categories AS a' . ' WHERE a.published = 1' . ' ORDER BY a.ordering';
$db->setQuery($query);
$items = $db->loadObjectList();
$catId = -1;
$javascript = 'class="form-control" size="1" onchange="submitform( );"';
$tree = array();
$text = '';
$tree = PhocaDownloadCategory::CategoryTreeOption($items, $tree, 0, $text, $catId);
return $tree;
}