mirror of
https://github.com/yiisoft/yii.git
synced 2026-03-03 14:54:04 +01:00
12 lines
277 B
PHP
12 lines
277 B
PHP
<?php echo "<?php\n"; ?>
|
|
|
|
class <?php echo $moduleClass; ?> extends CWebModule
|
|
{
|
|
public function init($config)
|
|
{
|
|
parent::init($config);
|
|
// this method is called when the module is being created
|
|
// you may place code here to customize the module or the application
|
|
}
|
|
}
|