PATH:
home
/
letacommog
/
pymreception1
/
wp-content
/
plugins
/
click-to-chat-for-whatsapp
/
inc
/
commons
<?php /** * Varibales to use among plugin - try to avoid globals .. * replaced variables.php * * @method get_option retuns options table 'ccw_options' values * * use like .. * * ht_ccw()->variables->get_option['enable']; * or * $values = ht_ccw()->variables->get_option; * $values["enable"]; * $values["number"]; * */ if ( ! defined( 'ABSPATH' ) ) exit; if ( ! class_exists( 'HT_CCW_Variables' ) ) : class HT_CCW_Variables { /** * db options table - ccw_options values * * @var array get_options ccw_options * * */ public $get_option; public function __construct() { $this->get_option(); } public function get_option() { $this->get_option = get_option('ccw_options'); } // public function ccw_enable() { // $ccw_enable = esc_attr( $this->get_option['enable'] ); // return $ccw_enable; // } } endif; // END class_exists check
[+]
..
[-] styles.php
[edit]
[-] class-ht-ccw-variables.php
[edit]
[-] class-ht-ccw-ismobile.php
[edit]
[+]
styles-list
[+]
styles-list-sc