Controller Generator

This generator helps you to quickly generate a new controller class, one or several controller actions and their corresponding views.

beginWidget('CCodeForm', array('model'=>$model)); ?>
labelEx($model,'controller'); ?> textField($model,'controller',array('size'=>65)); ?>
Controller ID is case-sensitive. Below are some examples:
error($model,'controller'); ?>
labelEx($model,'baseClass'); ?> textField($model,'baseClass',array('size'=>65)); ?>
This is the class that the new controller class will extend from. Please make sure the class exists and can be autoloaded.
error($model,'baseClass'); ?>
labelEx($model,'actions'); ?> textField($model,'actions',array('size'=>65)); ?>
Action IDs are case-insensitive. Separate multiple action IDs with commas or spaces.
error($model,'actions'); ?>
endWidget(); ?>