blob: 6b042e14eb89ecdec08fcc6b4ef13865ed20290f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
<h1>Edit Group</h1>
<?php
if(isset($this->addForm)) {
$this->addForm->setAction('/dev/group/add');
echo $this->addForm;
}
else {
$this->editForm->setAction($this->url());
echo $this->editForm;
}
?>
|