| 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/Topics/ |
Upload File : |
<div class="topics view">
<h2><?php echo __('Topic'); ?></h2>
<dl>
<dt><?php echo __('Id'); ?></dt>
<dd>
<?php echo h($topic['Topic']['id']); ?>
</dd>
<dt><?php echo __('Name'); ?></dt>
<dd>
<?php echo h($topic['Topic']['name']); ?>
</dd>
<dt><?php echo __('Note'); ?></dt>
<dd>
<?php echo h($topic['Topic']['note']); ?>
</dd>
<dt><?php echo __('Is Activated'); ?></dt>
<dd>
<?php echo h($topic['Topic']['is_activated']); ?>
</dd>
<dt><?php echo __('Created'); ?></dt>
<dd>
<?php echo h($topic['Topic']['created']); ?>
</dd>
<dt><?php echo __('Modified'); ?></dt>
<dd>
<?php echo h($topic['Topic']['modified']); ?>
</dd>
</dl>
</div>
<div class="actions">
<h3><?php echo __('Actions'); ?></h3>
<ul>
<li><?php echo $this->Html->link(__('Edit Topic'), array('action' => 'edit', $topic['Topic']['id'])); ?> </li>
<li><?php echo $this->Form->postLink(__('Delete Topic'), array('action' => 'delete', $topic['Topic']['id']), null, __('Are you sure you want to delete # %s?', $topic['Topic']['id'])); ?> </li>
<li><?php echo $this->Html->link(__('List Topics'), array('action' => 'index')); ?> </li>
<li><?php echo $this->Html->link(__('New Topic'), array('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>
</ul>
</div>
<div class="related">
<h3><?php echo __('Related Subtopics'); ?></h3>
<?php if (!empty($topic['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 ($topic['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>