opencart オープン ソース e コマース Web サイトを使用しています。私が抱えている主な問題は、ブレッドクラムを各 .tpl ファイル内に含める単一のファイルに分割しようとするときです。これは機能しませんが、基本的な PHP インクルード メソッドを使用してみました。
ジェイの答えへの返信で:
個別のブレッドクラム テンプレート ファイルをレンダリングする新しいブレッドクラム コントローラーを作成しました。
<?php
class ControllerCommonBreadcrumb extends Controller {
public function index() {
if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/common/breadcrumbs.tpl')) {
$this->template = $this->config->get('config_template') . '/template/common/breadcrumbs.tpl';
} else {
$this->template = 'default/template/common/breadcrumbs.tpl';
}
$this->render();
}
}
?>
これによりエラーが発生しますが:
Notice: Undefined variable: breadcrumbs