1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

October CMS プラグイン実装テク:コンポーネントから他のコンポーネントを組み込む

Last updated at Posted at 2018-12-08

コンポーネントから他のコンポーネントを組み込む方法は公式ドキュメントで触れられていますが、詳細が書かれていない上に、メソッドを実装しているのがどこかわからないので引数がわからなかったのでメモ。

他のコンポーネントをロードする方法

下記のようにComponentBase::addComponent()でロードすることができる。

<?php namespace Pikanji\MyPlugin\Components;

use Cms\Classes\ComponentBase;

class MyComponent extends ComponentBase
{
    public function init()
    {
        $properties = [
            "prop1" => "hoge",
            "prop2" => "fuga",
        ];
        $cmpAnotherComponent = $this->addComponent(
                'Pikanji\MyPlugin\Components\AnotherComponent',
                'anotherComponent',
                $properties
            );
    }
}

詳細

いつそのコンポーネントが必要になるかにもよるが、とりあえずinit()でロードすれば、実際にページやコンポーネントのロジックが実行される前にロードしておけるので安全。

ComponentBase::addComponent()の詳細は下記の通り

  • 第一引数:コンポーネントのクラス名
  • 第二引数:任意のコンポーネント名
  • 第三引数:コンポーネントのプロパティ
  • 返り値:コンポーネントのインスタンス

蛇足

ComponentBase::addComponent()の実装は、\Cms\Classes\Controller::addComponent()にある。

ComponentBaseクラスでは実装されていないが、存在しないメソッドが呼び出された時にComponentBase::__call()が実行され、この中でControllerの同名のメソッドが呼び出される仕組みになっている。

おまけ

ロード済みのコンポーネントのインスタンスを取得するメソッドもあるので参考までに。

$cmpAnotherComponent = $this->findComponentByName('AnotherComponent');
1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?