| Server IP : 172.67.178.83 / Your IP : 216.73.217.141 Web Server : Apache System : Linux hosting01.arsenalhost.com 4.18.0-425.13.1.lve.el8.x86_64 #1 SMP Mon Feb 27 15:23:24 EST 2023 x86_64 User : corbizre ( 1013) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/corbizre/officespace4lease.com/wp-content/themes/sesame/ |
Upload File : |
<?php
/**
* Theme PHP Functions
* @author Realtyna Inc.
*/
// Exit if accessed directly.
if(!defined('ABSPATH')) exit;
// Include Base Class
require get_template_directory().'/includes/base.php';
// Don't redeclare the class if it's overrode on child theme
if(!class_exists('sesame')):
/**
* Please don't develop this class.
* You should put your codes on sesame_base class which is located on /includes/base.php file.
*/
class sesame extends sesame_base
{
public function __construct()
{
parent::__construct();
}
}
endif;
// Don't create the object again if it's created on child theme
if(!isset($sesame))
{
global $sesame;
$sesame = new Sesame();
$sesame->setup();
}