get('State'); $items = &$this->get('Items'); $pagination = &$this->get('Pagination'); $lists = new stdClass(); $select[] = JHTML::_('select.option', '-1', JText::_('All')); $select[] = JHTML::_('select.option', '0', JText::_('Site Modules')); $select[] = JHTML::_('select.option', '1', JText::_('Admin Modules')); $lists->client = JHTML::_('select.genericlist', $select, 'client', 'class="inputbox" size="1" onchange="document.adminForm.submit();"', 'value', 'text', $state->get('filter.client')); $this->assignRef('items', $items); $this->assignRef('pagination', $pagination); $this->assignRef('lists', $lists); JHTML::_('behavior.tooltip'); parent::display($tpl); } function loadItem($index=0) { $item =& $this->items[$index]; $item->index = $index; if ($item->iscore) { $item->cbd = 'disabled'; $item->style = 'style="color:#999999;"'; } else { $item->cbd = null; $item->style = null; } $item->author_info = @$item->authorEmail .'
'. @$item->authorUrl; $this->assignRef('item', $item); } }