| 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/Actions/ |
Upload File : |
<div class="actions view">
<h2><?php echo __('Action'); ?></h2>
<dl>
<dt><?php echo __('Id'); ?></dt>
<dd>
<?php echo h($action['Action']['id']); ?>
</dd>
<dt><?php echo __('Name'); ?></dt>
<dd>
<?php echo h($action['Action']['name']); ?>
</dd>
<dt><?php echo __('Note'); ?></dt>
<dd>
<?php echo h($action['Action']['note']); ?>
</dd>
<dt><?php echo __('Is Activated'); ?></dt>
<dd>
<?php echo h($action['Action']['is_activated']); ?>
</dd>
<dt><?php echo __('Created'); ?></dt>
<dd>
<?php echo h($action['Action']['created']); ?>
</dd>
<dt><?php echo __('Modified'); ?></dt>
<dd>
<?php echo h($action['Action']['modified']); ?>
</dd>
</dl>
</div>
<div class="actions">
<h3><?php echo __('Actions'); ?></h3>
<ul>
<li><?php echo $this->Html->link(__('Edit Action'), array('action' => 'edit', $action['Action']['id'])); ?> </li>
<li><?php echo $this->Form->postLink(__('Delete Action'), array('action' => 'delete', $action['Action']['id']), null, __('Are you sure you want to delete # %s?', $action['Action']['id'])); ?> </li>
<li><?php echo $this->Html->link(__('List Actions'), array('action' => 'index')); ?> </li>
<li><?php echo $this->Html->link(__('New Action'), array('action' => 'add')); ?> </li>
<li><?php echo $this->Html->link(__('List Organizations'), array('controller' => 'organizations', 'action' => 'index')); ?> </li>
<li><?php echo $this->Html->link(__('New Organization'), array('controller' => 'organizations', '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 Organizations'); ?></h3>
<?php if (!empty($action['Organization'])): ?>
<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 __('Role Id'); ?></th>
<th><?php echo __('District Id'); ?></th>
<th><?php echo __('Mou Id'); ?></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 ($action['Organization'] as $organization): ?>
<tr>
<td><?php echo $organization['id']; ?></td>
<td><?php echo $organization['name']; ?></td>
<td><?php echo $organization['eng_name']; ?></td>
<td><?php echo $organization['short_name']; ?></td>
<td><?php echo $organization['eng_short_name']; ?></td>
<td><?php echo $organization['address1']; ?></td>
<td><?php echo $organization['address2']; ?></td>
<td><?php echo $organization['postal_code']; ?></td>
<td><?php echo $organization['telephone1']; ?></td>
<td><?php echo $organization['telephone2']; ?></td>
<td><?php echo $organization['telephone3']; ?></td>
<td><?php echo $organization['fax']; ?></td>
<td><?php echo $organization['email']; ?></td>
<td><?php echo $organization['url']; ?></td>
<td><?php echo $organization['founded']; ?></td>
<td><?php echo $organization['work_region']; ?></td>
<td><?php echo $organization['work_level']; ?></td>
<td><?php echo $organization['work_area']; ?></td>
<td><?php echo $organization['objective']; ?></td>
<td><?php echo $organization['publish']; ?></td>
<td><?php echo $organization['is_activated']; ?></td>
<td><?php echo $organization['role_id']; ?></td>
<td><?php echo $organization['district_id']; ?></td>
<td><?php echo $organization['mou_id']; ?></td>
<td><?php echo $organization['organization_id']; ?></td>
<td><?php echo $organization['created']; ?></td>
<td><?php echo $organization['modified']; ?></td>
<td class="actions">
<?php echo $this->Html->link(__('View'), array('controller' => 'organizations', 'action' => 'view', $organization['id'])); ?>
<?php echo $this->Html->link(__('Edit'), array('controller' => 'organizations', 'action' => 'edit', $organization['id'])); ?>
<?php echo $this->Form->postLink(__('Delete'), array('controller' => 'organizations', 'action' => 'delete', $organization['id']), null, __('Are you sure you want to delete # %s?', $organization['id'])); ?>
</td>
</tr>
<?php endforeach; ?>
</table>
<?php endif; ?>
<div class="actions">
<ul>
<li><?php echo $this->Html->link(__('New Organization'), array('controller' => 'organizations', 'action' => 'add')); ?> </li>
</ul>
</div>
</div>
<div class="related">
<h3><?php echo __('Related People'); ?></h3>
<?php if (!empty($action['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 __('Member 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 ($action['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['member_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>