Файл: protected/modules/install/InstallModule.php
Строк: 28
<?php
/*
* Класс модуля установки
*/
class InstallModule extends CWebModule
{
public function init()
{
// this method is called when the module is being created
// you may place code here to customize the module or the application
// import the module-level models and components
$this->setImport(array(
'install.models.*',
'install.components.*',
'application.components.*'
));
}
public function getVersion ()
{
return '1.0 r3';
}
public function getName ()
{
return 'Install Module by Replikon';
}
}