| 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/Activities/ |
Upload File : |
<div class="activities view">
<h2><?php echo __('Activity'); ?></h2>
<dl>
<dt><?php echo __('Id'); ?></dt>
<dd>
<?php echo h($activity['Activity']['id']); ?>
</dd>
<dt><?php echo __('Name'); ?></dt>
<dd>
<?php echo h($activity['Activity']['name']); ?>
</dd>
<dt><?php echo __('Started'); ?></dt>
<dd>
<?php echo h($activity['Activity']['started']); ?>
</dd>
<dt><?php echo __('Ended'); ?></dt>
<dd>
<?php echo h($activity['Activity']['ended']); ?>
</dd>
<dt><?php echo __('Address'); ?></dt>
<dd>
<?php echo h($activity['Activity']['address']); ?>
</dd>
<dt><?php echo __('Description'); ?></dt>
<dd>
<?php echo h($activity['Activity']['description']); ?>
</dd>
<dt><?php echo __('Expected'); ?></dt>
<dd>
<?php echo h($activity['Activity']['expected']); ?>
</dd>
<dt><?php echo __('Is Activated'); ?></dt>
<dd>
<?php echo h($activity['Activity']['is_activated']); ?>
</dd>
<dt><?php echo __('District'); ?></dt>
<dd>
<?php echo $this->Html->link($activity['District']['name'], array('controller' => 'districts', 'action' => 'view', $activity['District']['id'])); ?>
</dd>
<dt><?php echo __('Created'); ?></dt>
<dd>
<?php echo h($activity['Activity']['created']); ?>
</dd>
<dt><?php echo __('Modified'); ?></dt>
<dd>
<?php echo h($activity['Activity']['modified']); ?>
</dd>
</dl>
</div>
<div class="actions">
<h3><?php echo __('Actions'); ?></h3>
<ul>
<li><?php echo $this->Html->link(__('Edit Activity'), array('action' => 'edit', $activity['Activity']['id'])); ?> </li>
<li><?php echo $this->Form->postLink(__('Delete Activity'), array('action' => 'delete', $activity['Activity']['id']), null, __('Are you sure you want to delete # %s?', $activity['Activity']['id'])); ?> </li>
<li><?php echo $this->Html->link(__('List Activities'), array('action' => 'index')); ?> </li>
<li><?php echo $this->Html->link(__('New Activity'), array('action' => 'add')); ?> </li>
<li><?php echo $this->Html->link(__('List Districts'), array('controller' => 'districts', 'action' => 'index')); ?> </li>
<li><?php echo $this->Html->link(__('New District'), array('controller' => 'districts', '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 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>
<li><?php echo $this->Html->link(__('List Subtopics'), array('controller' => 'subtopics', 'action' => 'index')); ?> </li>
<li><?php echo $this->Html->link(__('New Subtopic'), array('controller' => 'subtopics', 'action' => 'add')); ?> </li>
<li><?php echo $this->Html->link(__('List Visitors'), array('controller' => 'visitors', 'action' => 'index')); ?> </li>
<li><?php echo $this->Html->link(__('New Visitor'), array('controller' => 'visitors', 'action' => 'add')); ?> </li>
</ul>
</div>
<div class="related">
<h3><?php echo __('Related Chiefs'); ?></h3>
<?php if (!empty($activity['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 ($activity['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 Organizations'); ?></h3>
<?php if (!empty($activity['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 ($activity['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($activity['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 ($activity['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>
<div class="related">
<h3><?php echo __('Related Subtopics'); ?></h3>
<?php if (!empty($activity['Subtopic'])): ?>
<table cellpadding = "0" cellspacing = "0">
<tr>
<th><?php echo __('Id'); ?></th>
<th><?php echo __('Topic Id'); ?></th>
<th><?php echo __('Name'); ?></th>
<th><?php echo __('Note'); ?></th>
<th><?php echo __('Is Activated'); ?></th>
<th><?php echo __('Created'); ?></th>
<th><?php echo __('Modified'); ?></th>
<th class="actions"><?php echo __('Actions'); ?></th>
</tr>
<?php foreach ($activity['Subtopic'] as $subtopic): ?>
<tr>
<td><?php echo $subtopic['id']; ?></td>
<td><?php echo $subtopic['topic_id']; ?></td>
<td><?php echo $subtopic['name']; ?></td>
<td><?php echo $subtopic['note']; ?></td>
<td><?php echo $subtopic['is_activated']; ?></td>
<td><?php echo $subtopic['created']; ?></td>
<td><?php echo $subtopic['modified']; ?></td>
<td class="actions">
<?php echo $this->Html->link(__('View'), array('controller' => 'subtopics', 'action' => 'view', $subtopic['id'])); ?>
<?php echo $this->Html->link(__('Edit'), array('controller' => 'subtopics', 'action' => 'edit', $subtopic['id'])); ?>
<?php echo $this->Form->postLink(__('Delete'), array('controller' => 'subtopics', 'action' => 'delete', $subtopic['id']), null, __('Are you sure you want to delete # %s?', $subtopic['id'])); ?>
</td>
</tr>
<?php endforeach; ?>
</table>
<?php endif; ?>
<div class="actions">
<ul>
<li><?php echo $this->Html->link(__('New Subtopic'), array('controller' => 'subtopics', 'action' => 'add')); ?> </li>
</ul>
</div>
</div>
<div class="related">
<h3><?php echo __('Related Visitors'); ?></h3>
<?php if (!empty($activity['Visitor'])): ?>
<table cellpadding = "0" cellspacing = "0">
<tr>
<th><?php echo __('Id'); ?></th>
<th><?php echo __('Name'); ?></th>
<th><?php echo __('Address'); ?></th>
<th><?php echo __('Postal Code'); ?></th>
<th><?php echo __('Telephone'); ?></th>
<th><?php echo __('Fax'); ?></th>
<th><?php echo __('Email'); ?></th>
<th><?php echo __('Is Activated'); ?></th>
<th><?php echo __('Created'); ?></th>
<th><?php echo __('Modified'); ?></th>
<th class="actions"><?php echo __('Actions'); ?></th>
</tr>
<?php foreach ($activity['Visitor'] as $visitor): ?>
<tr>
<td><?php echo $visitor['id']; ?></td>
<td><?php echo $visitor['name']; ?></td>
<td><?php echo $visitor['address']; ?></td>
<td><?php echo $visitor['postal_code']; ?></td>
<td><?php echo $visitor['telephone']; ?></td>
<td><?php echo $visitor['fax']; ?></td>
<td><?php echo $visitor['email']; ?></td>
<td><?php echo $visitor['is_activated']; ?></td>
<td><?php echo $visitor['created']; ?></td>
<td><?php echo $visitor['modified']; ?></td>
<td class="actions">
<?php echo $this->Html->link(__('View'), array('controller' => 'visitors', 'action' => 'view', $visitor['id'])); ?>
<?php echo $this->Html->link(__('Edit'), array('controller' => 'visitors', 'action' => 'edit', $visitor['id'])); ?>
<?php echo $this->Form->postLink(__('Delete'), array('controller' => 'visitors', 'action' => 'delete', $visitor['id']), null, __('Are you sure you want to delete # %s?', $visitor['id'])); ?>
</td>
</tr>
<?php endforeach; ?>
</table>
<?php endif; ?>
<div class="actions">
<ul>
<li><?php echo $this->Html->link(__('New Visitor'), array('controller' => 'visitors', 'action' => 'add')); ?> </li>
</ul>
</div>
</div>