'adblock_invite_widget_class', 'description' => 'Detects if the visitor have AdBlock (or another) plugin/extension installed and if not, gives URL to download it.' ); $this->WP_Widget('adblock_invite_widget', 'Adblock invite', $widget_ops); } function form($instance) { $instance = wp_parse_args( (array) $instance, array( 'title' => 'You do not block ads?', 'message' => '

It seems that you don\'t have AdBlock (or another) installed in your browser. I encourage you to install it for free

Download AdBlock

' ) ); $title = $instance['title']; $message = $instance['message']; ?>