AAAAtmpl/index.html000066600000000037151405716750007534 0ustar00 tmpl/edit.php000066600000002753151405716750007204 0ustar00
  • form->getLabel('title'); ?> form->getInput('title'); ?>
  • form->getField('parent_id');?>
  • hidden) echo $parent_id->label; ?> input; ?>
tmpl/.htaccess000066600000000177151405716750007342 0ustar00 Order allow,deny Deny from all .htaccess000066600000000177151405716750006366 0ustar00 Order allow,deny Deny from all view.html.php000066600000003404151405716750007212 0ustar00state = $this->get('State'); $this->item = $this->get('Item'); $this->form = $this->get('Form'); // 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_GROUP_TITLE' : 'COM_USERS_VIEW_EDIT_GROUP_TITLE'), 'groups-add'); if ($canDo->get('core.edit')||$canDo->get('core.create')) { JToolBarHelper::apply('group.apply'); JToolBarHelper::save('group.save'); } if ($canDo->get('core.create')) { JToolBarHelper::save2new('group.save2new'); } // If an existing item, can save to a copy. if (!$isNew && $canDo->get('core.create')) { JToolBarHelper::save2copy('group.save2copy'); } if (empty($this->item->id)) { JToolBarHelper::cancel('group.cancel'); } else { JToolBarHelper::cancel('group.cancel', 'JTOOLBAR_CLOSE'); } JToolBarHelper::divider(); JToolBarHelper::help('JHELP_USERS_GROUPS_EDIT'); } } index.html000066600000000037151405716750006560 0ustar00