mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-26 22:09:21 +00:00
27 lines
831 B
PHP
27 lines
831 B
PHP
|
<?php
|
||
|
/**
|
||
|
* PHP dev config for the website
|
||
|
*
|
||
|
* @author Pierre HUBERT
|
||
|
*/
|
||
|
|
||
|
//Path to assets
|
||
|
$config['pathAssets'] = "assets/";
|
||
|
|
||
|
//CSS files to include
|
||
|
$config['CSSfiles'] = array(
|
||
|
"%PATH_ASSETS%adminLTE/bootstrap/css/bootstrap.min.css",
|
||
|
"%PATH_ASSETS%adminLTE/plugins/font-awesome/css/font-awesome.min.css",
|
||
|
"%PATH_ASSETS%adminLTE/plugins/ionicons/css/ionicons.min.css",
|
||
|
"%PATH_ASSETS%adminLTE/dist/css/AdminLTE.min.css",
|
||
|
"%PATH_ASSETS%adminLTE/dist/css/skins/_all-skins.min.css",
|
||
|
);
|
||
|
|
||
|
//JS files to include (at the end of the page)
|
||
|
$config['JSfiles'] = array(
|
||
|
"%PATH_ASSETS%adminLTE/plugins/jQuery/jquery-2.2.3.min.js",
|
||
|
"%PATH_ASSETS%adminLTE/plugins/jquery-ui/jquery-ui.min.js",
|
||
|
"%PATH_ASSETS%js/common/api.js",
|
||
|
"%PATH_ASSETS%js/common/errors.js",
|
||
|
"%PATH_ASSETS%js/common/messages.js",
|
||
|
);
|