Tribe__Field::do_fieldset_attributes()
Return a string of attributes for the fieldset
Return
(string)
Source
File: src/Tribe/Field.php
public function do_fieldset_attributes() {
$return = '';
if ( ! empty( $this->fieldset_attributes ) ) {
foreach ( $this->fieldset_attributes as $key => $value ) {
$return .= ' ' . $key . '="' . $value . '"';
}
}
return apply_filters( 'tribe_fieldset_attributes', $return, $this->name, $this );
}