"; // Display user field input if ($profile_method == "input") { $options = [ 'inline' => TRUE, 'max_length' => 16, 'regex' => '[a-z](?=[\w.]{3,31}$)\w*\.?\w*', 'error_text' => $locale['uf_line_error'], 'regex_error_text' => $locale['uf_line_error_1'], 'placeholder' => $locale['uf_line'], 'label_icon' => $icon ] + $options; $user_fields = form_text('user_line', $locale['uf_line'], $field_value, $options); // Display in profile } else if ($profile_method == "display") { $user_fields = [ 'icon' => $icon, 'title' => $locale['uf_line'], 'value' => $field_value ?: '' ]; }