我正在尝试手动安装模块。试图学习和理解系统。它有点用,因为我创建了这个目录
/modules/Wowproducts/views/view.list.php
class WowproductsViewList extends ViewList
{
public function display()
{
echo 'test';
$GLOBALS['mod_strings'] = return_module_language($GLOBALS['current_language'], 'Calendar');
//require_once('modules/Calendar/index.php');
}
}
当我输入
时,我能看到单词testindex.php?module=Wowproducts&action=index
我看到了
然而,它没有检测到我的入口点文件
Wowproducts.php
答案 0 :(得分:0)
Wowproducts.php是你的bean文件,而不是入口点文件。只有在代码中的某处实例化Wowproducts类时才会调用此类。