| Current Path : /home/x/b/o/xbodynamge/namtation/wp-content/ |
| Current File : /home/x/b/o/xbodynamge/namtation/wp-content/class-themeisle-sdk-notification-manager.php.tar |
themes/zerif-lite/vendor/codeinwp/themeisle-sdk/class-themeisle-sdk-notification-manager.php 0000644 00000005631 15111627545 0036214 0 ustar 00 home/xbodynamge/lebauwcentre/wp-content <?php
/**
* The notification manager class for ThemeIsle SDK
*
* @package ThemeIsleSDK
* @subpackage Notification
* @copyright Copyright (c) 2017, Marius Cristea
* @license http://opensource.org/licenses/gpl-3.0.php GNU Public License
* @since 1.0.0
*/
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
if ( ! class_exists( 'ThemeIsle_SDK_Notification_Manager' ) ) :
/**
* Notification manager model for ThemeIsle SDK.
*/
class ThemeIsle_SDK_Notification_Manager {
/**
* Time between notifications.
*/
const NOTIFICATION_INTERVAL_HOURS = 100;
/**
* @var array Notifications for the current product.
*/
static private $notifications = array();
/**
* @var ThemeIsle_SDK_Product Current product.
*/
private $product;
/**
* @var array ThemeIsle_SDK_Feedback Feedbacks available.
*/
private $callbacks = array();
/**
* ThemeIsle_SDK_Notification_Manager constructor.
*
* @param ThemeIsle_SDK_Product $product_object Product Object.
* @param array $callbacks the objects that will be called when a notification is due.
*/
public function __construct( $product_object, $callbacks ) {
$this->product = $product_object;
$this->callbacks = $callbacks;
$this->setup_hooks();
}
/**
* Setup the notifications.
*/
function setup_notifications() {
if ( ! current_user_can( 'manage_options' ) ) {
return;
}
// Load the notifications only if we have it installed after the required interval.
if ( ( time() - $this->product->get_install_time() ) > self::NOTIFICATION_INTERVAL_HOURS * HOUR_IN_SECONDS ) {
if ( $this->product instanceof ThemeIsle_SDK_Product && $this->callbacks && is_array( $this->callbacks ) ) {
foreach ( $this->callbacks as $instance ) {
self::$notifications[ $this->product->get_key() . get_class( $instance ) ] = $instance;
}
}
}
}
/**
* Setup the internal hooks
*/
private function setup_hooks() {
add_action( 'admin_head', array( $this, 'show_notification' ) );
add_action( 'admin_init', array( $this, 'setup_notifications' ) );
}
/**
* Shows the notification
*/
function show_notification() {
$instances = self::$notifications;
if ( empty( $instances ) ) {
return;
}
$available = array_keys( $instances );
$active = get_option( 'themeisle_sdk_active_notification', array() );
foreach ( $available as $key ) {
$instance = $instances[ $key ];
if ( $instance->can_notify() ) {
// Detect notification switch.
if ( empty( $active['key'] ) || ( $active['key'] != $key ) ) {
$active['key'] = $key;
$active['time'] = time();
update_option( 'themeisle_sdk_active_notification', $active );
}
if ( ( time() - $active['time'] ) > ( self::NOTIFICATION_INTERVAL_HOURS * HOUR_IN_SECONDS ) ) {
$instance->show_notification();
}
break;
}
}
}
}
endif;
themes/zerif-lite/vendor/codeinwp/themeisle-sdk/class-themeisle-sdk-notification-manager.php 0000604 00000005631 15113664323 0036412 0 ustar 00 home/xbodynamge/crosstraining/wp-content <?php
/**
* The notification manager class for ThemeIsle SDK
*
* @package ThemeIsleSDK
* @subpackage Notification
* @copyright Copyright (c) 2017, Marius Cristea
* @license http://opensource.org/licenses/gpl-3.0.php GNU Public License
* @since 1.0.0
*/
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
if ( ! class_exists( 'ThemeIsle_SDK_Notification_Manager' ) ) :
/**
* Notification manager model for ThemeIsle SDK.
*/
class ThemeIsle_SDK_Notification_Manager {
/**
* Time between notifications.
*/
const NOTIFICATION_INTERVAL_HOURS = 100;
/**
* @var array Notifications for the current product.
*/
static private $notifications = array();
/**
* @var ThemeIsle_SDK_Product Current product.
*/
private $product;
/**
* @var array ThemeIsle_SDK_Feedback Feedbacks available.
*/
private $callbacks = array();
/**
* ThemeIsle_SDK_Notification_Manager constructor.
*
* @param ThemeIsle_SDK_Product $product_object Product Object.
* @param array $callbacks the objects that will be called when a notification is due.
*/
public function __construct( $product_object, $callbacks ) {
$this->product = $product_object;
$this->callbacks = $callbacks;
$this->setup_hooks();
}
/**
* Setup the notifications.
*/
function setup_notifications() {
if ( ! current_user_can( 'manage_options' ) ) {
return;
}
// Load the notifications only if we have it installed after the required interval.
if ( ( time() - $this->product->get_install_time() ) > self::NOTIFICATION_INTERVAL_HOURS * HOUR_IN_SECONDS ) {
if ( $this->product instanceof ThemeIsle_SDK_Product && $this->callbacks && is_array( $this->callbacks ) ) {
foreach ( $this->callbacks as $instance ) {
self::$notifications[ $this->product->get_key() . get_class( $instance ) ] = $instance;
}
}
}
}
/**
* Setup the internal hooks
*/
private function setup_hooks() {
add_action( 'admin_head', array( $this, 'show_notification' ) );
add_action( 'admin_init', array( $this, 'setup_notifications' ) );
}
/**
* Shows the notification
*/
function show_notification() {
$instances = self::$notifications;
if ( empty( $instances ) ) {
return;
}
$available = array_keys( $instances );
$active = get_option( 'themeisle_sdk_active_notification', array() );
foreach ( $available as $key ) {
$instance = $instances[ $key ];
if ( $instance->can_notify() ) {
// Detect notification switch.
if ( empty( $active['key'] ) || ( $active['key'] != $key ) ) {
$active['key'] = $key;
$active['time'] = time();
update_option( 'themeisle_sdk_active_notification', $active );
}
if ( ( time() - $active['time'] ) > ( self::NOTIFICATION_INTERVAL_HOURS * HOUR_IN_SECONDS ) ) {
$instance->show_notification();
}
break;
}
}
}
}
endif;
wp-content/themes/hestia/vendor/codeinwp/themeisle-sdk/class-themeisle-sdk-notification-manager.php 0000644 00000005631 15114051165 0033553 0 ustar 00 home/xbodynamge/www <?php
/**
* The notification manager class for ThemeIsle SDK
*
* @package ThemeIsleSDK
* @subpackage Notification
* @copyright Copyright (c) 2017, Marius Cristea
* @license http://opensource.org/licenses/gpl-3.0.php GNU Public License
* @since 1.0.0
*/
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
if ( ! class_exists( 'ThemeIsle_SDK_Notification_Manager' ) ) :
/**
* Notification manager model for ThemeIsle SDK.
*/
class ThemeIsle_SDK_Notification_Manager {
/**
* Time between notifications.
*/
const NOTIFICATION_INTERVAL_HOURS = 100;
/**
* @var array Notifications for the current product.
*/
static private $notifications = array();
/**
* @var ThemeIsle_SDK_Product Current product.
*/
private $product;
/**
* @var array ThemeIsle_SDK_Feedback Feedbacks available.
*/
private $callbacks = array();
/**
* ThemeIsle_SDK_Notification_Manager constructor.
*
* @param ThemeIsle_SDK_Product $product_object Product Object.
* @param array $callbacks the objects that will be called when a notification is due.
*/
public function __construct( $product_object, $callbacks ) {
$this->product = $product_object;
$this->callbacks = $callbacks;
$this->setup_hooks();
}
/**
* Setup the notifications.
*/
function setup_notifications() {
if ( ! current_user_can( 'manage_options' ) ) {
return;
}
// Load the notifications only if we have it installed after the required interval.
if ( ( time() - $this->product->get_install_time() ) > self::NOTIFICATION_INTERVAL_HOURS * HOUR_IN_SECONDS ) {
if ( $this->product instanceof ThemeIsle_SDK_Product && $this->callbacks && is_array( $this->callbacks ) ) {
foreach ( $this->callbacks as $instance ) {
self::$notifications[ $this->product->get_key() . get_class( $instance ) ] = $instance;
}
}
}
}
/**
* Setup the internal hooks
*/
private function setup_hooks() {
add_action( 'admin_head', array( $this, 'show_notification' ) );
add_action( 'admin_init', array( $this, 'setup_notifications' ) );
}
/**
* Shows the notification
*/
function show_notification() {
$instances = self::$notifications;
if ( empty( $instances ) ) {
return;
}
$available = array_keys( $instances );
$active = get_option( 'themeisle_sdk_active_notification', array() );
foreach ( $available as $key ) {
$instance = $instances[ $key ];
if ( $instance->can_notify() ) {
// Detect notification switch.
if ( empty( $active['key'] ) || ( $active['key'] != $key ) ) {
$active['key'] = $key;
$active['time'] = time();
update_option( 'themeisle_sdk_active_notification', $active );
}
if ( ( time() - $active['time'] ) > ( self::NOTIFICATION_INTERVAL_HOURS * HOUR_IN_SECONDS ) ) {
$instance->show_notification();
}
break;
}
}
}
}
endif;
themeisle-companion/vendor/codeinwp/themeisle-sdk/class-themeisle-sdk-notification-manager.php 0000644 00000005631 15115603525 0036370 0 ustar 00 home/xbodynamge/dev/wp-content/plugins <?php
/**
* The notification manager class for ThemeIsle SDK
*
* @package ThemeIsleSDK
* @subpackage Notification
* @copyright Copyright (c) 2017, Marius Cristea
* @license http://opensource.org/licenses/gpl-3.0.php GNU Public License
* @since 1.0.0
*/
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
if ( ! class_exists( 'ThemeIsle_SDK_Notification_Manager' ) ) :
/**
* Notification manager model for ThemeIsle SDK.
*/
class ThemeIsle_SDK_Notification_Manager {
/**
* Time between notifications.
*/
const NOTIFICATION_INTERVAL_HOURS = 100;
/**
* @var array Notifications for the current product.
*/
static private $notifications = array();
/**
* @var ThemeIsle_SDK_Product Current product.
*/
private $product;
/**
* @var array ThemeIsle_SDK_Feedback Feedbacks available.
*/
private $callbacks = array();
/**
* ThemeIsle_SDK_Notification_Manager constructor.
*
* @param ThemeIsle_SDK_Product $product_object Product Object.
* @param array $callbacks the objects that will be called when a notification is due.
*/
public function __construct( $product_object, $callbacks ) {
$this->product = $product_object;
$this->callbacks = $callbacks;
$this->setup_hooks();
}
/**
* Setup the notifications.
*/
function setup_notifications() {
if ( ! current_user_can( 'manage_options' ) ) {
return;
}
// Load the notifications only if we have it installed after the required interval.
if ( ( time() - $this->product->get_install_time() ) > self::NOTIFICATION_INTERVAL_HOURS * HOUR_IN_SECONDS ) {
if ( $this->product instanceof ThemeIsle_SDK_Product && $this->callbacks && is_array( $this->callbacks ) ) {
foreach ( $this->callbacks as $instance ) {
self::$notifications[ $this->product->get_key() . get_class( $instance ) ] = $instance;
}
}
}
}
/**
* Setup the internal hooks
*/
private function setup_hooks() {
add_action( 'admin_head', array( $this, 'show_notification' ) );
add_action( 'admin_init', array( $this, 'setup_notifications' ) );
}
/**
* Shows the notification
*/
function show_notification() {
$instances = self::$notifications;
if ( empty( $instances ) ) {
return;
}
$available = array_keys( $instances );
$active = get_option( 'themeisle_sdk_active_notification', array() );
foreach ( $available as $key ) {
$instance = $instances[ $key ];
if ( $instance->can_notify() ) {
// Detect notification switch.
if ( empty( $active['key'] ) || ( $active['key'] != $key ) ) {
$active['key'] = $key;
$active['time'] = time();
update_option( 'themeisle_sdk_active_notification', $active );
}
if ( ( time() - $active['time'] ) > ( self::NOTIFICATION_INTERVAL_HOURS * HOUR_IN_SECONDS ) ) {
$instance->show_notification();
}
break;
}
}
}
}
endif;
themes/zerif-lite/vendor/codeinwp/themeisle-sdk/class-themeisle-sdk-notification-manager.php 0000644 00000005631 15115653122 0034304 0 ustar 00 home/xbodynamge/dev/wp-content <?php
/**
* The notification manager class for ThemeIsle SDK
*
* @package ThemeIsleSDK
* @subpackage Notification
* @copyright Copyright (c) 2017, Marius Cristea
* @license http://opensource.org/licenses/gpl-3.0.php GNU Public License
* @since 1.0.0
*/
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
if ( ! class_exists( 'ThemeIsle_SDK_Notification_Manager' ) ) :
/**
* Notification manager model for ThemeIsle SDK.
*/
class ThemeIsle_SDK_Notification_Manager {
/**
* Time between notifications.
*/
const NOTIFICATION_INTERVAL_HOURS = 100;
/**
* @var array Notifications for the current product.
*/
static private $notifications = array();
/**
* @var ThemeIsle_SDK_Product Current product.
*/
private $product;
/**
* @var array ThemeIsle_SDK_Feedback Feedbacks available.
*/
private $callbacks = array();
/**
* ThemeIsle_SDK_Notification_Manager constructor.
*
* @param ThemeIsle_SDK_Product $product_object Product Object.
* @param array $callbacks the objects that will be called when a notification is due.
*/
public function __construct( $product_object, $callbacks ) {
$this->product = $product_object;
$this->callbacks = $callbacks;
$this->setup_hooks();
}
/**
* Setup the notifications.
*/
function setup_notifications() {
if ( ! current_user_can( 'manage_options' ) ) {
return;
}
// Load the notifications only if we have it installed after the required interval.
if ( ( time() - $this->product->get_install_time() ) > self::NOTIFICATION_INTERVAL_HOURS * HOUR_IN_SECONDS ) {
if ( $this->product instanceof ThemeIsle_SDK_Product && $this->callbacks && is_array( $this->callbacks ) ) {
foreach ( $this->callbacks as $instance ) {
self::$notifications[ $this->product->get_key() . get_class( $instance ) ] = $instance;
}
}
}
}
/**
* Setup the internal hooks
*/
private function setup_hooks() {
add_action( 'admin_head', array( $this, 'show_notification' ) );
add_action( 'admin_init', array( $this, 'setup_notifications' ) );
}
/**
* Shows the notification
*/
function show_notification() {
$instances = self::$notifications;
if ( empty( $instances ) ) {
return;
}
$available = array_keys( $instances );
$active = get_option( 'themeisle_sdk_active_notification', array() );
foreach ( $available as $key ) {
$instance = $instances[ $key ];
if ( $instance->can_notify() ) {
// Detect notification switch.
if ( empty( $active['key'] ) || ( $active['key'] != $key ) ) {
$active['key'] = $key;
$active['time'] = time();
update_option( 'themeisle_sdk_active_notification', $active );
}
if ( ( time() - $active['time'] ) > ( self::NOTIFICATION_INTERVAL_HOURS * HOUR_IN_SECONDS ) ) {
$instance->show_notification();
}
break;
}
}
}
}
endif;