PHP Classes

File: constants.php

Recommend this page to a friend!
  Classes of Pierre-Henry Soria   Slim Simple PHP URL Shortener   constants.php   Download  
File: constants.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Slim Simple PHP URL Shortener
Application to create and expand short URLs
Author: By
Last change:
Date: 6 months ago
Size: 540 bytes
 

Contents

Class file image Download
<?php
/**
 * @author Pierre-Henry Soria <ph7software@gmail.com>
 * @copyright (c) 2013, Pierre-Henry Soria. All Rights Reserved.
 * @link http://github.com/pH-7/Slim-URL-Shortener
 * @license GNU General Public License <http://www.gnu.org/licenses/gpl.html>
 */

namespace PHS;

defined('PHS') or die('Forbidden acces');


define('ROOT_PATH', __DIR__ . '/');
define('VENDOR_PATH', ROOT_PATH . 'Vendor/');
define('LANG_PATH', ROOT_PATH . 'i18n/locale');
define('TPL_CACHE', ROOT_PATH . 'cache/twig/');