/home/techb158/public_html/wp-content/plugins/wpforms-lite/src/Forms/Fields
Edit: /home/techb158/public_html/wp-content/plugins/wpforms-lite/src/Forms/Fields/Registry.php (1257B)
type ) ) {
return;
}
$this->fields[ $field->type ] = $field;
}
/**
* Get a map of field type slug to human-readable field name.
*
* @since 2.0.0
*
* @return array
*/
public function get_names(): array {
$names = [];
foreach ( $this->fields as $type => $field ) {
$names[ $type ] = (string) $field->name;
}
return $names;
}
}