PHP Classes

File: app/config/layout.php

Recommend this page to a friend!
  Classes of Dimitri Sitchet   dFramework   app/config/layout.php   Download  
File: app/config/layout.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: dFramework
Framework to build PHP applications
Author: By
Last change: Toolbar completement Ok
Date: 2 years ago
Size: 1,019 bytes
 

Contents

Class file image Download
<?php
/**
 * dFramework
 *
 * The simplest PHP framework for beginners
 * Copyright (c) 2019 - 2021, Dimtrov Lab's
 * This content is released under the Mozilla Public License 2 (MPL-2.0)
 *
 * @package dFramework
 * @author Dimitri Sitchet Tomkeu <dev.dst@gmail.com>
 * @copyright Copyright (c) 2019 - 2021, Dimtrov Lab's. (https://dimtrov.hebfree.org)
 * @copyright Copyright (c) 2019 - 2021, Dimitri Sitchet Tomkeu. (https://www.facebook.com/dimtrovich)
 * @license https://opensource.org/licenses/MPL-2.0 MPL-2.0 License
 * @homepage https://dimtrov.hebfree.org/works/dframework
 * @version 3.3.0
 */


$layout['default'] = [
   
// fichiers de style des plugins
   
'lib_styles' => [
       
    ],
   
// fichiers de script des plugins
   
'lib_scripts' => [
    ],
   
// fichiers de style de l'application
   
'styles' => [
    ],
   
// fichiers de script de l'application
   
'scripts' => [
    ],
];



/**
 * DON'T TOUCH THIS LINE. IT'S USING BY CONFIG CLASS
 */
return compact('layout');