a1684257
Administrator
first commit
|
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
/**
* This is the template for generating a controller class file for CRUD feature.
* The following variables are available in this template:
* - $this: the CrudCode object
*/
?>
<?php echo "<?php\n"; ?>
class <?php echo $this->controllerClass; ?> extends <?php echo $this->baseControllerClass . "\n"; ?>
{
public $modelName = '<?php echo $this->modelClass; ?>';
}
|