Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /**
- *
- * @ This file is created by deZender.Net
- * @ deZender (PHP5 Decoder for Zend Encoder/SafeGuard & PhpExpress)
- *
- * @ Version : 1.1.6.0
- * @ Author : DeZender
- * @ Release on : 02.06.2013
- * @ Official site : http://DeZender.Net
- *
- */
- class Gaea {
- public $version = '1.90';
- public $release = 'Public';
- public $status = 'Stable';
- public $name = 'Template support for the Hades Engine';
- public $price = '290 PLN';
- public $DEPENDENCIES = array( 'Zeus' => '1.91' );
- public $DEFAULT_TEMPLATE = 'default';
- public $TEMPLATES_DIR = 'tpl';
- private $FALL_BACK_TPL_DIR = 'tpl';
- public $current_template = null;
- public $super_template = null;
- public $super_template_file = null;
- public $temp_template = null;
- public $valid_current = null;
- public $template_file = null;
- public $site_name = null;
- public $site_dsc = null;
- public $site_url = null;
- public $site_kw = null;
- public $bin = null;
- public $debug_mode = false;
- public $enable_cache = false;
- public $default_replaces = 1;
- public $from_email = '[email protected]';
- public $admin_email = '[email protected]';
- public function Gaea($auto_init = true) {
- if (!( $auto_init)) {
- return null;
- }
- if (file_exists( 'conf/conf_gaea.php' )) {
- if ($this->debug_mode) {
- Zeus::emergency( 4, 'Loading Gaea config file...' );
- }
- @include( 'conf/conf_gaea.php' );
- }
- $this->FALL_BACK_TPL_DIR = $this->TEMPLATES_DIR;
- if ($_REQUEST['g_skin'] != '') {
- if ($_REQUEST['g_skin'] == 'reset') {
- $this->ResetCustomTemplateDir( );
- } else {
- $skin = 'tpl_' . $_REQUEST['g_skin'];
- if ($this->CkeckCustomTemplateDir( $skin )) {
- ......................................................................
- .................................
- ...........
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement