summaryrefslogtreecommitdiffstats
path: root/application/modules/dev/views/scripts/person/show.phtml
diff options
context:
space:
mode:
Diffstat (limited to 'application/modules/dev/views/scripts/person/show.phtml')
-rw-r--r--application/modules/dev/views/scripts/person/show.phtml55
1 files changed, 0 insertions, 55 deletions
diff --git a/application/modules/dev/views/scripts/person/show.phtml b/application/modules/dev/views/scripts/person/show.phtml
deleted file mode 100644
index b0c6fc1..0000000
--- a/application/modules/dev/views/scripts/person/show.phtml
+++ /dev/null
@@ -1,55 +0,0 @@
-<h1>Person</h1>
-<?php echo $this->formButton('editperson', 'Edit', array(
- 'onclick' => 'self.location="/dev/person/edit/"',
- 'class' => 'rightbutton'))?>
-<br /><br />
-<div class="personColorDiv"><span class="bold">Title:</span>&nbsp;<?php echo $this->person->getTitle(); ?></div>
-<div class="personDiv"><span class="bold">Name:</span>&nbsp;<?php echo $this->person->getName(); ?></div>
-<div class="personColorDiv"><span class="bold">Firstname:</span>&nbsp;<?php echo $this->person->getFirstname(); ?></div>
-<div class="personDiv"><span class="bold">Street:</span>&nbsp;<?php echo $this->person->getStreet(); ?></div>
-<div class="personColorDiv"><span class="bold">Housenumber:</span>&nbsp;<?php echo $this->person->getHousenumber(); ?></div>
-<div class="personDiv"><span class="bold">City:</span>&nbsp;<?php echo $this->person->getCity(); ?></div>
-<div class="personColorDiv"><span class="bold">Postalcode:</span>&nbsp;<?php echo $this->person->getPostalcode(); ?></div>
-<div class="personDiv"><span class="bold">Email:</span>&nbsp;<?php echo $this->person->getEmail(); ?></div>
-<div class="personColorDiv"><span class="bold">Last Login Date:</span>&nbsp;<?php if( $this->person->getLogindate()) echo date ('d. F Y - H:i', $this->person->getLogindate()) . " Uhr"; ?></div>
-<div class="personDiv"><span class="bold">Register Date:</span>&nbsp;<?php echo date ('d. F Y - H:i', $this->person->getRegisterdate()) . ' Uhr'; ?></div>
-<?php
-if(isset($this->groups)) {
- ?>
-<br />
-<h2>Member in the following Groups:</h2>
-<table>
-<?php
-foreach($this->groups as $group) {
- ?>
- <tr>
- <th>Title</th>
- <th>Description</th>
- <th>Leave</th>
- </tr>
- <tr>
- <td><?php echo $group['title']; ?></td>
- <td><?php echo $group['description']; ?></td>
- <td class='action'><a
- href="<?php echo $this->url(
- array(
- 'module' => 'dev',
- 'controller' => 'person',
- 'action' => 'leave',
- 'membershipID' => $group['membershipID']
- ),
- 'default',
- true) ?>"> <img src='/media/img/delete.png' alt='Delete Group' /></a>
- </td>
- </tr>
- <?php
-}
-}
-?>
-</table>
-<?php echo $this->formButton('addtogroup', 'Add to additional
-Groups', array(
- 'onclick' => 'self.location="/dev/person/request/"',
- 'class' => 'addbutton'));
-?>
-<br /><br /><br /><br /><br /> \ No newline at end of file