enabled = class_exists( 'WeForms_Pro' ); $this->title = __( 'Polling Form', 'weforms' ); $this->description = ''; $this->category = 'default'; $this->image = WEFORMS_ASSET_URI . '/images/form-template/polling_form.png'; $this->category = 'feedback'; } /** * Get the form fields * * @return array */ public function get_form_fields() { $all_fields = $this->get_available_fields(); $form_fields = array( array_merge( $all_fields['radio_field']->get_field_props(), array( 'required' => 'yes', 'label' => 'Poll Question', 'name' => 'poll_field', ) ), ); return $form_fields; } /** * Get the form settings * * @return array */ public function get_form_settings() { $defaults = $this->get_default_settings(); return array_merge( $defaults, array( 'message' => __( 'Thanks for taking part in the poll!', 'weforms' ), 'submit_text' => __( 'Submit', 'weforms' ), 'label_position' => 'left', ) ); } }