25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
 
Florian Eisenmenger 41ccc32b5d checkin 2 yıl önce
..
Test/Unit checkin 2 yıl önce
ComponentFile.php checkin 2 yıl önce
ComponentRegistrar.php checkin 2 yıl önce
ComponentRegistrarInterface.php checkin 2 yıl önce
DirSearch.php checkin 2 yıl önce
README.md checkin 2 yıl önce

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__);