| Server IP : 180.180.241.3 / Your IP : 216.73.216.35 Web Server : Microsoft-IIS/7.5 System : Windows NT NETWORK-NHRC 6.1 build 7601 (Windows Server 2008 R2 Standard Edition Service Pack 1) i586 User : IUSR ( 0) PHP Version : 5.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /AppServ/www/news/modules/mod_dn/elements/ |
Upload File : |
<?php
class JElementAccess extends JElement
{
var $_name = 'Access';
function fetchElement($name, $value, &$node, $control_name)
{
$size = ( $node->attributes('size') ? $node->attributes('size') : 3 );
$db =& JFactory::getDBO();
$query = 'SELECT id AS value, name AS text'
. ' FROM #__groups'
. ' ORDER BY id'
;
$db->setQuery( $query );
$groups = $db->loadObjectList();
// $access = JHTML::_('select.genericlist', $groups, 'access', 'class="inputbox" size="3"', 'value', 'text', intval( $row->access ), '', 1 );
$access = JHTML::_('select.genericlist', $groups, ''.$control_name.'['.$name.'][]', ' multiple="multiple" size="' . $size . '" class="inputbox"', 'value', 'text', $value, $control_name.$name);
return $access;
}
}
?>