Перед рендерингом необходимо проверить, существует ли этот шаблон, а если нет, установить шаблон по умолчанию. Это можно сделать, добавив фильтр, который проверяет это. Итак ...
Добавьте этот фильтр в папку lib /, например /lib/filters/ViewFilter.class.php
.
<!-- /lib/filters/ViewFilter.class.php -->
class ViewFilter extends sfFilter{
public function execute($filterChain){
if ($this->isFirstCall()){
//get context
$context = $this->getContext();
//get module name
$module = $context->getModuleName();
//get action name
$action = $context->getActionName();
//get template file name for this request
$templateFile = $action . "Success.mobile.php";
//set physical path of that template
$path = sfConfig::get('sf_app_module_dir').DIRECTORY_SEPARATOR.$module.DIRECTORY_SEPARATOR."templates".DIRECTORY_SEPARATOR. $templateFile;
//check if exists
if(!file_exists($path))
//if is not, set html format to render the {$action}Success.php
$context->getRequest()->setRequestFormat('html');
}
$filterChain->execute();
}
}
Затем добавьте в ваши filters.yml
<!-- /apps/frontend/config/filters.yml -->
rendering: ~
security: ~
# insert your own filters here
ViewFilter:
class: ViewFilter
cache: ~
execution: ~
и должен работать :)
Если вы не знаете, что такое фильтр и что он делает, обратитесь к Руководству по фильтрам Symfony , чтобы начать работу.