false,
'required' => false,
'label' => false,
'description' => false,
'field_alignment' => true,
);
}
protected function extra_field_default_opts() {
return array(
'field_alignment' => 'left',
);
}
public function show_primary_options() {
$field = $this->get_field();
do_action('hashform_before_html_primary_option');
?>
get_field();
$content = isset($field['description']) ? $field['description'] : '';
$content = apply_filters('hashform_translate_string', $content, 'Hash Form', HashFormBuilder::get_form_title($field['form_id']) . ' - ' . $field['id'] . ' - ' . 'Field Description');
/*
* Sanitized again on the way out, not only on the way in: rows saved
* before that was done still hold whatever was pasted into them.
*/
$content = HashFormHelper::sanitize_html_field_content($content);
?>