FuelPHPでビューにHTMLデータをそのまま渡したい時のメモ
■コントローラー側の設定
$this->template->content = \View::forge('index', $data); $this->template->content->set_safe('html_data', $data['html_data']);
$this->template->contentでいつも通りVIEWのコンテンツを設定したのちにset_safeで生データ渡しの値をセットする。