アプリケーション全体でそのオブジェクトを使用できるように、Zend_Filter_StripTags のオブジェクトを開始する関数をブートストラップで作成しようとしています。
protected function _initHtmlFilter() {
$allowedTags = array('p','b','br','strong'); // Allowed tags
$allowedAttributes = array('href'); // Allowed attributes
$stripTags = new Zend_Filter_StripTags($allowedTags,$allowedAttributes);
}
しかし、どのコントローラーでもこのオブジェクト ($stripTags) を使用できません。