Guest User

Untitled

a guest
Oct 22nd, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.64 KB | None | 0 0
  1. <?php
  2.  
  3. /**
  4.  *
  5.  * Main file
  6.  *
  7.  * @version             1.0.0
  8.  * @package             Gavern Framework
  9.  * @copyright           Copyright (C) 2010 - 2011 GavickPro. All rights reserved.
  10.  *              
  11.  */
  12.  
  13. // No direct access.
  14. defined('_JEXEC') or die;
  15. // enable showing errors in PHP
  16. //ini_set('error_reporting', E_ALL);
  17. //ini_set('display_errors','On');
  18.  
  19. // include framework classes and files
  20. require_once('lib/framework/gk.const.php');
  21. require_once('lib/framework/gk.parser.php');
  22. require_once('lib/gk.framework.php');
  23. // run the framework
  24. $tpl = new GKTemplate($this, $GK_TEMPLATE_MODULE_STYLES);
  25.  
  26. /* End of the file - index.php */
Add Comment
Please, Sign In to add comment