18 lines
621 B
PHP
Executable file
18 lines
621 B
PHP
Executable file
<div class="contactCategories form">
|
|
<?php echo $form->create('ContactCategory');?>
|
|
<fieldset>
|
|
<legend><?php __('Add ContactCategory');?></legend>
|
|
<?php
|
|
echo $form->input('name');
|
|
?>
|
|
</fieldset>
|
|
<?php echo $form->end('Submit');?>
|
|
</div>
|
|
<div class="actions">
|
|
<ul>
|
|
<li><?php echo $html->link(__('List ContactCategories', true), array('action'=>'index'));?></li>
|
|
<li><?php echo $html->link(__('List Contacts', true), array('controller'=> 'contacts', 'action'=>'index')); ?> </li>
|
|
<li><?php echo $html->link(__('New Contact', true), array('controller'=> 'contacts', 'action'=>'add')); ?> </li>
|
|
</ul>
|
|
</div>
|