PHP code example of ezsystems / platform-ui-bundle

1. Go to this page and download the library: Download ezsystems/platform-ui-bundle 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/ */

    

ezsystems / platform-ui-bundle example snippets


  public function registerBundles()
  {
      $bundles = array(
          // enabled bundles
          // ...

          new EzSystems\PlatformUIBundle\EzSystemsPlatformUIBundle(),
          new EzSystems\PlatformUIAssetsBundle\EzSystemsPlatformUIAssetsBundle(),
          new EzSystems\RepositoryFormsBundle\EzSystemsRepositoryFormsBundle(),
      );
  }
  

php app/console assetic:dump --env=prod