| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Old Sites/eadsa/modules/mod_dn/elements/ |
Upload File : |
<?php
class JElementSections extends JElement
{
var $_name = 'Sections';
function fetchElement($name, $value, &$node, $control_name)
{
$db =& JFactory::getDBO();
// added this for the size of the list
$size = ( $node->attributes('size') ? $node->attributes('size') : 5 );
$query = 'SELECT id, title FROM #__sections WHERE published = 1 AND scope = "content" ORDER BY title';
$db->setQuery($query);
$options = $db->loadObjectList();
/*
array_unshift($options, JHTML::_('select.option', '0', '- '.JText::_('Select Section').' -', 'id', 'title'));
return JHTML::_('select.genericlist', $options, ''.$control_name.'['.$name.']', 'class="inputbox"', 'id', 'title', $value, $control_name.$name);
*/
// added
return JHTML::_('select.genericlist', $options, ''.$control_name.'['.$name.'][]', ' multiple="multiple" size="' . $size . '" class="inputbox"', 'id', 'title', $value, $control_name.$name);
}
}
?>