mirror of
https://github.com/kremalicious/Badged.git
synced 2024-12-28 15:47:43 +01:00
c43b64d39e
slightly different options page layout
65 lines
1.9 KiB
PHP
65 lines
1.9 KiB
PHP
<?php
|
|
/**
|
|
* Plugin Name: Bubbles
|
|
* Plugin URI: http://kremalicious.com
|
|
* Description: Transforms the standard WordPress update & comment notification bubbles into iOS-styled ones. No settings needed, just activate and enjoy the red bubbles.
|
|
* Author: Matthias Kretschmann
|
|
* Author URI: http://matthiaskretschmann.com
|
|
* Version: 0.1.0
|
|
* License: GPL
|
|
*/
|
|
|
|
|
|
if (function_exists('load_plugin_textdomain')) {
|
|
load_plugin_textdomain('bbls', false, dirname(plugin_basename(__FILE__)).'/languages' );
|
|
}
|
|
|
|
function bubbles_init() {
|
|
bubbles_register_settings();
|
|
if ( get_option('menu') == 'yes') {
|
|
wp_register_style('bubbles-menu-css', plugins_url('/bubbles/bubbles-menu.css'), false, '9001');
|
|
wp_enqueue_style('bubbles-menu-css');
|
|
}
|
|
|
|
if ( get_option('bar') == 'yes') {
|
|
wp_register_style('bubbles-bar-css', plugins_url('/bubbles/bubbles-bar.css'), false, '9001');
|
|
wp_enqueue_style('bubbles-bar-css');
|
|
}
|
|
}
|
|
|
|
function bubbles_bar_only_init() {
|
|
if ( get_option('bar') == 'yes') {
|
|
wp_register_style('bubbles-bar-css', plugins_url('/bubbles/bubbles-bar.css'), false, '9001');
|
|
wp_enqueue_style('bubbles-bar-css');
|
|
}
|
|
}
|
|
|
|
function bubbles_settings() {
|
|
add_options_page('Bubbles Options', 'Bubbles', 'manage_options', 'bubbles_settings', 'bubbles_settings_page');
|
|
}
|
|
|
|
function bubbles_register_settings() {
|
|
register_setting('bubbles', 'menu');
|
|
register_setting('bubbles', 'bar');
|
|
}
|
|
|
|
function bubbles_settings_page() {
|
|
require_once('bubbles-settings.php');
|
|
}
|
|
|
|
function bubbles_activation() {
|
|
bubbles_register_settings();
|
|
update_option('menu', 'yes');
|
|
update_option('bar', 'yes');
|
|
}
|
|
|
|
if ( is_admin() ) {
|
|
add_action('admin_init', 'bubbles_init');
|
|
add_action('admin_menu', 'bubbles_settings');
|
|
} elseif ( !is_admin() && get_option('bar') == 'yes' ) {
|
|
add_action('admin_bar_init', 'bubbles_bar_only_init');
|
|
}
|
|
|
|
register_activation_hook(__FILE__, 'bubbles_activation');
|
|
|
|
?>
|