diff options
| author | Sebastian Schmelzer | 2012-01-11 15:22:32 +0100 |
|---|---|---|
| committer | Sebastian Schmelzer | 2012-01-11 15:22:32 +0100 |
| commit | 83767be80c29e3d3ca99f4a7d2eaab97f8256d1b (patch) | |
| tree | 354ee1ba3343291cd389aea69582d677fb7b8a26 /application/modules/dev/views/scripts/group/show.phtml | |
| parent | fix stylecode output (diff) | |
| download | pbs2-83767be80c29e3d3ca99f4a7d2eaab97f8256d1b.tar.gz pbs2-83767be80c29e3d3ca99f4a7d2eaab97f8256d1b.tar.xz pbs2-83767be80c29e3d3ca99f4a7d2eaab97f8256d1b.zip | |
remove unused stuff
Diffstat (limited to 'application/modules/dev/views/scripts/group/show.phtml')
| -rw-r--r-- | application/modules/dev/views/scripts/group/show.phtml | 123 |
1 files changed, 0 insertions, 123 deletions
diff --git a/application/modules/dev/views/scripts/group/show.phtml b/application/modules/dev/views/scripts/group/show.phtml deleted file mode 100644 index f8fbe1e..0000000 --- a/application/modules/dev/views/scripts/group/show.phtml +++ /dev/null @@ -1,123 +0,0 @@ -<h1>Group Details</h1> -<?php -if($this->groupID) { - ?> - <?php echo $this->formButton('deletegroup', 'Delete', array( - 'onclick' => 'self.location="/dev/group/delete/groupID/' . $this->group->getID() .'"', - 'class' => 'rightbutton'))?> - <?php echo $this->formButton('editgroup', 'Edit', array( - 'onclick' => 'self.location="/dev/group/edit/groupID/' . $this->group->getID() .'"', - 'class' => 'rightbutton'))?> -<span class="clear"></span> -<table> - <tr> - <th>Title</th> - <th>Description</th> - </tr> - <tr class="entry"> - <td><?php echo $this->group->getTitle(); ?></td> - <td><?php echo $this->group->getDescription(); ?></td> - </tr> - <?php - if(isset($parentGroup) && is_object($parentGroup)) { - ?> - <tr> - <td><b>Superordinated Group:</b></td> - <td><?php echo $this->parentGroup->getTitle(); ?></td> - </tr> - <?php - } - ?> -</table> - <?php - if(isset($this->groupRequestList)) { - ?> -<br /> -<h2>Requests:</h2> -<table> - <tr> - <th>Firstname</th> - <th>Name</th> - <th>email</th> - <th>city</th> - <th>grant</th> - </tr> - <?php - foreach($this->groupRequestList as $grouprequest) { - $grouprequestID = $grouprequest['grouprequestID']; - $person = $grouprequest['person']; - ?> - <tr class="entry"> - <td><?php echo $person->getFirstname(); ?></td> - <td><?php echo $person->getName(); ?></td> - <td><?php echo $person->getEmail(); ?></td> - <td><?php echo $person->getCity(); ?></td> - <td> - <form action="/dev/group/grantperson" method="post"><input - type="hidden" name="grouprequestID" - value="<?php echo $grouprequestID; ?>" /> <?php printRoleSelect($this->roleList); ?> - <input type="image" src='/media/img/save.png' alt='Grant Person' - name="confirm" value="confirm" /></form> - </td> - </tr> - <?php - } - ?> -</table> - <?php - } - if(isset($this->membersList)) { - ?> -<br /> -<h2>Members:</h2> -<table> - <tr> - <th>Firstname</th> - <th>Name</th> - <th>email</th> - <th>city</th> - <th>revoke</th> - </tr> - - <?php - foreach($this->membersList as $member) { - $membershipID = $member['membershipID']; - $person = $member['person']; - ?> - <tr class="entry"> - <td><?php echo $person->getFirstname(); ?></td> - <td><?php echo $person->getName(); ?></td> - <td><?php echo $person->getEmail(); ?></td> - <td><?php echo $person->getCity(); ?></td> - <td class='action'><a - href="<?php echo $this->url( - array( - 'module' => 'dev', - 'controller' => 'group', - 'action' => 'revokeperson', - 'membershipID' => $membershipID, - ), - 'default', - true) ?>"> <img src='/media/img/delete.png' alt='Delete Group' /></a> - </td> - </tr> - <?php - } - ?> -</table> - <?php - } -} - -function printRoleSelect($roleList) { - if(!is_array($roleList)) { - return; - } - echo "<select name=\"roleID\">"; - foreach($roleList as $role) { - echo "<option value=\"" . $role['roleID'] . "\">" . $role['title'] . "</option>"; - } - echo "</select>"; -} -?> -<br /><br /><br /><br /><br />
\ No newline at end of file |
