PHP code example of petrofcikmatus / zf-layout-change

1. Go to this page and download the library: Download petrofcikmatus/zf-layout-change 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/ */

    

petrofcikmatus / zf-layout-change example snippets




return [
    'modules' => [
        // your other modules
        
        'ZFLayoutChange', // new line
    ],
];



return [
    // your other config arrays
    
    'module_layouts' => [
        'Admin' => 'layout/admin',
    ],
];