PATH:
home
/
letacommog
/
morandas1
/
wp-content
/
plugins
/
wp-whatsapp-chat
/
includes
/
controllers
<?php class QLWAPP_Suggestions_Controller { protected static $instance; function add_menu() { add_submenu_page(QLWAPP_DOMAIN, esc_html__('Suggestions', 'wp-whatsapp-chat'), sprintf('%s', esc_html__('Suggestions', 'wp-whatsapp-chat')), 'edit_posts', QLWAPP_DOMAIN . '_suggestions', array($this, 'add_panel'), 99); } function add_panel() { global $submenu; include_once(QLWAPP_PLUGIN_DIR . 'includes/models/Suggestions.php'); $wp_list_table = new QLWAPP_Suggestions_List_Table(); $wp_list_table->prepare_items(); include (QLWAPP_PLUGIN_DIR . '/includes/view/backend/pages/parts/header.php'); include (QLWAPP_PLUGIN_DIR . '/includes/view/backend/pages/suggestions.php'); } // fix for activateUrl on install now button public function network_admin_url($url, $path) { if (wp_doing_ajax() && !is_network_admin()) { if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'install-plugin') { if (strpos($url, 'plugins.php') !== false) { $url = self_admin_url($path); } } } return $url; } public function add_redirect() { if (isset($_REQUEST['activate']) && $_REQUEST['activate'] == 'true') { if (wp_get_referer() == admin_url('admin.php?page=' . QLWAPP_DOMAIN . '_suggestions')) { wp_redirect(admin_url('admin.php?page=' . QLWAPP_DOMAIN . '_suggestions')); } } } function init() { add_action('admin_menu', array($this, 'add_menu')); add_action('admin_init', array($this, 'add_redirect')); add_filter('network_admin_url', array($this, 'network_admin_url'), 10, 2); } public static function instance() { if (!isset(self::$instance)) { self::$instance = new self(); self::$instance->init(); } return self::$instance; } } QLWAPP_Suggestions_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]