| Server IP : 180.180.241.3 / Your IP : 216.73.216.35 Web Server : Microsoft-IIS/7.5 System : Windows NT NETWORK-NHRC 6.1 build 7601 (Windows Server 2008 R2 Standard Edition Service Pack 1) i586 User : IUSR ( 0) PHP Version : 5.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /AppServ/www/app/View/Positions/ |
Upload File : |
<div class="positions view">
<h2><?php echo __('Position'); ?></h2>
<dl>
<dt><?php echo __('Id'); ?></dt>
<dd>
<?php echo h($position['Position']['id']); ?>
</dd>
<dt><?php echo __('Name'); ?></dt>
<dd>
<?php echo h($position['Position']['name']); ?>
</dd>
<dt><?php echo __('Note'); ?></dt>
<dd>
<?php echo h($position['Position']['note']); ?>
</dd>
<dt><?php echo __('Is Activated'); ?></dt>
<dd>
<?php echo h($position['Position']['is_activated']); ?>
</dd>
<dt><?php echo __('Created'); ?></dt>
<dd>
<?php echo h($position['Position']['created']); ?>
</dd>
<dt><?php echo __('Modified'); ?></dt>
<dd>
<?php echo h($position['Position']['modified']); ?>
</dd>
</dl>
</div>
<div class="actions">
<h3><?php echo __('Actions'); ?></h3>
<ul>
<li><?php echo $this->Html->link(__('Edit Position'), array('action' => 'edit', $position['Position']['id'])); ?> </li>
<li><?php echo $this->Form->postLink(__('Delete Position'), array('action' => 'delete', $position['Position']['id']), null, __('Are you sure you want to delete # %s?', $position['Position']['id'])); ?> </li>
<li><?php echo $this->Html->link(__('List Positions'), array('action' => 'index')); ?> </li>
<li><?php echo $this->Html->link(__('New Position'), array('action' => 'add')); ?> </li>
<li><?php echo $this->Html->link(__('List Chiefs'), array('controller' => 'chiefs', 'action' => 'index')); ?> </li>
<li><?php echo $this->Html->link(__('New Chief'), array('controller' => 'chiefs', 'action' => 'add')); ?> </li>
<li><?php echo $this->Html->link(__('List Contacts'), array('controller' => 'contacts', 'action' => 'index')); ?> </li>
<li><?php echo $this->Html->link(__('New Contact'), array('controller' => 'contacts', 'action' => 'add')); ?> </li>
<li><?php echo $this->Html->link(__('List People'), array('controller' => 'people', 'action' => 'index')); ?> </li>
<li><?php echo $this->Html->link(__('New Person'), array('controller' => 'people', 'action' => 'add')); ?> </li>
</ul>
</div>
<div class="related">
<h3><?php echo __('Related Chiefs'); ?></h3>
<?php if (!empty($position['Chief'])): ?>
<table cellpadding = "0" cellspacing = "0">
<tr>
<th><?php echo __('Id'); ?></th>
<th><?php echo __('Name'); ?></th>
<th><?php echo __('Note'); ?></th>
<th><?php echo __('Is Activated'); ?></th>
<th><?php echo __('Position Id'); ?></th>
<th><?php echo __('Created'); ?></th>
<th><?php echo __('Modified'); ?></th>
<th class="actions"><?php echo __('Actions'); ?></th>
</tr>
<?php foreach ($position['Chief'] as $chief): ?>
<tr>
<td><?php echo $chief['id']; ?></td>
<td><?php echo $chief['name']; ?></td>
<td><?php echo $chief['note']; ?></td>
<td><?php echo $chief['is_activated']; ?></td>
<td><?php echo $chief['position_id']; ?></td>
<td><?php echo $chief['created']; ?></td>
<td><?php echo $chief['modified']; ?></td>
<td class="actions">
<?php echo $this->Html->link(__('View'), array('controller' => 'chiefs', 'action' => 'view', $chief['id'])); ?>
<?php echo $this->Html->link(__('Edit'), array('controller' => 'chiefs', 'action' => 'edit', $chief['id'])); ?>
<?php echo $this->Form->postLink(__('Delete'), array('controller' => 'chiefs', 'action' => 'delete', $chief['id']), null, __('Are you sure you want to delete # %s?', $chief['id'])); ?>
</td>
</tr>
<?php endforeach; ?>
</table>
<?php endif; ?>
<div class="actions">
<ul>
<li><?php echo $this->Html->link(__('New Chief'), array('controller' => 'chiefs', 'action' => 'add')); ?> </li>
</ul>
</div>
</div>
<div class="related">
<h3><?php echo __('Related Contacts'); ?></h3>
<?php if (!empty($position['Contact'])): ?>
<table cellpadding = "0" cellspacing = "0">
<tr>
<th><?php echo __('Id'); ?></th>
<th><?php echo __('Name'); ?></th>
<th><?php echo __('Position Id'); ?></th>
<th><?php echo __('Address'); ?></th>
<th><?php echo __('District Id'); ?></th>
<th><?php echo __('Postcode'); ?></th>
<th><?php echo __('Phone'); ?></th>
<th><?php echo __('Fax'); ?></th>
<th><?php echo __('Email'); ?></th>
<th><?php echo __('Note'); ?></th>
<th><?php echo __('Organization Id'); ?></th>
<th><?php echo __('Created'); ?></th>
<th><?php echo __('Modified'); ?></th>
<th class="actions"><?php echo __('Actions'); ?></th>
</tr>
<?php foreach ($position['Contact'] as $contact): ?>
<tr>
<td><?php echo $contact['id']; ?></td>
<td><?php echo $contact['name']; ?></td>
<td><?php echo $contact['position_id']; ?></td>
<td><?php echo $contact['address']; ?></td>
<td><?php echo $contact['district_id']; ?></td>
<td><?php echo $contact['postcode']; ?></td>
<td><?php echo $contact['phone']; ?></td>
<td><?php echo $contact['fax']; ?></td>
<td><?php echo $contact['email']; ?></td>
<td><?php echo $contact['note']; ?></td>
<td><?php echo $contact['organization_id']; ?></td>
<td><?php echo $contact['created']; ?></td>
<td><?php echo $contact['modified']; ?></td>
<td class="actions">
<?php echo $this->Html->link(__('View'), array('controller' => 'contacts', 'action' => 'view', $contact['id'])); ?>
<?php echo $this->Html->link(__('Edit'), array('controller' => 'contacts', 'action' => 'edit', $contact['id'])); ?>
<?php echo $this->Form->postLink(__('Delete'), array('controller' => 'contacts', 'action' => 'delete', $contact['id']), null, __('Are you sure you want to delete # %s?', $contact['id'])); ?>
</td>
</tr>
<?php endforeach; ?>
</table>
<?php endif; ?>
<div class="actions">
<ul>
<li><?php echo $this->Html->link(__('New Contact'), array('controller' => 'contacts', 'action' => 'add')); ?> </li>
</ul>
</div>
</div>
<div class="related">
<h3><?php echo __('Related People'); ?></h3>
<?php if (!empty($position['Person'])): ?>
<table cellpadding = "0" cellspacing = "0">
<tr>
<th><?php echo __('Id'); ?></th>
<th><?php echo __('Name'); ?></th>
<th><?php echo __('Eng Name'); ?></th>
<th><?php echo __('Short Name'); ?></th>
<th><?php echo __('Eng Short Name'); ?></th>
<th><?php echo __('Address1'); ?></th>
<th><?php echo __('Address2'); ?></th>
<th><?php echo __('Postal Code'); ?></th>
<th><?php echo __('Telephone1'); ?></th>
<th><?php echo __('Telephone2'); ?></th>
<th><?php echo __('Telephone3'); ?></th>
<th><?php echo __('Fax'); ?></th>
<th><?php echo __('Email'); ?></th>
<th><?php echo __('Url'); ?></th>
<th><?php echo __('Founded'); ?></th>
<th><?php echo __('Work Region'); ?></th>
<th><?php echo __('Work Level'); ?></th>
<th><?php echo __('Work Area'); ?></th>
<th><?php echo __('Objective'); ?></th>
<th><?php echo __('Publish'); ?></th>
<th><?php echo __('Is Activated'); ?></th>
<th><?php echo __('Organization Id'); ?></th>
<th><?php echo __('Position Id'); ?></th>
<th><?php echo __('Special Member Id'); ?></th>
<th><?php echo __('Role Id'); ?></th>
<th><?php echo __('District Id'); ?></th>
<th><?php echo __('Created'); ?></th>
<th><?php echo __('Modified'); ?></th>
<th class="actions"><?php echo __('Actions'); ?></th>
</tr>
<?php foreach ($position['Person'] as $person): ?>
<tr>
<td><?php echo $person['id']; ?></td>
<td><?php echo $person['name']; ?></td>
<td><?php echo $person['eng_name']; ?></td>
<td><?php echo $person['short_name']; ?></td>
<td><?php echo $person['eng_short_name']; ?></td>
<td><?php echo $person['address1']; ?></td>
<td><?php echo $person['address2']; ?></td>
<td><?php echo $person['postal_code']; ?></td>
<td><?php echo $person['telephone1']; ?></td>
<td><?php echo $person['telephone2']; ?></td>
<td><?php echo $person['telephone3']; ?></td>
<td><?php echo $person['fax']; ?></td>
<td><?php echo $person['email']; ?></td>
<td><?php echo $person['url']; ?></td>
<td><?php echo $person['founded']; ?></td>
<td><?php echo $person['work_region']; ?></td>
<td><?php echo $person['work_level']; ?></td>
<td><?php echo $person['work_area']; ?></td>
<td><?php echo $person['objective']; ?></td>
<td><?php echo $person['publish']; ?></td>
<td><?php echo $person['is_activated']; ?></td>
<td><?php echo $person['organization_id']; ?></td>
<td><?php echo $person['position_id']; ?></td>
<td><?php echo $person['special_member_id']; ?></td>
<td><?php echo $person['role_id']; ?></td>
<td><?php echo $person['district_id']; ?></td>
<td><?php echo $person['created']; ?></td>
<td><?php echo $person['modified']; ?></td>
<td class="actions">
<?php echo $this->Html->link(__('View'), array('controller' => 'people', 'action' => 'view', $person['id'])); ?>
<?php echo $this->Html->link(__('Edit'), array('controller' => 'people', 'action' => 'edit', $person['id'])); ?>
<?php echo $this->Form->postLink(__('Delete'), array('controller' => 'people', 'action' => 'delete', $person['id']), null, __('Are you sure you want to delete # %s?', $person['id'])); ?>
</td>
</tr>
<?php endforeach; ?>
</table>
<?php endif; ?>
<div class="actions">
<ul>
<li><?php echo $this->Html->link(__('New Person'), array('controller' => 'people', 'action' => 'add')); ?> </li>
</ul>
</div>
</div>