2013-11-09 14:38:40 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Badged
|
|
|
|
*
|
|
|
|
* @package Badged
|
|
|
|
* @author Matthias Kretschmann <m@kretschmann.io>
|
|
|
|
* @license GPL-2.0+
|
|
|
|
* @link http://kremalicious.com/badged/
|
2014-10-11 17:11:46 +02:00
|
|
|
* @copyright 2014 Matthias Kretschmann
|
2013-11-09 14:38:40 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Plugin class.
|
|
|
|
*
|
|
|
|
*
|
2013-11-09 19:36:53 +01:00
|
|
|
* @package Badged
|
2013-11-09 14:38:40 +01:00
|
|
|
* @author Matthias Kretschmann <m@kretschmann.io>
|
|
|
|
*/
|
2013-11-09 19:36:53 +01:00
|
|
|
class Badged {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Plugin version, used for cache-busting of style and script file references.
|
|
|
|
*
|
2013-11-09 23:22:19 +01:00
|
|
|
* @since 1.0.0
|
2013-11-09 19:36:53 +01:00
|
|
|
* @var string
|
|
|
|
*/
|
2013-11-09 23:22:19 +01:00
|
|
|
const VERSION = '1.0.0';
|
2013-11-09 14:38:40 +01:00
|
|
|
|
2013-11-09 19:36:53 +01:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Unique identifier.
|
|
|
|
*
|
2013-11-09 23:22:19 +01:00
|
|
|
* @since 1.0.0
|
2013-11-09 19:36:53 +01:00
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $plugin_slug = 'badged';
|
|
|
|
|
2013-11-09 14:38:40 +01:00
|
|
|
/**
|
|
|
|
* Instance of this class.
|
|
|
|
*
|
2013-11-09 23:22:19 +01:00
|
|
|
* @since 1.0.0
|
2013-11-09 14:38:40 +01:00
|
|
|
* @var object
|
|
|
|
*/
|
|
|
|
protected static $instance = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Slug of the plugin screen.
|
|
|
|
*
|
2013-11-09 23:22:19 +01:00
|
|
|
* @since 1.0.0
|
2013-11-09 14:38:40 +01:00
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $plugin_screen_hook_suffix = null;
|
|
|
|
|
|
|
|
/**
|
2013-11-09 22:00:13 +01:00
|
|
|
* Initialize the plugin by loading scripts & styles and adding a
|
2013-11-09 14:38:40 +01:00
|
|
|
* settings page and menu.
|
|
|
|
*
|
2013-11-09 23:22:19 +01:00
|
|
|
* @since 1.0.0
|
2013-11-09 14:38:40 +01:00
|
|
|
*/
|
|
|
|
private function __construct() {
|
|
|
|
|
2013-11-09 19:36:53 +01:00
|
|
|
// Load plugin text domain
|
|
|
|
add_action( 'init', array( $this, 'load_plugin_textdomain' ) );
|
|
|
|
|
|
|
|
// Activate plugin when new blog is added
|
|
|
|
add_action( 'wpmu_new_blog', array( $this, 'activate_new_site' ) );
|
2013-11-09 14:38:40 +01:00
|
|
|
|
2013-11-09 22:00:13 +01:00
|
|
|
// Load admin style sheets
|
2013-11-09 14:38:40 +01:00
|
|
|
add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_admin_styles' ) );
|
|
|
|
|
2013-11-09 22:00:13 +01:00
|
|
|
// Load admin bar style sheets
|
|
|
|
if ( is_admin_bar_showing() ) {
|
|
|
|
add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_adminbar_styles' ) );
|
|
|
|
}
|
|
|
|
|
2013-11-09 14:38:40 +01:00
|
|
|
// Add the options page and menu item.
|
|
|
|
add_action( 'admin_menu', array( $this, 'add_plugin_admin_menu' ) );
|
|
|
|
|
2013-11-09 23:13:36 +01:00
|
|
|
// init settings, nicely isolated
|
2013-11-09 18:47:37 +01:00
|
|
|
if ( ! empty ( $GLOBALS['pagenow'] )
|
|
|
|
and ( 'options-general.php' === $GLOBALS['pagenow']
|
|
|
|
or 'options.php' === $GLOBALS['pagenow']
|
|
|
|
)
|
|
|
|
) {
|
|
|
|
add_action( 'admin_init', array( $this, 'initialize_badged_settings' ) );
|
|
|
|
}
|
2013-11-09 14:38:40 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return an instance of this class.
|
|
|
|
*
|
2013-11-09 23:22:19 +01:00
|
|
|
* @since 1.0.0
|
2013-11-09 14:38:40 +01:00
|
|
|
* @return object A single instance of this class.
|
|
|
|
*/
|
|
|
|
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;
|
|
|
|
}
|
2013-11-09 19:36:53 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Fired when the plugin is activated.
|
|
|
|
*
|
2013-11-09 23:22:19 +01:00
|
|
|
* @since 1.0.0
|
2013-11-09 19:36:53 +01:00
|
|
|
* @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.
|
|
|
|
*/
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Fired when the plugin is deactivated.
|
|
|
|
*
|
2013-11-09 23:22:19 +01:00
|
|
|
* @since 1.0.0
|
2013-11-09 19:36:53 +01:00
|
|
|
* @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.
|
|
|
|
*/
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Fired when a new site is activated with a WPMU environment.
|
|
|
|
*
|
2013-11-09 23:22:19 +01:00
|
|
|
* @since 1.0.0
|
2013-11-09 19:36:53 +01:00
|
|
|
* @param int $blog_id ID of the new blog.
|
|
|
|
*/
|
|
|
|
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 all blog ids of blogs in the current network that are:
|
|
|
|
* - not archived
|
|
|
|
* - not spam
|
|
|
|
* - not deleted
|
|
|
|
*
|
2013-11-09 23:22:19 +01:00
|
|
|
* @since 1.0.0
|
2013-11-09 19:36:53 +01:00
|
|
|
* @return array|false The blog ids, false if no matches.
|
|
|
|
*/
|
|
|
|
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 );
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Fired for each blog when the plugin is activated.
|
|
|
|
*
|
2013-11-09 23:22:19 +01:00
|
|
|
* @since 1.0.0
|
2013-11-09 19:36:53 +01:00
|
|
|
*/
|
|
|
|
private static function single_activate() {
|
2013-11-09 23:13:36 +01:00
|
|
|
|
|
|
|
// construct the default option array
|
|
|
|
$options = get_option('badged_settings');
|
|
|
|
$options['style'] = 'ios7';
|
|
|
|
|
|
|
|
// set option
|
|
|
|
update_option( 'badged_settings', $options );
|
2013-11-09 19:36:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Fired for each blog when the plugin is deactivated.
|
|
|
|
*
|
2013-11-09 23:22:19 +01:00
|
|
|
* @since 1.0.0
|
2013-11-09 19:36:53 +01:00
|
|
|
*/
|
|
|
|
private static function single_deactivate() {
|
2013-11-09 23:13:36 +01:00
|
|
|
|
|
|
|
// deregister all settings
|
|
|
|
unregister_setting(
|
|
|
|
'badged_settings',
|
|
|
|
'badged_settings'
|
|
|
|
);
|
|
|
|
|
|
|
|
// clean up options in database
|
|
|
|
delete_option('badged_settings');
|
2013-11-09 19:36:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Load the plugin text domain for translation.
|
|
|
|
*
|
2013-11-09 23:22:19 +01:00
|
|
|
* @since 1.0.0
|
2013-11-09 19:36:53 +01:00
|
|
|
*/
|
|
|
|
public function load_plugin_textdomain() {
|
|
|
|
|
|
|
|
$domain = $this->plugin_slug;
|
|
|
|
$locale = apply_filters( 'plugin_locale', get_locale(), $domain );
|
|
|
|
|
|
|
|
load_textdomain( $domain, trailingslashit( WP_LANG_DIR ) . $domain . '/' . $domain . '-' . $locale . '.mo' );
|
|
|
|
load_plugin_textdomain( $domain, FALSE, basename( BADGED_PATH ) . '/languages/' );
|
|
|
|
|
|
|
|
}
|
2013-11-09 14:38:40 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Register and enqueue admin-specific style sheet.
|
|
|
|
*
|
2013-11-09 23:22:19 +01:00
|
|
|
* @since 1.0.0
|
2013-11-09 14:38:40 +01:00
|
|
|
* @return null Return early if no settings page is registered.
|
|
|
|
*/
|
|
|
|
public function enqueue_admin_styles() {
|
|
|
|
|
|
|
|
if ( ! isset( $this->plugin_screen_hook_suffix ) ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$screen = get_current_screen();
|
|
|
|
if ( $screen->id == $this->plugin_screen_hook_suffix ) {
|
2013-11-10 16:00:13 +01:00
|
|
|
wp_register_style( $this->plugin_slug .'-admin-styles', BADGED_URL . 'admin/assets/css/admin.min.css', array(), self::VERSION );
|
2013-11-09 22:00:13 +01:00
|
|
|
wp_enqueue_style( $this->plugin_slug .'-admin-styles' );
|
|
|
|
}
|
|
|
|
|
|
|
|
$options = get_option( 'badged_settings' );
|
|
|
|
|
|
|
|
// Default Style
|
|
|
|
if ( 'ios7' == $options['style'] ) {
|
2013-11-10 16:00:13 +01:00
|
|
|
wp_register_style( $this->plugin_slug .'-badged-styles', BADGED_URL . 'admin/assets/css/badged.min.css', array(), self::VERSION );
|
2013-11-09 22:00:13 +01:00
|
|
|
wp_enqueue_style( $this->plugin_slug .'-badged-styles' );
|
2013-11-09 14:38:40 +01:00
|
|
|
}
|
2013-11-09 22:00:13 +01:00
|
|
|
|
|
|
|
// Old Style
|
|
|
|
if ( 'ios6' == $options['style'] ) {
|
2013-11-10 16:00:13 +01:00
|
|
|
wp_register_style( $this->plugin_slug .'-badged-styles', BADGED_URL . 'admin/assets/css/badged-ios6.min.css', array(), self::VERSION );
|
2013-11-09 22:00:13 +01:00
|
|
|
wp_enqueue_style( $this->plugin_slug .'-badged-styles' );
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Register and enqueue admin bar specific style sheet.
|
|
|
|
*
|
2013-11-09 23:22:19 +01:00
|
|
|
* @since 1.0.0
|
2013-11-09 22:00:13 +01:00
|
|
|
*/
|
|
|
|
public function enqueue_adminbar_styles() {
|
2013-11-09 14:38:40 +01:00
|
|
|
|
2013-11-09 18:47:37 +01:00
|
|
|
$options = get_option( 'badged_settings' );
|
|
|
|
|
|
|
|
// Default Style
|
|
|
|
if ( 'ios7' == $options['style'] ) {
|
2013-11-10 16:00:13 +01:00
|
|
|
wp_register_style( $this->plugin_slug .'-badged-styles', BADGED_URL . 'admin/assets/css/badged.min.css', array(), self::VERSION );
|
2013-11-09 22:00:13 +01:00
|
|
|
wp_enqueue_style( $this->plugin_slug .'-badged-styles' );
|
2013-11-09 18:47:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Old Style
|
|
|
|
if ( 'ios6' == $options['style'] ) {
|
2013-11-10 16:00:13 +01:00
|
|
|
wp_register_style( $this->plugin_slug .'-badged-styles', BADGED_URL . 'admin/assets/css/badged-ios6.min.css', array(), self::VERSION );
|
2013-11-09 22:00:13 +01:00
|
|
|
wp_enqueue_style( $this->plugin_slug .'-badged-styles' );
|
2013-11-09 18:47:37 +01:00
|
|
|
}
|
2013-11-09 14:38:40 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Register the administration menu for this plugin into the WordPress Dashboard menu.
|
2013-11-09 23:22:19 +01:00
|
|
|
* @since 1.0.0
|
2013-11-09 14:38:40 +01:00
|
|
|
*/
|
|
|
|
public function add_plugin_admin_menu() {
|
|
|
|
|
|
|
|
$this->plugin_screen_hook_suffix = add_options_page(
|
|
|
|
__( 'Badged Settings', $this->plugin_slug ),
|
|
|
|
__( 'Badged', $this->plugin_slug ),
|
2013-11-09 18:47:37 +01:00
|
|
|
'manage_options',
|
|
|
|
'badged_settings',
|
2013-11-09 14:38:40 +01:00
|
|
|
array( $this, 'display_plugin_admin_page' )
|
|
|
|
);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Render the settings page for this plugin.
|
2013-11-09 23:22:19 +01:00
|
|
|
* @since 1.0.0
|
2013-11-09 14:38:40 +01:00
|
|
|
*/
|
|
|
|
public function display_plugin_admin_page() {
|
|
|
|
include_once( 'views/admin.php' );
|
|
|
|
}
|
2013-11-09 18:47:37 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Set default options
|
2013-11-09 23:22:19 +01:00
|
|
|
* @since 1.0.0
|
2013-11-09 18:47:37 +01:00
|
|
|
*/
|
|
|
|
public function badged_default_settings() {
|
|
|
|
|
|
|
|
$defaults = array(
|
2013-11-09 19:36:53 +01:00
|
|
|
'style' => 'ios7'
|
2013-11-09 18:47:37 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
return apply_filters( 'badged_default_settings', $defaults );
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Register settings
|
2013-11-09 23:22:19 +01:00
|
|
|
* @since 1.0.0
|
2013-11-09 18:47:37 +01:00
|
|
|
*/
|
|
|
|
public function initialize_badged_settings() {
|
|
|
|
|
|
|
|
if ( false == get_option( 'badged_settings' ) ) {
|
|
|
|
add_option(
|
|
|
|
'badged_settings',
|
|
|
|
apply_filters(
|
|
|
|
'badged_default_settings',
|
|
|
|
$this->badged_default_settings()
|
|
|
|
)
|
|
|
|
);
|
|
|
|
} // end if
|
|
|
|
|
|
|
|
add_settings_section(
|
|
|
|
'badged_style_section',
|
|
|
|
__( 'Style', 'badged' ),
|
|
|
|
array( $this, 'badged_style_settings_callback' ),
|
|
|
|
'badged_settings'
|
|
|
|
);
|
|
|
|
|
|
|
|
add_settings_field(
|
|
|
|
'Badged Style',
|
2013-11-09 19:50:56 +01:00
|
|
|
__( 'Set Style', 'badged' ),
|
2013-11-09 18:47:37 +01:00
|
|
|
array( $this, 'badged_style_settings_radios_callback' ),
|
|
|
|
'badged_settings',
|
|
|
|
'badged_style_section'
|
|
|
|
);
|
|
|
|
|
|
|
|
register_setting(
|
|
|
|
'badged_settings',
|
|
|
|
'badged_settings'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function badged_style_settings_callback() {
|
|
|
|
echo '<p></p>';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function badged_style_settings_radios_callback() {
|
|
|
|
|
|
|
|
$options = get_option( 'badged_settings' );
|
|
|
|
|
2013-11-09 19:50:56 +01:00
|
|
|
$html = '<p class="radio-row">';
|
2013-11-09 19:25:27 +01:00
|
|
|
$html .= '<input type="radio" id="style_ios7" name="badged_settings[style]" value="ios7"' . checked( 'ios7', $options['style'], false ) . '/>';
|
2013-11-09 18:47:37 +01:00
|
|
|
$html .= ' ';
|
|
|
|
$html .= '<label for="style_ios7">iOS 7</label>';
|
|
|
|
$html .= '</p>';
|
2013-11-09 19:50:56 +01:00
|
|
|
$html .= '<p class="radio-row">';
|
2013-11-09 18:47:37 +01:00
|
|
|
$html .= '<input type="radio" id="style_ios6" name="badged_settings[style]" value="ios6"' . checked( 'ios6', $options['style'], false ) . '/>';
|
|
|
|
$html .= ' ';
|
|
|
|
$html .= '<label for="style_ios6">iOS 6</label>';
|
|
|
|
$html .= '</p>';
|
|
|
|
|
|
|
|
echo $html;
|
2013-11-09 14:38:40 +01:00
|
|
|
|
2013-11-09 18:47:37 +01:00
|
|
|
}
|
2013-11-09 14:38:40 +01:00
|
|
|
|
|
|
|
}
|