Server IP : 192.185.129.71 / Your IP : 18.191.31.198 Web Server : Apache System : Linux bh-ht-3.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : svymadmin ( 4072) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home4/svymadmin/public_html/vivekaexcel.edu.in/bkp/modules/theme_style/controllers/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php defined('BASEPATH') or exit('No direct script access allowed'); class Theme_style extends AdminController { public function __construct() { parent::__construct(); if (!is_admin()) { access_denied('Theme Style'); } } public function index() { $data['title'] = _l('theme_style'); $this->load->view('theme_style', $data); } public function reset() { update_option('theme_style', '[]'); redirect(admin_url('theme_style')); } public function save() { hooks()->do_action('before_save_theme_style'); update_option('theme_style', $this->input->post('data')); foreach(['admin_area','clients_area','clients_and_admin'] as $css_area) { // Also created the variables $$css_area = $this->input->post($css_area); $$css_area = trim($$css_area); $$css_area = nl2br($$css_area); } update_option('theme_style_custom_admin_area', $admin_area); update_option('theme_style_custom_clients_area', $clients_area); update_option('theme_style_custom_clients_and_admin_area', $clients_and_admin); } }