| Current Path : /home/m/e/g/megadansyp/www/administrator/components/com_xmap/elements/ |
| Current File : /home/m/e/g/megadansyp/www/administrator/components/com_xmap/elements/sitemap.php |
<?php
/**
* @version $Id$
* @copyright Copyright (C) 2007 - 2009 Joomla! Vargas. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
* @author Guillermo Vargas (guille@vargas.co.cr)
*/
// no direct access
defined('_JEXEC') or die;
class JElementSitemap extends JElement
{
/**
* Element name
*
* @var string
*/
var $_name = 'Sitemap';
public function fetchElement($name, $value, &$node, $control_name)
{
global $mainframe;
$db = JFactory::getDBO();
$fieldName = $control_name.'['.$name.']';
$sql = "SELECT id, name from #__xmap_sitemap order by name";
$db->setQuery($sql);
$rows = $db->loadObjectList();
$html = JHTML::_('select.genericlist',$rows,$fieldName,'','id','name',$value);
return $html;
}
}