21 lines
685 B
PHP
Executable file
21 lines
685 B
PHP
Executable file
<div class="pages form">
|
|
<?php echo $form->create('Page');?>
|
|
<fieldset>
|
|
<legend><?php __('Edit Page');?></legend>
|
|
<?php
|
|
echo $form->input('id');
|
|
echo $form->input('page_number');
|
|
echo $form->input('contentPage');
|
|
echo $form->input('content');
|
|
echo $form->input('document_id');
|
|
?>
|
|
</fieldset>
|
|
<?php echo $form->end('Submit');?>
|
|
</div>
|
|
<div class="actions">
|
|
<ul>
|
|
<li><?php echo $html->link(__('Delete', true), array('action' => 'delete', $form->value('Page.id')), null, sprintf(__('Are you sure you want to delete # %s?', true), $form->value('Page.id'))); ?></li>
|
|
<li><?php echo $html->link(__('List Pages', true), array('action' => 'index'));?></li>
|
|
</ul>
|
|
</div>
|