6.插件最佳实践>>>Plugin Best Practices

  • 上次创建时间 Feb 20, 2025
  • 33
0 0

在开发插件时请遵循以下最佳实践:
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:
  • <html>
        <head>
                <title>403 Forbidden</title>
        </head>
        <body>
            <p>Directory access is forbidden.</p>
        </body>
    </html>
意见: 33

最近的文章

  • 添加自定义字段>>>Add custom fields
    26
  • 设置通知>>>Set up notifications
    0
  • 更改应用主题>>>Change the app theme
    27
  • 自定义左侧菜单>>>Customize the left menu
    26
  • 自定义仪表板>>>Customize dashboards
    23

热门文章

  • CRM插件开发说明文档
    1.PASS CRM插件介绍>>>Plugin Introduction
    68
  • CRM插件开发说明文档
    3.插件中常见的工作流程>>>Common workflow...
    37
  • CRM插件开发说明文档
    6.插件最佳实践>>>Plugin Best Practices
    33
  • 更改应用主题>>>Change the app theme
    27
  • 添加自定义字段>>>Add custom fields
    26