私は symfony 1.4.8 とsfBBCodeParserPluginを使用 していますが、部分的に問題があります。
私のインデックス成功
include_partial('post/list', array('voice_posts' => $voice_posts)) ?>
_list.php で
echo $bb_parser->getRawValue()->qparse($voice_post->getDescription());
そして、私はエラーがあります
Notice: 未定義の変数: bb_parser in...
action.class に追加した readme によると
public function executeIndex(sfWebRequest $request)
{
....
$this->bb_parser = new sfBBCodeParser();
}
ShowSuccess では部分的に使用せず、すべて正常に動作します。ShowSuccess.php
echo $bb_parser->getRawValue()->qparse($voice_post->getDescription())
アクション.クラス
public function executeShow(sfWebRequest $request)
{
$this->bb_parser = new sfBBCodeParser();
...
}
ps 下手な英語でごめんなさい