myPHPView で適応されるテンプレートファイル名を取得する

view classの中で

$this->moduleName $this->actionName

だとモジュール名とアクション名しかとれず
アクション内でsetTemplateしてる場合に対応できない。
でも

sfConfig::get('symfony.view.'.$this->moduleName.'_'.$this->actionName.'_template', $this->actionName)

ってやってあげるとspecial/agreement/indexのように
いま適応するテンプレートファイルがどれかというのが返ってくる。