PHP code example of melisplatform / melis-cms-twig

1. Go to this page and download the library: Download melisplatform/melis-cms-twig 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/ */

    

melisplatform / melis-cms-twig example snippets


    // inside module.config.php
    return [
        'view_manager' => [
          'template_map' => [
              'MyDemoSiteName/defaultTwigLayout' => __DIR__ . '/../view/layout/defaultLayout.twig',
          ]
        ]
    ];
    

   return [
       ...
       'MelisCmsTwig',
       ...
   ];
   

   return new YourPluginHelper($serviceManager, $var1, $var2);
   

   ...
   'view_helpers' => [
       'factories' => [
           'YourPlugin' => 'MelisYourModule\View\Helper\Factory\YourPluginHelperFactory',
       ],
   ],
   'view_manager' => [...],
   ...