| Linux server27.hostingraja.org 2.6.32-954.3.5.lve1.4.93.el6.x86_64 #1 SMP Wed Oct 4 17:04:29 UTC 2023 x86_64 Path : /proc/self/root/home/udaipurk/www/websites/rishhh/wp-content/plugins/theme-editor/app/ |
| Current File : //proc/self/root/home/udaipurk/www/websites/rishhh/wp-content/plugins/theme-editor/app/app.php |
<?php namespace te\pa;
use te\app\cnt\theme_editor_controller as run_theme_editor_controller;
use te\app\mdl\theme_editor_model as run_theme_editor_model;
class theme_editor_app {
var $controller;
var $model;
public function __construct() {
$this->controller();
$this->model();
}
public function controller() {
if(is_admin()) {
include('controller/controller.php');
$controller = new run_theme_editor_controller;
}
}
public function model() {
if(is_admin()) {
include('model/model.php');
$model = new run_theme_editor_model;
}
}
}