%PDF-1.4 %âãÏÓ 191 0 obj <> endobj 403 Forbidden
One Hat Cyber Team
  • Dir : ~/home/mshshams/iyanfluencer.com/core/app/Helper/
  • Edit File: FormBuilderCustom.php
    '; break; case('file'): $required_markup = !empty($requried) ? $required_markup_html : ''; $mimes_type_markup = str_replace('mimes:', __('Accept File Type:') . ' ', $mimes); $markup = '
    ' . $mimes_type_markup . '
    '; break; case('checkbox'): $required_markup = !empty($requried) ? $required_markup_html : ''; $markup = '
    '; break; case('select'): $option_markup = ''; $required_markup = !empty($requried) ? $required_markup_html : ''; foreach ($options as $opt) { $option_markup .= ''; } $markup = '
    '; break; default: $required_markup = !empty($requried) ? $required_markup_html : ''; $markup = '
    '; break; } return $markup; } public static function render_drag_drop_form_builder($content = '') { $output = ''; $form_fields = json_decode($content); $output .= ''; return $output; } private static function form_builder_field_markup($key, $type, $name, $placeholder, $required, $args = []) { $name = SanitizeInput::esc_html($name); $placeholder = SanitizeInput::esc_html($placeholder); $required_check = !empty($required) ? 'checked' : ''; $output = '
  • x '; $output .= '
    '; if ($type === 'select') { $output .= '
    ' . __('separate option by new line') . '
    '; } if ($type === 'file') { $output .= '
    '; } $output .= '
  • '; return $output; } }