How to call link_to from model 

http://www.symfony-project.org/forum/index.php?t=msg&th=8224

> how I can call the link_to() function from a class within my model?

You can also load template helpers from scripts outside the view, like inside actions, models or batch scripts.

Below, you see the loading of the Url helper, which you need to create links with link_to().

sfLoader::loadHelpers('Url');
$sUrl = link_to('myLink', 'module/action');

snowkrash

How to call link_to from model 

First, you have to load the helper -

sfLoader::loadHelpers('Link');

You should then be able to use it as normal.

documented on: 18 August 2007, bluesman