'swissRail',
'radius' => 100,
'noseconds' => false, // Hide seconds
'gmtoffset' => '', // GMT offset
'showdigital' => false, // Show digital time
'scale' => 'linear' // Define type of clock linear/logarithmic/log reversed
);
static $advanced;
static $advanced_defaults = array (
'subtext' => '',
'align' => ''
);
static $default_skins = array (
'swissRail',
'chunkySwiss',
'chunkySwissOnBlack'
);
static $more_skins = array (
'fancy',
'machine',
'simonbaird_com',
'classic',
'modern',
'simple',
'securephp',
'Tes2',
'Lev',
'Sand',
'Sun',
'Tor',
'Cold',
'Babosa',
'Tumb',
'Stone',
'Disc',
'watermelon'
);
static $advanced_skins = array ();
static $advanced_skins_config = array ();
static $clock_types = array (
'linear',
'logClock',
'logClockRev'
);
// FUNCTIONS //
function widget( $args, $instance ) {
$skin = ( isset( $instance['skin'] ) )
? $instance['skin'] : 'swissRail';
// add custom skin parameters to the plugin skins array
if ( 'custom_'.$this->number == $skin )
self::$advanced_skins_config[$skin] = $instance['custom_skin'];
// set footer script flags
self::$add_script = true;
if ( in_array( $skin, self::$more_skins ) )
self::$add_moreskins = true;
if ( isset( self::$advanced_skins_config[$skin] ) )
self::$add_customskins = true;
$output = self::canvas( array(
'skin' => $skin,
'radius' => $instance['radius'],
'noseconds' => $instance['noseconds'],
'gmtoffset' => $instance['gmtoffset'],
'showdigital' => $instance['showdigital'],
'scale' => $instance['scale'],
'align' => $instance['align'],
'subtext' => apply_filters('widget_text', $instance['subtext'], $instance)
) );
return apply_filters( 'coolclock_widget', $output, $args, $instance );
}
static function update( $new_instance, $instance ) {
$instance['title'] = strip_tags( $new_instance['title'] );
$instance['skin'] = strip_tags( $new_instance['skin'] );
$instance['custom_skin'] = strip_tags( $new_instance['custom_skin'] );
$instance['radius'] = ( (int) $new_instance['radius'] < 5 ) ? 5 : (int) $new_instance['radius'];
$instance['noseconds'] = (bool) $new_instance['noseconds'];
$instance['gmtoffset'] = ( $new_instance['gmtoffset'] == '' ) ? '' : (float) $new_instance['gmtoffset'];
$instance['showdigital'] = (bool) $new_instance['showdigital'];
$instance['scale'] = strip_tags( $new_instance['scale'] );
$instance['align'] = strip_tags( $new_instance['align'] );
if ( current_user_can('unfiltered_html') )
$instance['subtext'] = $new_instance['subtext'];
else
// wp_filter_post_kses() expects slashed
$instance['subtext'] = stripslashes( wp_filter_post_kses( addslashes($new_instance['subtext']) ) );
return apply_filters( 'coolclock_widget_update', $instance, $new_instance );
}
static function form( $obj, $instance, $defaults = array ('title'=>'','custom_skin'=>'') ) {
$defaults = array_merge( $defaults, self::$defaults, self::$advanced_defaults );
$instance = wp_parse_args( (array) $instance, $defaults );
$title = esc_attr( $instance['title'] );
$subtext = esc_attr( $instance['subtext'] );
$custom_skin = esc_attr( $instance['custom_skin'] );
// Translatable skin names go here
$skin_names = array (
'swissRail' => __('Swiss Rail','coolclock'),
'chunkySwiss' => __('Chunky Swiss','coolclock'),
'chunkySwissOnBlack' => __('Chunky Swiss Black','coolclock'),
'fancy' => __('Fancy','coolclock'),
'machine' => __('Machine','coolclock'),
'simonbaird_com' => __('SimonBaird.com','coolclock'),
'classic' => __('Classic by Bonstio','coolclock'),
'modern' => __('Modern by Bonstio','coolclock'),
'simple' => __('Simple by Bonstio','coolclock'),
'securephp' => __('SecurePHP','coolclock'),
'Tes2' => __('Tes2','coolclock'),
'Lev' => __('Lev','coolclock'),
'Sand' => __('Sand','coolclock'),
'Sun' => __('Sun','coolclock'),
'Tor' => __('Tor','coolclock'),
'Cold' => __('Cold','coolclock'),
'Babosa' => __('Babosa','coolclock'),
'Tumb' => __('Tumb','coolclock'),
'Stone' => __('Stone','coolclock'),
'Disc' => __('Disc','coolclock'),
'watermelon' => __('Watermelon by Yoo Nhe','coolclock'),
'minimal' => __('Minimal','coolclock')
);
$skins = array_merge( self::$default_skins, self::$more_skins, self::$advanced_skins );
// Translatable type names go here
$type_names = array (
'linear' => __('Linear','coolclock'),
'logClock' => __('Logarithmic','coolclock'),
'logClockRev' => __('Logarithmic reversed','coolclock')
);
// Title
$output = '
' . __('Title:') . ' ';
$output .= '
';
// Clock settings
$output .= '
' . __('Clock', 'coolclock') . '
';
$output .= '
' . __('Skin:', 'coolclock') . ' ';
$output .= '';
foreach ($skins as $value) {
$output .= '' : '>';
$output .= ( isset($skin_names[$value]) ) ? $skin_names[$value] : $value;
$output .= '';
} unset($value);
$output .= 'number == $instance['skin'] ) ? ' selected="selected">' : '>';
$output .= __('Custom (define below)', 'coolclock') . '
';
// Custom skin field
$output .= '
' . __('Custom skin parameters:', 'coolclock') . ' ';
$output .= '' . $custom_skin . '
';
// Radius
$output .= '
' . __('Radius:', 'coolclock') . ' ';
$output .= '
';
// Second hand
$output .= '
' : '"false" />';
$output .= ' ' . __('Hide second hand', 'coolclock') . '
';
// Show digital
$output .= '
' : '"false" />';
$output .= ' ' . __('Show digital time', 'coolclock') . '
';
// Show digital
$output .= '
' . __('GMT offset:', 'coolclock') . ' ';
$output .= ' ' . __('(leave blank for local time)', 'coolclock') . '
';
// Scale
$output .= '
' . __('Scale:', 'coolclock') . ' ';
$output .= '';
foreach (self::$clock_types as $value) {
$output .= '' : '>';
$output .= ( isset($type_names[$value]) ) ? $type_names[$value] : $value;
$output .= '';
} unset($value);
$output .= '
';
// Align
$output .= '
' . __('Align:', 'coolclock') . ' ';
$output .= '';
$output .= '' : '>';
$output .= __('none', 'coolclock') . '';
$output .= ' ' : '>';
$output .= __('left', 'coolclock') . '';
$output .= ' ' : '>';
$output .= __('right', 'coolclock') . '';
$output .= ' ' : '>';
$output .= __('center', 'coolclock') . '';
$output .= '
';
// Subtext
$output .= '
' . __('Subtext:') . ' ';
$output .= ' ' . __('(basic HTML allowed)', 'coolclock') . '
';
// Advanced filter
if ( class_exists( 'CoolClockAdvanced' ) ) // add an upgrade notice
$advanced_form .= '
' . __('Background') . '
' . __('Pease upgrade the CoolClock - Pro extension.', 'coolclock') . ' ' . __('You can download the new version using the remaining download credits and the link that you have received in the confirmation email after your first purchase.', 'coolclock') . ' ' . __('If you do not have that email anymore, please contact us.', 'coolclock') . '
' . '
' . __('Do NOT resave widget settings before upgrading the pro extension or your advanced settings will be lost!', 'coolclock') . ' ';
else
$advanced_form = '
' . __('Background') . '
' . __('Available in the Pro extension »', 'coolclock') . '
';
$output .= apply_filters( 'coolclock_widget_form', $advanced_form, $obj, $instance, $defaults );
return $output;
}
static function go() {
add_action('plugins_loaded', create_function( '', "return load_plugin_textdomain( 'coolclock', false, dirname(plugin_basename( __FILE__ )).'/languages' );" ) );
add_action( 'init', array(__CLASS__, 'init' ) );
add_action( 'widgets_init', create_function( '', 'return register_widget("CoolClock_Widget");' ) );
}
static function init() {
add_shortcode( 'coolclock', array( __CLASS__, 'handle_shortcode' ) );
//move wpautop filter to AFTER shortcode is processed
// remove_filter( 'the_content', 'wpautop' );
// add_filter( 'the_content', 'wpautop' , 99);
// add_filter( 'the_content', 'shortcode_unautop', 100);
// allow shortcode in text widgets
//add_filter('widget_text', 'do_shortcode', 11);
wp_register_script( 'coolclock', plugins_url('/js/coolclock.min.js', __FILE__), array('jquery'), self::$script_version, true );
wp_register_script( 'coolclock-moreskins', plugins_url('/js/moreskins.min.js', __FILE__), array('coolclock'), self::$script_version, true );
// could use plugins_url( '/js/excanvas.min.js', __FILE__ ) (version 73, but it seems to cause issues for IE in compatibility mode)
// or http://cdnjs.cloudflare.com/ajax/libs/flot/0.7/excanvas.min.js
// or http://randomibis.com/coolclock/excanvas.js
wp_register_script( 'excanvas', plugins_url( '/js/excanvas.min.js', __FILE__ ), array(), '73', true );
add_action( 'wp_footer', array( __CLASS__, 'print_scripts' ) );
}
static function handle_shortcode( $atts ) {
if ( !is_feed() )
return '';
$atts = shortcode_atts( array_merge( self::$defaults, self::$advanced_defaults ), $atts );
// set footer script flags
self::$add_script = true;
if ( in_array( $atts['skin'], self::$more_skins ) )
self::$add_moreskins = true;
if ( isset( self::$advanced_skins_config[$atts['skin']] ) )
self::$add_customskins = true;
$output = self::canvas( $atts );
return apply_filters( 'coolclock_shortcode', $output, $atts );
}
static function canvas( $atts ) {
extract( $atts );
$output = '
';
// canvas parameters
$output .= '
';
$output .= ( $subtext ) ? '
' . $subtext . '
' : '';
// before returning, try including excanvas which needs to be there before the first canvas...
self::print_excanvas();
return $output;
}
static function print_excanvas() {
if ( self::$done_excanvas )
return;
echo '
';
self::$done_excanvas = true;
}
static function print_scripts() {
if ( ! self::$add_script )
return;
wp_print_scripts( 'coolclock' );
if ( self::$add_moreskins )
wp_print_scripts('coolclock-moreskins');
if ( self::$add_customskins ) {
echo '
';
}
}
}
CoolClock::go();
/**
* CoolClock Widget Class
*/
class CoolClock_Widget extends WP_Widget {
/** constructor -- name this the same as the class above */
function CoolClock_Widget() {
parent::WP_Widget(
'coolclock-widget',
__('Analog Clock', 'coolclock'),
array(
'classname' => 'coolclock',
'description' => __('Add an analog clock to your sidebar.', 'coolclock')
),
array(
'width' => 300,
'id_base' => 'coolclock-widget'
)
);
}
/** @see WP_Widget::widget -- do not rename this */
function widget( $args, $instance ) {
extract( $args );
$title = apply_filters( 'widget_title', $instance['title'] );
// Print output
echo $before_widget;
if ( $title )
echo $before_title . $title . $after_title;
echo CoolClock::widget( $args, $instance );
echo $after_widget;
}
/** @see WP_Widget::update -- do not rename this */
function update( $new_instance, $old_instance ) {
return CoolClock::update( $new_instance, $old_instance );
}
/** @see WP_Widget::form -- do not rename this */
function form( $instance ) {
// Print output
echo CoolClock::form( $this, $instance );
}
}