mirror of
https://github.com/kremalicious/Badged.git
synced 2024-12-28 15:47:43 +01:00
e35c73a088
- split up the css for this, add subtle options page css to the admin menu css - values are both set by default upon activation - new quick 32px icon git-svn-id: http://plugins.svn.wordpress.org/badged/trunk@476933 b8457f37-d9ea-0310-8a92-e5e31aec5664
58 lines
1.5 KiB
PHP
58 lines
1.5 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_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');
|
|
}
|
|
|
|
register_activation_hook(__FILE__, 'bubbles_activation');
|
|
|
|
?>
|