miniMVC/assets/config/config.php

76 lines
1.9 KiB
PHP
Raw Normal View History

2012-01-13 11:58:06 -05:00
<?php
2012-04-27 16:28:25 -04:00
/**
* MiniMVC
*
* Convention-based micro-framework for PHP
*
* @package miniMVC
* @author Timothy J. Warren
* @copyright Copyright (c) 2011 - 2012
2012-05-23 12:01:13 -04:00
* @link https://github.com/aviat4ion/miniMVC
2012-07-12 10:23:55 -04:00
* @license http://philsturgeon.co.uk/code/dbad-license
2012-04-27 16:28:25 -04:00
*/
// --------------------------------------------------------------------------
/**
* Asset management configuration file
*
* @package miniMVC
* @subpackage Assets
*/
2012-01-13 11:58:06 -05:00
/*
|--------------------------------------------------------------------------
| Document Root
|--------------------------------------------------------------------------
|
2012-07-12 10:23:55 -04:00
| The folder where the index of the website exists. In most situations,
| this will not need to be changed.
2012-01-13 11:58:06 -05:00
|
| If the website is in a folder off of the domain name, like:
2012-07-12 10:23:55 -04:00
| http://example.com/website/
2012-01-13 11:58:06 -05:00
| you will need to add that folder to the document root.
|
*/
$document_root = './';
/*
|--------------------------------------------------------------------------
| CSS Folder
|--------------------------------------------------------------------------
|
| The folder where css files exist, in relation to the document root
|
*/
$css_root = $document_root. 'css/';
/*
|--------------------------------------------------------------------------
| Path from
|--------------------------------------------------------------------------
|
| Path fragment to rewrite in css files
|
*/
$path_from = '';
/*
|--------------------------------------------------------------------------
| Path to
|--------------------------------------------------------------------------
|
| The path fragment replacement for the css files
|
*/
$path_to = '';
/*
|--------------------------------------------------------------------------
| JS Folder
|--------------------------------------------------------------------------
|
| The folder where javascript files exist, in relation to the document root
|
*/
$js_root = $document_root. '/js/';