PHP Classes

File: View/Groups/admin_add.ctp

Recommend this page to a friend!
  Classes of Andraž   pingvincek   View/Groups/admin_add.ctp   Download  
File: View/Groups/admin_add.ctp
Role: Example script
Content type: text/plain
Description: Example script
Class: pingvincek
Manage a site for organizing dates between people
Author: By
Last change:
Date: 6 years ago
Size: 590 bytes
 

Contents

Class file image Download
<div class="groups form">
<?php echo $this->Form->create('Group');?>
<fieldset>
         <legend><?php echo __('Add Group');?></legend>
    <?php
       
echo $this->Form->input('name');
   
?>
</fieldset>
<?php echo $this->Form->end('Submit');?>
</div>
<div class="actions">
    <ul>
        <li><?php echo $this->Html->link(__('List Groups'), array('action'=>'index'));?></li>
        <li><?php echo $this->Html->link(__('List Users'), array('controller'=> 'users', 'action'=>'index')); ?> </li>
        <li><?php echo $this->Html->link(__('New User'), array('controller'=> 'users', 'action'=>'add')); ?> </li>
    </ul>
</div>