我在看这本书 OpenCart Theme and Module development
第3章中指出:
例如,您可以参考目录/控制器/帐户/帐户。php。你 将在其中找到以下代码:
if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/account/account.tpl')) { $this->template = $this->config->get('config_template') . '/template/account/account.tpl'; } else { $this->template = 'default/template/account/account.tpl'; }
但是,在检查目录/控制器/帐户/帐户时,不可能找到此代码摘录。php。
OpenCart 2.3中的这张支票在哪里?
OpeCart 2.3中的加载视图:
$this->response->setOutput($this->load->view('account/account', $data));
您可能需要检查这些文件:
system\library\response.php system\engine\loader.php system\library\template.php