codeages/plugin-bundle

Symfony PluginBundle

Installs: 4 313

Dependents: 0

Suggesters: 0

Security: 0

Stars: 6

Watchers: 2

Forks: 9

Open Issues: 3

Type:symfony-bundle

v0.2.3 2024-04-10 06:11 UTC

README

Build Status

README

编写一个插件

目录结构

如果您的插件名称为Demo那么目录结构为:

plugins/
  DemoPlugin/
    Biz/
      Dao/
      Service/
    Controller/
    Migrations/
    Resources/
    Scripts/
      database.sql
      InstallScript.php
    DemoPlugin.php
    plugin.json

插件的源信息

即插件目录下的plugin.json

{
    "code": "Demo",
    "name": "演示插件",
    "description": "这是一个演示插件",
    "author": "EduSoho官方",
    "version": "1.0.0",
    "support_version": "7.2.0"
}

插件的引导文件

即插件目录下的DemoPlugin.php

<?php
namespace DemoPlugin;

use Codeages\PluginBundle\System\PluginBase;

class DemoPlugin extends PluginBase
{

}

DemoPlugin类必须继承自Codeages\PluginBundle\System\PluginBase类。

插件的注册/注销

** 注册 **

app/console plugin:register Demo

** 注销 **

app/console plugin:remove Demo