У меня быстрый вопрос, касающийся создания абсолютных URL-адресов в рамках задачи Symfony.
В основном у меня есть следующее:
/**
* This function returns the link to a route
*
* @param $context context from which to create the config from
* @param $routingText this contains the text to be routed
* @param $object if we are generating an object route we need to pass the object
* @param boolean $absolute - whether to generate an absolute path
* @return string
*/
public static function getUrlFromContext($routingText, $object = null, $application = null, $debug = false,
$absolute = false, $htmlSuffix=true)
{
$currentApplication = sfConfig::get('sf_app');
$currentEnvironment = sfConfig::get('sf_environment');
$context = sfContext::getInstance();
$switchedContext = false;
if (!is_null($application) && $context->getConfiguration()->getApplication() != $application)
{
$configuration = ProjectConfiguration::getApplicationConfiguration($application, $currentEnvironment,
$debug);
$routing = sfContext::createInstance($configuration)->getRouting();
$switchedContext = true;
}
else
{
$routing = $context->getRouting();
}
if (is_object($object))
{
$route = $routing->generate($routingText, $object, $absolute);
}
else
{
$route = $routing->generate($routingText, null, $absolute);
}
if ($switchedContext)
{
sfContext::switchTo($currentApplication);
}
if (strcasecmp($application, 'frontend') == 0 && strcasecmp($currentEnvironment, 'prod') == 0)
{
$route = preg_replace("!/{$currentApplication}(_{$currentEnvironment})?\.php!", $application, $route);
}
else
{
$route = preg_replace("/$currentApplication/", $application, $route);
}
return $route;
}
Это позволяет мне создавать URL для любого приложения, просто переключая контекст. Большая проблема, с которой я сталкиваюсь, заключается в создании абсолютных URL-адресов в задаче Symfony.
При создании маршрута в задаче я получаю следующее:
Http: //./symfony/symfony/omg-news/omg-news-channel/test002.html
Я предполагаю, что Symfony пытается угадать доменное имя от реферера, которого при использовании задач Symfony не существует.
URL-адрес должен выглядеть следующим образом:
http://trunk.dev/frontend_dev.php/omg-news/omg-news-channel/test002.html
Кто-нибудь смог создать маршрут, который представляет абсолютный URL из задачи Symfony? Если да, то сталкивались ли вы с этой проблемой, как вам удалось ее преодолеть?