Skip to content

Commit

Permalink
[FrameworkBundle] Fix precedence of xdebug.file_link_format
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas-grekas committed Aug 14, 2015
1 parent d6d93dd commit adb5327
Showing 1 changed file with 9 additions and 7 deletions.
Expand Up @@ -356,14 +356,16 @@ private function registerTemplatingConfiguration(array $config, $ide, ContainerB
$loader->load('templating.xml');
$loader->load('templating_php.xml');

$links = array(
'textmate' => 'txmt://open?url=file://%%f&line=%%l',
'macvim' => 'mvim://open?url=file://%%f&line=%%l',
'emacs' => 'emacs://open?url=file://%%f&line=%%l',
'sublime' => 'subl://open?url=file://%%f&line=%%l',
);
if (!$container->hasParameter('templating.helper.code.file_link_format')) {
$links = array(
'textmate' => 'txmt://open?url=file://%%f&line=%%l',
'macvim' => 'mvim://open?url=file://%%f&line=%%l',
'emacs' => 'emacs://open?url=file://%%f&line=%%l',
'sublime' => 'subl://open?url=file://%%f&line=%%l',
);

$container->setParameter('templating.helper.code.file_link_format', isset($links[$ide]) ? $links[$ide] : $ide);
$container->setParameter('templating.helper.code.file_link_format', ini_get('xdebug.file_link_format') ?: get_cfg_var('xdebug.file_link_format') ?: (isset($links[$ide]) ? $links[$ide] : $ide));
}
$container->setParameter('templating.helper.form.resources', $config['form']['resources']);
$container->setParameter('fragment.renderer.hinclude.global_template', $config['hinclude_default_template']);

Expand Down

0 comments on commit adb5327

Please sign in to comment.