Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
test
/
wp-content
/
plugins
/
click-to-chat-for-whatsapp
/
new
/
admin
:
admin.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * starting point for the admin side of this plugin. * * include other file here .. which need in admin side. * * In click-to-chat.php this file will be loaded as is_admin * * @package ctc * @subpackage Administration * @since 1.0 */ if ( ! defined( 'ABSPATH' ) ) exit; $ht_ctc_othersettings = get_option('ht_ctc_othersettings'); /*************** includes ***********/ include_once HT_CTC_PLUGIN_DIR .'new/inc/commons/class-ht-ctc-formatting.php'; // others - hooks .... include_once HT_CTC_PLUGIN_DIR .'new/admin/admin_commons/class-ht-ctc-admin-hooks.php'; // add scripts include_once HT_CTC_PLUGIN_DIR .'new/admin/class-ht-ctc-admin-scripts.php'; // Main, Chat admin page include_once HT_CTC_PLUGIN_DIR .'new/admin/class-ht-ctc-admin-main-page.php'; // greetings include_once HT_CTC_PLUGIN_DIR .'new/admin/class-ht-ctc-admin-greetings-page.php'; do_action('ht_ctc_ah_admin_includes_after_main_page' ); // group admin page if ( isset ( $ht_ctc_othersettings['enable_group'] ) ) { include_once HT_CTC_PLUGIN_DIR .'new/admin/class-ht-ctc-admin-group-page.php'; } // share admin page if ( isset ( $ht_ctc_othersettings['enable_share'] ) ) { include_once HT_CTC_PLUGIN_DIR .'new/admin/class-ht-ctc-admin-share-page.php'; } // customize include_once HT_CTC_PLUGIN_DIR .'new/admin/class-ht-ctc-admin-customize-styles.php'; // other settings - enable options .. include_once HT_CTC_PLUGIN_DIR .'new/admin/class-ht-ctc-admin-other-settings.php'; // meta boxes - change values at page level include_once HT_CTC_PLUGIN_DIR .'new/admin/admin_commons/class-ht-ctc-metabox.php'; // admin demo include_once HT_CTC_PLUGIN_DIR .'new/admin/admin_demo/class-ht-ctc-admin-demo.php'; do_action('ht_ctc_ah_admin_includes' );