A super easy PHP Framework for web development!
https://github.com/exacti/phacil-framework
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
412 B
21 lines
412 B
<?php
|
|
|
|
$baseDir = str_replace('public_html', '', __DIR__);
|
|
|
|
require_once($baseDir."config.php");
|
|
|
|
$tipe = (isset($_GET['_type_']))? $_GET['_type_'] : '';
|
|
|
|
switch($tipe) {
|
|
case 'img':
|
|
require_once(DIR_SYSTEM.'ecompress/optimeze_img.php');
|
|
break;
|
|
case 'script':
|
|
require_once(DIR_SYSTEM.'ecompress/css_and_javascript_optimized.php');
|
|
break;
|
|
default:
|
|
require_once(DIR_SYSTEM.'system.php');
|
|
break;
|
|
}
|
|
|
|
|
|
|