__( 'AT Text', 'aakanksha'), 'size' => 'span12', ); //create the block parent::__construct('as_Text_Block', $block_options); } function form($instance) { $defaults = array( 'text' => '', 'font_size' => '18', 'margin_top' => '10', 'margin_bottom' => '10', 'duration' => '900', 'delay' => '0', 'animation' => '', 'align' => '' ); $instance = wp_parse_args($instance, $defaults); extract($instance); global $include_animation ; $text_align = array( 'center' => 'Center', 'left' => 'Left', 'right' => 'Right', ); ?>

 -   -     -  

   -  

'; $output .= do_shortcode(htmlspecialchars_decode('

'.$text.'

')); $output .= ''; echo $output; } function before_block($instance) { extract($instance); echo '
'; } function after_block($instance) { extract($instance); echo '
'; } } as_register_block( 'as_Text_Block' ); endif;