我使用./yiic webapp /path/to/name
创建项目,但我不需要创建一些文件。
实际值:
assets css images index.php index-test.php protected themes
预期:
index.php protected
我应该更改的模板在哪里。
答案 0 :(得分:3)
如果您希望真正改变它,您应该扩展(或修改)作为框架一部分的类WebAppCommand。它可以在
中找到Yii
-> Framework
->cli
-> commands
->WebAppCommand.php
我建议您编写一个扩展WebAppCommand
类的自定义类,而不是修改现有代码,只需在调用WebAppCommand
的run方法的单独方法中删除目录,并添加其他行来删除不必要的目录
也许是这样的......
<?php
class MyCustomWebAppCommand extends WebAppCommand {
private $_rootPath; // Need to redefine and compute this as thevariable is defined as private in the parent class and better not touch core classes;
public function run($args){
parent::run($args);
$path=strtr($args[0],'/\\',DIRECTORY_SEPARATOR);
if(strpos($path,DIRECTORY_SEPARATOR)===false)
$path='.'.DIRECTORY_SEPARATOR.$path;
if(basename($path)=='..')
$path.=DIRECTORY_SEPARATOR.'.';
$dir=rtrim(realpath(dirname($path)),'\\/');
if($dir===false || !is_dir($dir))
$this->usageError("The directory '$path' is not valid. Please make sure the parent directory exists.");
if(basename($path)==='.')
$this->_rootPath=$path=$dir;
else
$this->_rootPath=$path=$dir.DIRECTORY_SEPARATOR.basename($path);
$this->deleteDir($this->_rootPath.DIRECTORY_SEPARATOR."assets");
$this->deleteDir($this->_rootPath.DIRECTORY_SEPARATOR."themes");
$this->deleteDir($this->_rootPath.DIRECTORY_SEPARATOR."images");
$this->deleteDir($this->_rootPath.DIRECTORY_SEPARATOR."css");
unset($this->_rootPath.DIRECTORY_SEPARATOR."index-test.php");
}
public static function deleteDir($dirPath) {
if (! is_dir($dirPath)) {
throw new InvalidArgumentException("$dirPath must be a directory");
}
if (substr($dirPath, strlen($dirPath) - 1, 1) != '/') {
$dirPath .= '/';
}
$files = glob($dirPath . '*', GLOB_MARK);
foreach ($files as $file) {
if (is_dir($file)) {
self::deleteDir($file);
} else {
unlink($file);
}
}
rmdir($dirPath);
}
}
最后调用MyCustomWebApp而不是调用WebApp。
P.S。我通常建议不来扩展/修改核心类而不知道你在做什么,它会在你不会预料到的地方打破很多东西,升级变得非常困难。在您的情况下更简单的是手动删除文件。