__('AT Piechart', 'aakanksha'), 'size' => 'span12', ); //create the widget parent::__construct('as_Piechart_Block', $block_options); //add ajax functions add_action('wp_ajax_as_block_piechart_add_new', array($this, 'add_piechart')); } function form($instance) { $defaults = array( 'piecharts' => array( 1 => array( 'title' => 'Add new piechart', 'percent' => '100', 'easing' => 'easeOutExpo', 'animate' => '4000', 'cap' => 'square', 'width' => '5', 'track' => '#ecf0f1', 'bar' => '#5ac3bc', ) ), 'column' => 'three', 'margin_top' => 10, 'margin_bottom' => 10, ); $instance = wp_parse_args($instance, $defaults); extract($instance); $pie_columns = array( 'two' => 'Two Columns', 'three' => 'Three Columns', 'four' => 'Four Columns', ); ?>
-