/**
  * Initialise Shortcode Settings Form Fields.
  */
 public function init_form_fields()
 {
     $this->form_fields = array('label' => array('title' => __('Button Label', 'axiscomposer'), 'description' => __('This option lets you define button label.', 'axiscomposer'), 'default' => __('Add your button label here.', 'axiscomposer'), 'type' => 'text', 'desc_tip' => true), 'link' => array('title' => __('Button Link', 'axiscomposer'), 'description' => __('This option lets you enter button link.', 'axiscomposer'), 'type' => 'text', 'desc_tip' => true, 'default' => ''), 'cta_maintext' => array('title' => __('CTA Main Text', 'axiscomposer'), 'description' => __('Enter main text description for call to action.', 'axiscomposer'), 'type' => 'text', 'desc_tip' => true, 'default' => ''), 'cta_extratext' => array('title' => __('CTA Addtional Text', 'axiscomposer'), 'description' => __('Enter addtional text description for call to action.', 'axiscomposer'), 'type' => 'text', 'desc_tip' => true, 'default' => ''), 'iconfont' => array('title' => __('Button Icon', 'axiscomposer'), 'description' => __('Select an icon for your Button below.', 'axiscomposer'), 'type' => 'iconfont', 'default' => 'entypo-fontello', 'options' => ac_get_iconfont_charlist()));
 }
 /**
  * Initialise Shortcode Settings Form Fields.
  */
 public function init_form_fields()
 {
     $this->form_fields = array('label' => array('title' => __('Button Label', 'axiscomposer'), 'description' => __('This option lets you define button label.', 'axiscomposer'), 'default' => __('Add your button label here.', 'axiscomposer'), 'type' => 'text', 'desc_tip' => true), 'link' => array('title' => __('Button Link', 'axiscomposer'), 'description' => __('This option lets you enter button link.', 'axiscomposer'), 'type' => 'text', 'desc_tip' => true, 'default' => ''), 'size' => array('title' => __('Button Size', 'axiscomposer'), 'description' => __('This sets the custom size of the button.', 'axiscomposer'), 'default' => 'medium', 'type' => 'select', 'class' => 'ac-enhanced-select', 'css' => 'min-width: 350px;', 'desc_tip' => true, 'options' => array('small' => __('Small', 'axiscomposer'), 'medium' => __('Medium', 'axiscomposer'), 'large' => __('Large', 'axiscomposer'))), 'position' => array('title' => __('Button Position', 'axiscomposer'), 'description' => __('This sets the custom alignment of the button.', 'axiscomposer'), 'default' => 'center', 'type' => 'select', 'class' => 'ac-enhanced-select', 'css' => 'min-width: 350px;', 'desc_tip' => true, 'options' => array('left' => __('Left Align', 'axiscomposer'), 'center' => __('Center Align', 'axiscomposer'), 'right' => __('Right Align', 'axiscomposer'))), 'iconfont' => array('title' => __('Button Icon', 'axiscomposer'), 'description' => __('Select an icon for your Button below.', 'axiscomposer'), 'type' => 'iconfont', 'default' => 'entypo-fontello', 'options' => ac_get_iconfont_charlist()));
 }