AAAA.htaccess000066600000000177151402160270006351 0ustar00 Order allow,deny Deny from all tmpl/edit.php000066600000006305151402160270007164 0ustar00
  • form->getLabel('title'); ?>
  • form->getInput('title'); ?>
item->rules); ?>
tmpl/.htaccess000066600000000177151402160270007325 0ustar00 Order allow,deny Deny from all tmpl/index.html000066600000000037151402160270007517 0ustar00 view.html.php000066600000003422151402160270007175 0ustar00form = $this->get('Form'); $this->item = $this->get('Item'); $this->state = $this->get('State'); // Check for errors. if (count($errors = $this->get('Errors'))) { JError::raiseError(500, implode("\n", $errors)); return false; } $this->addToolbar(); parent::display($tpl); } /** * Add the page title and toolbar. * * @since 1.6 */ protected function addToolbar() { JRequest::setVar('hidemainmenu', 1); $user = JFactory::getUser(); $isNew = ($this->item->id == 0); $canDo = UsersHelper::getActions(); JToolBarHelper::title(JText::_($isNew ? 'COM_USERS_VIEW_NEW_LEVEL_TITLE' : 'COM_USERS_VIEW_EDIT_LEVEL_TITLE'), 'levels-add'); if ($canDo->get('core.edit')||$canDo->get('core.create')) { JToolBarHelper::apply('level.apply'); JToolBarHelper::save('level.save'); } if ($canDo->get('core.create')) { JToolBarHelper::save2new('level.save2new'); } // If an existing item, can save to a copy. if (!$isNew && $canDo->get('core.create')){ JToolBarHelper::save2copy('level.save2copy'); } if (empty($this->item->id)){ JToolBarHelper::cancel('level.cancel'); } else { JToolBarHelper::cancel('level.cancel', 'JTOOLBAR_CLOSE'); } JToolBarHelper::divider(); JToolBarHelper::help('JHELP_USERS_ACCESS_LEVELS_EDIT'); } } index.html000066600000000037151402160270006543 0ustar00