在 Document 类中如何获取商店名称。这就是我想要做的:
public function setTitle($title) {
// Append store name if small title
if(strlen($title) < 30){
$this->title = $title . ' - ' . $this->config->get("store_name");
} else {
$this->title = $title;
}
}
虽然$this
是指文档类。如何获取配置?
使用最新版本的opencart 1.5.2.1
当您检查index.php
文件以查看配置的加载方式时
// Registry
$registry = new Registry();
// Loader
$loader = new Loader($registry);
$registry->set('load', $loader);
// Config
$config = new Config();
$registry->set('config', $config);