PHP code example of proklung / bitrix-containerable-boilerplate

1. Go to this page and download the library: Download proklung/bitrix-containerable-boilerplate library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

proklung / bitrix-containerable-boilerplate example snippets


return [
    Prokl\MyBundle\MyBundle::class => ['all' => true],
]

 $bundlesConfigFile = __DIR_. '../../config/bundles.php'
 
 //...
 // Важно - перед загрузкой сервисов!
  $loaderBundles = new LoaderBundles(
      static::$container,
      $this->environment
 );

 $loaderBundles->fromFile($bundlesConfigFile);

 use Bitrix\Main\Config\Configuration;
 //...
 $this->config = Configuration::getInstance()->get('my.module') ?? ['my.module' => []];
 $this->bundles = $this->config['bundles'] ?? [];
 
 //...
 // Важно - перед загрузкой сервисов!
  $loaderBundles = new LoaderBundles(
      static::$container,
      $this->environment
 );

 $loaderBundles->fromArray($this->bundles);