Sindbad~EG File Manager
<?php
/**
* Plugin Name: Countdown Timer Ultimate
* Plugin URI: https://essentialplugin.com/wordpress-plugin/countdown-timer-ultimate/
* Description: Easy to add and display responsive Countdown timer on your website. Also work with Gutenberg shortcode block.
* Author: Essential Plugin
* Text Domain: countdown-timer-ultimate
* Domain Path: /languages/
* Version: 2.6.7
* Author URI: https://essentialplugin.com
*
* @package Countdown Timer Ultimate
* @author Essential Plugin
*/
/**
* Basic plugin definitions
*
* @package Countdown Timer Ultimate
* @since 1.1.1
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
if( ! defined( 'WPCDT_VERSION' ) ) {
define( 'WPCDT_VERSION', '2.6.6' ); // Version of plugin
}
if( ! defined( 'WPCDT_NAME' ) ) {
define( 'WPCDT_NAME', 'Countdown Timer Ultimate' ); // Name of plugin
}
if ( ! defined( 'WPCDT_SLUG' ) ) {
define( 'WPCDT_SLUG', 'countdown-timer-ultimate' ); // Slug of plugin
}
if( ! defined( 'WPCDT_DIR' ) ) {
define( 'WPCDT_DIR', dirname( __FILE__ ) ); // Plugin dir
}
if( ! defined( 'WPCDT_URL' ) ) {
define( 'WPCDT_URL', plugin_dir_url( __FILE__ ) ); // Plugin url
}
if( ! defined( 'WPCDT_PLUGIN_BASENAME' ) ) {
define( 'WPCDT_PLUGIN_BASENAME', plugin_basename( __FILE__ ) ); // plugin base name
}
if( ! defined( 'WPCDT_POST_TYPE' ) ) {
define( 'WPCDT_POST_TYPE', 'wpcdt_countdown' ); // Plugin post type
}
if( ! defined( 'WPCDT_META_PREFIX' ) ) {
define( 'WPCDT_META_PREFIX', '_wpcdt_' ); // Plugin metabox prefix
}
if( ! defined( 'WPCDT_CHECKOUT_PLUGIN_LINK' ) ) {
define('WPCDT_CHECKOUT_PLUGIN_LINK','https://essentialplugin.com/backend/checkout/?edd_action=add_to_cart&download_id=106568&edd_options[price_id]=2&wpos_cart_flush=1&utm_source=WP&utm_medium=Countdown&utm_campaign=Upgrade_To_Pro_Trail'); // Plugin Check link
}
if( ! defined( 'WPCDT_SITE_LINK' ) ) {
define('WPCDT_SITE_LINK','https://essentialplugin.com'); // Plugin link
}
if( ! defined( 'WPCDT_PLUGIN_LINK_UPGRADE' ) ) {
define('WPCDT_PLUGIN_LINK_UPGRADE','https://essentialplugin.com/pricing/?utm_source=WP&utm_medium=Countdown&utm_campaign=Upgrade-PRO'); // Plugin Check link
}
if( ! defined( 'WPCDT_PLUGIN_BUNDLE_LINK' ) ) {
define('WPCDT_PLUGIN_BUNDLE_LINK', 'https://essentialplugin.com/pricing/?utm_source=WP&utm_medium=Countdown&utm_campaign=Welcome-Screen'); // Plugin link
}
if( ! defined( 'WPCDT_PLUGIN_LINK_UNLOCK' ) ) {
define('WPCDT_PLUGIN_LINK_UNLOCK', 'https://essentialplugin.com/pricing/?utm_source=WP&utm_medium=Countdown&utm_campaign=Features-PRO'); // Plugin link
}
/**
* Load Text Domain
* This gets the plugin ready for translation
*
* @package Countdown Timer Ultimate
* @since 1.0.0
*/
function wpcdt_load_textdomain() {
global $wp_version;
// Set filter for plugin's languages directory
$wpcdt_lang_dir = dirname( WPCDT_PLUGIN_BASENAME ) . '/languages/';
$wpcdt_lang_dir = apply_filters( 'wpcdt_languages_directory', $wpcdt_lang_dir );
// Traditional WordPress plugin locale filter.
$get_locale = get_locale();
if ( $wp_version >= 4.7 ) {
$get_locale = get_user_locale();
}
// Traditional WordPress plugin locale filter
$locale = apply_filters( 'plugin_locale', $get_locale, 'countdown-timer-ultimate' );
$mofile = sprintf( '%1$s-%2$s.mo', 'countdown-timer-ultimate', $locale );
// Setup paths to current locale file
$mofile_global = WP_LANG_DIR . '/plugins/' . basename( WPCDT_DIR ) . '/' . $mofile;
if ( file_exists( $mofile_global ) ) { // Look in global /wp-content/languages/plugin-name folder
load_textdomain( 'countdown-timer-ultimate', $mofile_global );
} else { // Load the default language files
load_plugin_textdomain( 'countdown-timer-ultimate', false, $wpcdt_lang_dir );
}
}
add_action('plugins_loaded', 'wpcdt_load_textdomain');
/**
* Activation Hook
*
* Register plugin activation hook.
*
* @package Countdown Timer Ultimate
* @since 1.0.0
*/
register_activation_hook( __FILE__, 'wpcdt_install' );
/**
* Deactivation Hook
*
* Register plugin deactivation hook.
*
* @package Countdown Timer Ultimate
* @since 1.0.0
*/
register_deactivation_hook( __FILE__, 'wpcdt_uninstall');
/**
* Plugin Setup (On Activation)
*
* Does the initial setup,
* stest default values for the plugin options.
*
* @package Countdown Timer Ultimate
* @since 1.0.0
*/
function wpcdt_install() {
// Taking metabox prefix
$prefix = WPCDT_META_PREFIX;
$plugin_version = get_option( 'wpcdt_free_plugin_version' );
// WP Query Parameters
$args = array (
'posts_per_page' => 1,
'post_type' => WPCDT_POST_TYPE,
'post_status' => array( 'publish' ),
'fields' => 'ids',
'no_found_rows' => true,
'ignore_sticky_posts' => true,
'meta_query' => array(
array(
'key' => $prefix.'design',
'value' => '',
'compare' => 'NOT EXISTS',
),
)
);
// WP Query
$timer_post = get_posts( $args );
if( empty( $plugin_version ) && empty( $timer_post ) ) {
// Update plugin version to option
update_option( 'wpcdt_free_plugin_version', '1.1' );
}
// Register timer post type
wpcdt_register_post_type();
// IMP need to flush rules for custom registered post type
flush_rewrite_rules();
if( is_plugin_active('countdown-timer-ultimate-pro/countdown-timer-ultimate-pro.php') ) {
add_action('update_option_active_plugins', 'deactivate_countdown_pro_version');
}
}
/**
* Plugin Setup (On Deactivation)
*
* Delete plugin options.
*
* @package Countdown Timer Ultimate
* @since 1.0.0
*/
function wpcdt_uninstall() {
// IMP need to flush rules for custom registered post type
flush_rewrite_rules();
}
/**
* Deactivate free plugin
*
* @package Countdown Timer Ultimate
* @since 1.0.0
*/
function deactivate_countdown_pro_version() {
deactivate_plugins('countdown-timer-ultimate-pro/countdown-timer-ultimate-pro.php', true);
}
/**
* Function to display admin notice of activated plugin.
*
* @package Countdown Timer Ultimate
* @since 1.0.0
*/
function wpcdt_countdown_admin_notice() {
global $pagenow;
// If not plugin screen
if( 'plugins.php' != $pagenow ) {
return;
}
// Check Lite Version
$dir = WP_PLUGIN_DIR . '/countdown-timer-ultimate-pro/countdown-timer-ultimate-pro.php';
if( ! file_exists( $dir ) ) {
return;
}
$notice_link = add_query_arg( array( 'message' => 'wpcdt-plugin-notice' ), admin_url( 'plugins.php' ) );
$notice_transient = get_transient( 'wpcdt_install_notice' );
// If FREE plugin is active and PRO plugin exist
if( $notice_transient == false && current_user_can( 'install_plugins' ) ) {
echo '<div class="updated notice" style="position:relative;">
<p>
<strong>'.sprintf( __('Thank you for activating %s', 'countdown-timer-ultimate'), 'Countdown Timer Ultimate').'</strong>.<br/>
'.sprintf( __('It looks like you had PRO version %s of this plugin activated. To avoid conflicts the extra version has been deactivated and we recommend you delete it.', 'countdown-timer-ultimate'), '<strong>(<em>Countdown Timer Ultimate PRO</em>)</strong>' ).'
</p>
<a href="'.esc_url( $notice_link ).'" class="notice-dismiss" style="text-decoration:none;"></a>
</div>';
}
}
// Action to display notice
add_action( 'admin_notices', 'wpcdt_countdown_admin_notice');
// Functions file
require_once( WPCDT_DIR . '/includes/wpcdt-functions.php' );
// Plugin Post Type File
require_once( WPCDT_DIR . '/includes/wpcdt-post-types.php' );
// Admin Class File
require_once( WPCDT_DIR . '/includes/admin/class-wpcdt-admin.php' );
// Script Class File
require_once( WPCDT_DIR . '/includes/class-wpcdt-script.php' );
// Shortcode File
require_once( WPCDT_DIR . '/includes/shortcode/wpcdt-shortcode.php' );
/* Plugin Wpos Analytics Data Starts */
function wpos_analytics_anl31_load() {
require_once dirname( __FILE__ ) . '/wpos-analytics/wpos-analytics.php';
$wpos_analytics = wpos_anylc_init_module( array(
'id' => 31,
'file' => plugin_basename( __FILE__ ),
'name' => WPCDT_NAME,
'slug' => WPCDT_SLUG,
'type' => 'plugin',
'menu' => 'edit.php?post_type=wpcdt_countdown',
'redirect_page' => 'edit.php?post_type=wpcdt_countdown&page=wpcdt-solutions-features',
'text_domain' => 'countdown-timer-ultimate',
));
return $wpos_analytics;
}
// Init Analytics
wpos_analytics_anl31_load();
/* Plugin Wpos Analytics Data Ends */
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists