无法得到糖来注意到我的模块入口点


Can not get sugar to notice my entrypoint of module

我正在尝试手动安装模块。试图学习和理解系统。它有点工作,因为我创建了这个目录

/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');
    }
}

当我输入时,我能够看到单词测试

index.php?module=Wowproducts&action=index

我看到了

但是它没有检测到我的入口点文件

哇产品.php

Wowproducts.php是你的 Bean 文件,而不是入口点文件。仅当您在代码中的某处实例化 Wowproducts 类时,才会调用此类。