2 <div class="box menubox">
4 <a href="#" id="toggle-admin-actions">Actions</a>
7 <div class="block" id="admin-actions">
8 <h5><?php echo __('Identifiers', true); ?></h5>
10 <li><?php echo $this->Html->link(sprintf(__('List %s', true), __('Identifiers', true)), array('action' => 'index'));?></li> </ul>
14 <li><?php echo $this->Html->link(sprintf(__('List %s', true), __('Languages', true)), array('controller' => 'languages', 'action' => 'index')); ?> </li>
19 <li><?php echo $this->Html->link(sprintf(__('List %s', true), __('Translations', true)), array('controller' => 'translations', 'action' => 'index')); ?> </li>
20 <li><?php echo $this->Html->link(sprintf(__('New %s', true), __('Translation', true)), array('controller' => 'translations', 'action' => 'add')); ?> </li>
23 <h5>File Identifiers</h5>
25 <li><?php echo $this->Html->link(sprintf(__('List %s', true), __('File Identifiers', true)), array('controller' => 'file_identifiers', 'action' => 'index')); ?> </li>
31 <?php echo $this->element('neighbours'); ?></div>
34 <h2 id="page-heading"><?php printf(__('Edit %s', true), __('Identifier', true)); ?></h2>
36 <div class="identifiers form">
37 <?php echo $this->Form->create('Identifier');?>
39 <legend><?php printf(__('Identifier # %s', true), $this->Form->value('Identifier.id')); ?></legend>
41 echo $this->Form->input('id');
42 echo $this->Form->input('language_id');
43 echo $this->Form->input('translation_index');
44 echo $this->Form->input('identifier');
45 echo $this->Form->input('arguments');
46 echo $this->Form->input('reference_string');
47 echo $this->Form->input('translated');
50 <?php echo $this->Form->end(__('Submit', true));?>
54 <div class="clear"></div>