PHP code example of petebrowne / slim-layout-view

1. Go to this page and download the library: Download petebrowne/slim-layout-view 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/ */

    

petebrowne / slim-layout-view example snippets

 bash
$ php composer.phar install
 php
$app = new \Slim\Slim(array(
  'view' => '\Slim\LayoutView',
  'layout' => 'layouts/main.php'
));
 html+php
<html>
  <head></head>
  <body>
     echo $yield 
 php
$app->get('/', function() use ($app) {
  $app->render('index.php');
});
 php
// Use a different layout for this route:
$app->get('/', function() use ($app) {
  $app->render('index.php', array('layout' => 'custom_layout.php'));
});

// Skip the layout for this route:
$app->get('/index.xml', function() use ($app) {
  $app->render('xml.php', array('layout' => false));
});