在开发插件时请遵循以下最佳实践: Please follow this best practices while developing your plugin:
总是在函数名称、类名称和数据库表上添加前缀。 Always add a prefix on function names, class names and database tables.
不要在所有地方加载插件资源(如 css/js)。只在需要的地方加载。 Don't load plugin assets (like css/js) on all places. Load it only where it needed.
不要在设置表中插入任何内容以用于插件目的。创建自己的表来存储您自己的设置。但您始终可以获取设置表的数据。 Don't insert anything in settings table for your plugin purposes. Create your own table to store settings for your own. But you can get data of settings table always.
为了防止显示目录列表,请在插件的所有子文件夹中添加一个 index.html 文件。您可以使用以下代码: To prevent showing directory listing, add an index.html file on all sub folders of your plugin. You can use this code: