| Server IP : 68.183.124.220 / Your IP : 216.73.217.137 Web Server : Apache/2.4.18 (Ubuntu) System : Linux Sandbox-A 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : gavin ( 1000) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/wp-content/plugins/easy-google-fonts/ |
Upload File : |
<?php
/**
* Class: Easy_Google_Fonts
*
* The purpose of this class is to provide information
* about the file structure of this plugin, allowing
* the plugin folder name to be changed if necessary.
* It also contains the activation and deactivation
* functions that are triggered when the plugin is
* activated/deactivated.
*
* @package Easy_Google_Fonts
* @author Sunny Johal - Titanium Themes <support@titaniumthemes.com>
* @license GPL-2.0+
* @link http://wordpress.org/plugins/easy-google-fonts/
* @copyright Copyright (c) 2016, Titanium Themes
* @version 1.4.4
*
*/
if ( ! class_exists( 'Easy_Google_Fonts' ) ) :
class Easy_Google_Fonts {
/**
* Plugin version, used for cache-busting
* of style and script file references.
*
* @var string
* @since 1.3
*/
const VERSION = '1.4.0';
/**
* Instance of this class.
*
* @var object
* @since 1.3
*
*/
protected static $instance = null;
/**
* Translation handle
*
* @var string
* @since 1.3
*
*/
public $plugin_slug = 'easy-google-fonts';
/**
* Constructor Function
*
* Initialize the class and register all
* actions and filters.
*
* @since 1.3
* @version 1.4.4
*
*/
function __construct() {
$this->plugin_slug = 'easy-google-fonts';
$this->register_actions();
$this->register_filters();
}
/**
* Return an instance of this class.
*
* @return object A single instance of this class.
*
* @since 1.3
* @version 1.4.4
*
*/
public static function get_instance() {
// If the single instance hasn't been set, set it now.
if ( null == self::$instance ) {
self::$instance = new self;
}
return self::$instance;
}
/**
* Return the plugin slug.
*
* @return Plugin slug variable.
*
* @since 1.3
* @version 1.4.4
*
*/
public function get_plugin_slug() {
return $this->plugin_slug;
}
/**
* Register Custom Actions
*
* Add any custom actions in this function.
*
* @since 1.3
* @version 1.4.4
*
*/
public function register_actions() {
}
/**
* Register Custom Filters
*
* Add any custom filters in this function.
*
* @since 1.3
* @version 1.4.4
*
*/
public function register_filters() {
}
/**
* Get CSS Directory URL
*
* Static function that returns the complete url of
* the css directory location. Returns the path without
* the trailing slash.
*
* @since 1.3
* @version 1.4.4
*
*/
public static function get_css_url() {
return plugins_url( 'assets/css', __FILE__ );
}
/**
* Get CSS Directory Path
*
* Static function that returns the complete path of
* the css directory location. Returns the path without
* the trailing slash.
*
* @since 1.3
* @version 1.4.4
*
*/
public static function get_css_path() {
return plugin_dir_path( __FILE__ ) . 'assets\css';
}
/**
* Get JavaScript Directory URL
*
* Static function that returns the complete url of
* the js directory location. Returns the path without
* the trailing slash.
*
* @since 1.3
* @version 1.4.4
*
*/
public static function get_js_url() {
return plugins_url( 'assets/js', __FILE__ );
}
/**
* Get JavaScript Directory Path
*
* Static function that returns the complete path of
* the js directory location. Returns the path without
* the trailing slash.
*
* @since 1.3
* @version 1.4.4
*
*/
public static function get_js_path() {
return plugin_dir_path( __FILE__ ) . 'assets\js';
}
/**
* Get Image Directory URL
*
* Static function that returns the complete url of
* the js directory location. Returns the url without
* the trailing slash.
*
* @since 1.3
* @version 1.4.4
*
*/
public static function get_images_url() {
return plugins_url( 'assets/images', __FILE__ );
}
/**
* Get Image Directory Path
*
* Static function that returns the complete path of
* the js directory location. Returns the path without
* the trailing slash.
*
* @since 1.3
* @version 1.4.4
*
*/
public static function get_images_path() {
return plugin_dir_path( __FILE__ ) . 'assets\images';
}
/**
* Get Includes Directory URL
*
* Static function that returns the complete url of
* the includes directory location. Returns the path without
* the trailing slash.
*
* @since 1.3
* @version 1.4.4
*
*/
public static function get_includes_url() {
return plugins_url( 'includes', __FILE__ );
}
/**
* Get Includes Directory Path
*
* Static function that returns the complete url of
* the includes directory location. Returns the path without
* the trailing slash.
*
* @since 1.3
* @version 1.4.4
*
*/
public static function get_includes_path() {
return plugin_dir_path( __FILE__ ) . 'includes' ;
}
/**
* Get Views Directory URL
*
* Static function that returns the complete url of
* the views directory location. Returns the path without
* the trailing slash.
*
* @since 1.3
* @version 1.4.4
*
*/
public static function get_views_url() {
return plugins_url( 'views', __FILE__ );
}
/**
* Get Views Directory Path
*
* Static function that returns the complete url of
* the views directory location. Returns the path without
* the trailing slash.
*
* @since 1.3
* @version 1.4.4
*
*/
public static function get_views_path() {
return plugin_dir_path( __FILE__ ) . 'views' ;
}
/**
* Activation Event
*
* Fired when the plugin is activated.
*
* @param boolean $network_wide True if WPMU superadmin uses
* "Network Activate" action, false if
* WPMU is disabled or plugin is
* activated on an individual blog.
*
* @since 1.3
* @version 1.4.4
*
*/
public static function activate( $network_wide ) {
if ( function_exists( 'is_multisite' ) && is_multisite() ) {
if ( $network_wide ) {
// Get all blog ids
$blog_ids = self::get_blog_ids();
foreach ( $blog_ids as $blog_id ) {
switch_to_blog( $blog_id );
self::single_activate();
}
restore_current_blog();
} else {
self::single_activate();
}
} else {
self::single_activate();
}
}
/**
* Deactivation Event
*
* Fired when the plugin is deactivated.
*
* @param boolean $network_wide True if WPMU superadmin uses
* "Network Deactivate" action, false if
* WPMU is disabled or plugin is
* deactivated on an individual blog.
*
* @since 1.3
* @version 1.4.4
*
*/
public static function deactivate( $network_wide ) {
if ( function_exists( 'is_multisite' ) && is_multisite() ) {
if ( $network_wide ) {
// Get all blog ids
$blog_ids = self::get_blog_ids();
foreach ( $blog_ids as $blog_id ) {
switch_to_blog( $blog_id );
self::single_deactivate();
}
restore_current_blog();
} else {
self::single_deactivate();
}
} else {
self::single_deactivate();
}
}
/**
* WMPU Activation Event
*
* Fired when a new site is activated with a WPMU environment.
*
* @param int $blog_id ID of the new blog.
*
* @since 1.3
* @version 1.4.4
*
*/
public function activate_new_site( $blog_id ) {
if ( 1 !== did_action( 'wpmu_new_blog' ) ) {
return;
}
switch_to_blog( $blog_id );
self::single_activate();
restore_current_blog();
}
/**
* Get Blog Ids
*
* Get all blog ids of blogs in the current network that are:
* - not archived
* - not spam
* - not deleted
*
* @return array|false The blog ids, false if no matches.
*
* @since 1.3
* @version 1.4.4
*
*/
private static function get_blog_ids() {
global $wpdb;
// get an array of blog ids
$sql = "SELECT blog_id FROM $wpdb->blogs
WHERE archived = '0' AND spam = '0'
AND deleted = '0'";
return $wpdb->get_col( $sql );
}
/**
* Define Activation Functionality
*
* Anything in this function is fired for each blog
* when the plugin is activated.
*
* @since 1.3
* @version 1.4.4
*
*/
private static function single_activate() {
}
/**
* Define Deactivation Functionality
*
* Anything in this function is fired for each blog
* when the plugin is deactivated.
*
* @since 1.3
* @version 1.4.4
*
*/
private static function single_deactivate() {
delete_transient( 'tt_font_default_fonts' );
delete_transient( 'tt_font_google_fonts_list' );
delete_transient( 'tt_font_google_fonts' );
}
}
endif;