Source for file viewset.php
Documentation is available at viewset.php
* @author Robert Deutz (email contact@rdbs.net / site www.rdbs.de)
* @copyright Copyright (C) 2005-2007 run-digital
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
$db = &JFactory::getDBO();
$query = 'SELECT vs.id, vs.title AS text '
. ' FROM #__rd_sitemap_viewset AS vs'
. ' WHERE vs.published = 1'
$options = $db->loadObjectList( );
return JHTML::_('select.genericlist', $options, ''. $control_name. '['. $name. ']', 'class="inputbox"', 'id', 'text', $value, $control_name. $name );
|