Skip to content
Snippets Groups Projects
edit-group.phtml 966 B
Newer Older
<h1>Editing Group: <?php echo $this->group->getName(); ?></h1>

<form action="<?php echo $this->baseUrl(); ?>/auth/user-admin/edit-group.post/id/<?php echo $this->group->getId(); ?>" method="post">

    Name:<br />
    <?php echo $this->formText('name', $this->group->getName()); ?><br />
    
    Description:<br />
    <?php echo $this->formText('description', $this->group->getDescription()); ?><br />
    
    <br />Parent Groups:<br />
    <?php echo $this->formSelect('parentGroups', $this->parentGroups, array('multiple' => 'multiple'), $this->groups) ?><br />
    
    <br />Child Groups:<br />
    <?php echo $this->formSelect('childGroups', $this->childGroups, array('multiple' => 'multiple'), $this->groups) ?><br />
    
    <br />Users:<br />
    <?php echo $this->formSelect('users', $this->userMembers, array('multiple' => 'multiple'), $this->users) ?><br />
    
    <br />
    <?php echo $this->formSubmit('submit', 'Update Group'); ?><br />
</form>