選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
 
Florian Eisenmenger 41ccc32b5d checkin 2年前
..
Test/Unit checkin 2年前
ComponentFile.php checkin 2年前
ComponentRegistrar.php checkin 2年前
ComponentRegistrarInterface.php checkin 2年前
DirSearch.php checkin 2年前
README.md checkin 2年前

README.md

Component

Component library provides feature for components (modules/themes/languages/libraries) to load from any custom directory like vendor.

  • Modules should be registered using
ComponentRegistrar::register(ComponentRegistrar::MODULE, '<module name>', __DIR__);
  • Themes should be registered using
ComponentRegistrar::register(ComponentRegistrar::THEME, '<theme name>', __DIR__);
  • Languages should be registered using
ComponentRegistrar::register(ComponentRegistrar::LANGUAGE, '<language name>', __DIR__);
  • Libraries should be registered using
ComponentRegistrar::register(ComponentRegistrar::LIBRARY, '<library name>', __DIR__);