Server IP : 180.180.241.3 / Your IP : 216.73.216.127 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 : C:/AppServ/www/app/View/Members/ |
Upload File : |
<div class="members view"> <h2><?php echo __('Member'); ?></h2> <dl> <dt><?php echo __('Id'); ?></dt> <dd> <?php echo h($member['Member']['id']); ?> </dd> <dt><?php echo __('Started'); ?></dt> <dd> <?php echo h($member['Member']['started']); ?> </dd> <dt><?php echo __('Ended'); ?></dt> <dd> <?php echo h($member['Member']['ended']); ?> </dd> <dt><?php echo __('Created'); ?></dt> <dd> <?php echo h($member['Member']['created']); ?> </dd> <dt><?php echo __('Modified'); ?></dt> <dd> <?php echo h($member['Member']['modified']); ?> </dd> </dl> </div> <div class="actions"> <h3><?php echo __('Actions'); ?></h3> <ul> <li><?php echo $this->Html->link(__('Edit Member'), array('action' => 'edit', $member['Member']['id'])); ?> </li> <li><?php echo $this->Form->postLink(__('Delete Member'), array('action' => 'delete', $member['Member']['id']), null, __('Are you sure you want to delete # %s?', $member['Member']['id'])); ?> </li> <li><?php echo $this->Html->link(__('List Members'), array('action' => 'index')); ?> </li> <li><?php echo $this->Html->link(__('New Member'), array('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 People'); ?></h3> <?php if (!empty($member['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 ($member['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>