__('Alerts', 'aqpb-l10n'), 'size' => 'span6', ); //create the block parent::__construct('aq_alert_block', $block_options); } function form($instance) { $defaults = array( 'content' => '', 'type' => 'note', 'style' => '' ); $instance = wp_parse_args($instance, $defaults); extract($instance); $type_options = array( 'default' => 'Standard', 'info' => 'Info', 'note' => 'Notification', 'warn' => 'Warning', 'tips' => 'Tips' ); ?>

' . do_shortcode(htmlspecialchars_decode($content)) . ''; } } }