Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
 
Florian Eisenmenger 41ccc32b5d checkin il y a 2 ans
..
Test/Unit checkin il y a 2 ans
ComponentFile.php checkin il y a 2 ans
ComponentRegistrar.php checkin il y a 2 ans
ComponentRegistrarInterface.php checkin il y a 2 ans
DirSearch.php checkin il y a 2 ans
README.md checkin il y a 2 ans

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