Server IP : 103.233.192.212 / Your IP : 3.15.7.241 Web Server : Apache/2 System : Linux sv1.inde.co.th 3.10.0-1160.36.2.el7.x86_64 #1 SMP Wed Jul 21 11:57:15 UTC 2021 x86_64 User : sumpatuan ( 1058) PHP Version : 5.5.38 Disable Function : symlink,shell_exec,exec,proc_close,proc_open,popen,system,dl,putenv,passthru,escapeshellarg,escapeshellcmd,pcntl_exec,proc_get_status,proc_nice,proc_terminate,pclose,ini_alter,virtual,openlog,ini_restore MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/sumpatuan/public_html/backup/framework/gii/generators/controller/views/ |
Upload File : |
<h1>Controller Generator</h1> <p>This generator helps you to quickly generate a new controller class, one or several controller actions and their corresponding views.</p> <?php $form=$this->beginWidget('CCodeForm', array('model'=>$model)); ?> <div class="row"> <?php echo $form->labelEx($model,'controller'); ?> <?php echo $form->textField($model,'controller',array('size'=>65)); ?> <div class="tooltip"> Controller ID is case-sensitive. Below are some examples: <ul> <li><code>post</code> generates <code>PostController.php</code></li> <li><code>postTag</code> generates <code>PostTagController.php</code></li> <li><code>admin/user</code> generates <code>admin/UserController.php</code>. If the application has an <code>admin</code> module enabled, it will generate <code>UserController</code> within the module instead. Make sure to write module name in the correct case if it has a camelCase name. </li> </ul> </div> <?php echo $form->error($model,'controller'); ?> </div> <div class="row sticky"> <?php echo $form->labelEx($model,'baseClass'); ?> <?php echo $form->textField($model,'baseClass',array('size'=>65)); ?> <div class="tooltip"> This is the class that the new controller class will extend from. Please make sure the class exists and can be autoloaded. </div> <?php echo $form->error($model,'baseClass'); ?> </div> <div class="row"> <?php echo $form->labelEx($model,'actions'); ?> <?php echo $form->textField($model,'actions',array('size'=>65)); ?> <div class="tooltip"> Action IDs are case-insensitive. Separate multiple action IDs with commas or spaces. </div> <?php echo $form->error($model,'actions'); ?> </div> <?php $this->endWidget(); ?>