Файл: silawar.ru/protected/gii/Migrate/templates/default/migrate.php
Строк: 50
<?php echo '<?php'; ?>
class <?php echo $this->_migrateName; ?> extends CDbMigration
{
public function up()
{
$this->execute("<?php echo $this->code; ?>");
<?php if($this->clearCache):?>
if(Yii::app()->hasComponent('cache'))
{
Yii::app()->getComponent('cache')->flush();
echo "Cache flusedn";
}
<?php endif;?>
<?php if($this->clearAssets): ?>
$this->clearAssets();
<?php endif; ?>
}
<?php if($this->clearAssets): ?>
private function clearAssets()
{
$path = Yii::app()->getComponent('assetManager')->getBasePath();
$this->clearDir($path);
echo "Assets clearn";
}
private function clearDir($folder, $main=true)
{
if(is_dir($folder))
{
$handle = opendir($folder);
while($subfile = readdir($handle))
{
if($subfile == '.' || $subfile == '..')
continue;
if(is_file($subfile))
unlink("{$folder}/{$subfile}");
else
$this->clearDir("{$folder}/{$subfile}", false);
}
closedir($handle);
if(!$main)
rmdir($folder);
}
else
unlink($folder);
}
<?php endif; ?>
public function down()
{
echo "<?php echo $this->_migrateName; ?> does not support migration down.n";
return false;
$this->execute("");
}
/*
// Use safeUp/safeDown to do migration with transaction
public function safeUp()
{
}
public function safeDown()
{
}
*/
}