LoginSignup
2
2

More than 5 years have passed since last update.

EC-CUBE4 カスタマイズ開発 Plugin

Last updated at Posted at 2018-10-24

プラグインの雛形は以下コマンドで生成。

bin/console eccube:plugin:generate
bin/console eccube:plugin:install --code=プラグインコード
bin/console eccube:plugin:enable --code=プラグインコード

eccube:plugin:generate 実行結果のサンプル

EC-CUBE Plugin Generator Interactive Wizard
===========================================

 name [EC-CUBE Sample Plugin]:
 > プラグイン名

 code [Sample]:
 > プラグインコード

 ver [1.0.0]:
 > 1.0.0

なお、プラグインの最小構成は以下の通りです。

app/Plugin/プラグインコード/composer.json
{
  "name": "ec-cube/プラグインコード",
  "version": "1.0.0",
  "description": "プラグイン名",
  "type": "eccube-plugin",
  "require": {
    "ec-cube/plugin-installer": "~0.0.6"
  },
  "extra": {
    "code": "プラグインコード"
  }
}

公式のプラグインサンプル

サンプルプラグイン
商品レビュープラグイン

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2