| 89 | | $templateFiles = sfFinder::type('file')->name('*.php')->relative()->in($themeDir.'/templates'); |
|---|
| 90 | | $configFiles = sfFinder::type('file')->name('*.yml')->relative()->in($themeDir.'/config'); |
|---|
| | 89 | |
|---|
| | 90 | $templateFiles = array_merge( |
|---|
| | 91 | sfFinder::type('file')->name('*.php')->relative()->in(sfLoader::getGeneratorTemplate($this->getGeneratorClass(), 'default', '').'/templates'), |
|---|
| | 92 | sfFinder::type('file')->name('*.php')->relative()->in($themeDir.'/templates') |
|---|
| | 93 | ); |
|---|
| | 94 | |
|---|
| | 95 | $configFiles = array_merge( |
|---|
| | 96 | sfFinder::type('file')->name('*.yml')->relative()->in(sfLoader::getGeneratorTemplate($this->getGeneratorClass(), 'default', '').'/config'), |
|---|
| | 97 | sfFinder::type('file')->name('*.yml')->relative()->in($themeDir.'/config') |
|---|
| | 98 | ); |
|---|