最近几天正在研究插件开发,想要在个人信息页新增,效果如图所示:
但是在开发过程中发现,文件的命名好像会影响插件,比如在 my_common_my_thread_after.htm新增一个菜单,代码如下:
<a href="<?php echo url('my-hello');?>" class="list-group-item list-group-item-action" data-active="my-hello">hello测试</a>
my_end.php中新增:
elseif ($action == 'hello') {
if($method == 'GET'){
include _include(APP_PATH.'plugin/myplugin/view/my_hello.htm');
}
}
这个url必须以my-开头吗,并且htm文件必须命名为my_hello.htm,当我不使用my-开头时,我发现页面就会出现错误
并且my_end.php中必须是hello,如果是my-hello,则也会达不到我想要的结果
论坛在不同的位置开发插件时,对于文件的命名以及URL的命名是否有具体的要求?
感谢各位大佬指导PHP新手