PATH:
home
/
letacommog
/
morandas1
/
wp-content
/
plugins
/
wp-whatsapp-chat
/
includes
/
controllers
<?php include_once(QLWAPP_PLUGIN_DIR . 'includes/models/Scheme.php'); include_once(QLWAPP_PLUGIN_DIR . 'includes/controllers/QLWAPP_Controller.php'); class QLWAPP_Scheme_Controller extends QLWAPP_Controller { protected static $instance; protected $scheme = 'scheme'; function add_menu() { add_submenu_page(QLWAPP_DOMAIN, esc_html__('Colors', 'wp-whatsapp-chat'), esc_html__('Colors', 'wp-whatsapp-chat'), 'manage_options', QLWAPP_DOMAIN . '_scheme', array($this, 'add_panel')); } function add_panel() { global $submenu; $scheme_model = new QLWAPP_Scheme(); $scheme = $scheme_model->get(); include (QLWAPP_PLUGIN_DIR . '/includes/view/backend/pages/parts/header.php'); include (QLWAPP_PLUGIN_DIR . '/includes/view/backend/pages/scheme.php'); } function init() { add_action('wp_ajax_qlwapp_save_scheme', array($this, 'ajax_qlwapp_save_scheme')); add_action('admin_menu', array($this, 'add_menu')); } public function ajax_qlwapp_save_scheme() { $scheme_model = new QLWAPP_Scheme(); if (current_user_can('manage_options')) { if (check_ajax_referer('qlwapp_save_scheme', 'nonce', false) && isset($_REQUEST['form_data'])) { $form_data = array(); parse_str($_REQUEST['form_data'], $form_data); if (is_array($form_data)) { $scheme_model->save($form_data); return parent::success_save($form_data); } return parent::error_reload_page(); } return parent::error_access_denied(); } } public static function instance() { if (!isset(self::$instance)) { self::$instance = new self(); self::$instance->init(); } return self::$instance; } } QLWAPP_Scheme_Controller::instance();
[+]
..
[-] ButtonController.php
[edit]
[-] DisplayController.php
[edit]
[-] PremiumController.php
[edit]
[-] SuggestionsController.php
[edit]
[-] BoxController.php
[edit]
[-] QLWAPP_Controller.php
[edit]
[-] SchemeController.php
[edit]
[-] WelcomeController.php
[edit]
[-] Display_services.php
[edit]
[-] ContactController.php
[edit]