/** * Prints a HTML input field * * @param array the args * * @return void */ function erp_html_form_input($args = array()) { $defaults = array('placeholder' => '', 'required' => false, 'type' => 'text', 'class' => '', 'tag' => '', 'wrapper_class' => '', 'label' => '', 'name' => '', 'id' => '', 'value' => '', 'help' => '', 'custom_attr' => array(), 'options' => array()); $field = wp_parse_args($args, $defaults); $field_id = empty($field['id']) ? $field['name'] : $field['id']; $field_attributes = array_merge(array('name' => $field['name'], 'id' => $field_id, 'class' => $field['class'], 'placeholder' => $field['placeholder']), $field['custom_attr']); if ($field['required']) { $field_attributes['required'] = 'required'; } $custom_attributes = erp_html_form_custom_attr($field_attributes); // open tag if (!empty($field['tag'])) { echo '<' . $field['tag'] . ' class="erp-form-field ' . esc_attr($field['name']) . '_field ' . esc_attr($field['wrapper_class']) . '">'; } if (!empty($field['label'])) { erp_html_form_label($field['label'], $field_id, $field['required']); } switch ($field['type']) { case 'text': case 'email': case 'number': case 'url': echo '<input type="' . $field['type'] . '" value="' . esc_attr($field['value']) . '" ' . implode(' ', $custom_attributes) . ' />'; break; case 'select': if ($field['options']) { echo '<select ' . implode(' ', $custom_attributes) . '>'; foreach ($field['options'] as $key => $value) { printf("<option value='%s'%s>%s</option>\n", $key, selected($field['value'], $key, false), $value); } echo '</select>'; } break; case 'textarea': echo '<textarea ' . implode(' ', $custom_attributes) . '>' . esc_textarea($field['value']) . '</textarea>'; break; case 'checkbox': echo '<input type="checkbox" value="' . esc_attr($field['value']) . '" ' . implode(' ', $custom_attributes) . ' />'; break; default: # code... break; } erp_html_form_help($field['help']); // closing tag if (!empty($field['tag'])) { echo '</' . $field['tag'] . '>'; } }
/** * Prints a HTML input field * * @param array the args * * @return void */ function erp_html_form_input($args = array()) { $defaults = array('placeholder' => '', 'required' => false, 'type' => 'text', 'class' => '', 'tag' => '', 'wrapper_class' => '', 'label' => '', 'name' => '', 'id' => '', 'value' => '', 'help' => '', 'addon' => '', 'addon_pos' => 'before', 'custom_attr' => array(), 'options' => array()); $field = wp_parse_args($args, $defaults); $field_id = empty($field['id']) ? $field['name'] : $field['id']; $field_attributes = array_merge(array('name' => $field['name'], 'id' => $field_id, 'class' => $field['class'], 'placeholder' => $field['placeholder']), $field['custom_attr']); if ($field['required']) { $field_attributes['required'] = 'required'; } $custom_attributes = erp_html_form_custom_attr($field_attributes); // open tag if (!empty($field['tag'])) { echo '<' . $field['tag'] . ' class="erp-form-field ' . esc_attr($field['name']) . '_field ' . esc_attr($field['wrapper_class']) . '">'; } if (!empty($field['label'])) { erp_html_form_label($field['label'], $field_id, $field['required']); } if (!empty($field['addon'])) { echo '<div class="input-group">'; if ($field['addon_pos'] == 'before') { echo '<span class="input-group-addon">' . $field['addon'] . '</span>'; } } switch ($field['type']) { case 'text': case 'email': case 'number': case 'hidden': case 'url': echo '<input type="' . $field['type'] . '" value="' . esc_attr($field['value']) . '" ' . implode(' ', $custom_attributes) . ' />'; break; case 'select': if ($field['options']) { echo '<select ' . implode(' ', $custom_attributes) . '>'; foreach ($field['options'] as $key => $value) { printf("<option value='%s'%s>%s</option>\n", $key, selected($field['value'], $key, false), $value); } echo '</select>'; } break; case 'textarea': echo '<textarea ' . implode(' ', $custom_attributes) . '>' . esc_textarea($field['value']) . '</textarea>'; break; case 'checkbox': //echo '<input type="hidden" value="off" name="' . $field['name'] . '" />'; echo '<span class="checkbox">'; echo '<label for="' . esc_attr($field_attributes['id']) . '">'; echo '<input type="checkbox" ' . checked($field['value'], 'on', false) . ' value="on" ' . implode(' ', $custom_attributes) . ' />'; echo wp_kses_post($field['help']); echo '</label>'; echo '</span>'; break; case 'multicheckbox': echo '<span class="checkbox">'; unset($custom_attributes['id']); foreach ($field['options'] as $key => $value) { echo '<label for="' . esc_attr($field_attributes['id']) . '-' . $key . '">'; if (!empty($field['value'])) { if (is_array($field['value'])) { $checked = in_array($key, $field['value']) ? 'checked' : ''; } else { if (is_string($field['value'])) { $checked = in_array($key, explode(',', $field['value'])) ? 'checked' : ''; } else { $checked = ''; } } } else { $checked = ''; } echo '<input type="checkbox" ' . $checked . ' id="' . esc_attr($field_attributes['id']) . '-' . $key . '" value="' . $key . '" ' . implode(' ', $custom_attributes) . ' />'; echo '<span class="checkbox-value">' . wp_kses_post($value) . '</span>'; echo '</label>'; } echo '</span>'; break; case 'radio': if ($field['options']) { foreach ($field['options'] as $key => $value) { echo '<input type="radio" ' . checked($field['value'], $key, false) . ' value="' . $key . '" ' . implode(' ', $custom_attributes) . ' />' . $value . ' '; } } break; case 'file': //need to enqueue wp_enqueue_script( 'plupload-handlers' ); wp_enqueue_script( 'erp-file-upload' ); $id = $field['id']; $pick_files = $id . '-upload-pickfiles'; $drop = $id . '-drop-files'; $action = isset($field['action']) ? $field['action'] : 'erp_file_upload'; $call_back = isset($field['callback']) ? json_encode($field['callback']) : json_encode([]); $values = is_array($field['value']) ? $field['value'] : []; ?> <div id="<?php echo $id; ?> " class="erp-attachment-area"> <div id="<?php echo $drop; ?> " class="erp-drop-jon"> <div class="erp-attachment-upload-filelist" data-type="file"> <ul class="erp-attachment-list"> <?php $uploader = new \WeDevs\ERP\Uploader(); foreach ($values as $key => $attach_id) { echo $uploader->attach_html($attach_id, $custom_attributes); } ?> </ul> <div class="erp-clear"></div> <div class="erp-attc-link-text"><?php _e('To attach, ', 'wp-erp'); ?> <a id="<?php echo $pick_files; ?> " href="#"><?php _e('select files', 'wp-erp'); ?> </a><?php _e(' from your computer.', 'wp-erp'); ?> </div> </div> </div> </div> <script type="text/javascript"> jQuery(function($) { var pick_files = '<?php echo $pick_files; ?> ', id = '<?php echo $id; ?> ', drop_jone = '<?php echo $drop; ?> ', action = '<?php echo $action; ?> ', callback = <?php echo $call_back; ?> ; new ERP_Uploader( action, pick_files, id, drop_jone, 'file_upload', 'jpg,jpeg,gif,png,bmp,zip', 1024, callback ); }); </script> <?php break; default: # code... break; } if (!empty($field['addon'])) { if ($field['addon_pos'] == 'after') { echo '<span class="input-group-addon">' . $field['addon'] . '</span>'; } echo '</div>'; } if ($field['type'] != 'checkbox') { erp_html_form_help($field['help']); } // closing tag if (!empty($field['tag'])) { echo '</' . $field['tag'] . '>'; } }
<?php erp_html_form_label(__('Department Lead', 'wp-erp'), 'dept-lead'); ?> <span class="field"> <select name="lead" id="dept-lead"> <?php echo erp_hr_get_employees_dropdown(); ?> </select> </span> </div> <div class="row"> <?php erp_html_form_label(__('Parent Department', 'wp-erp'), 'parent-dept'); ?> <span class="field"> <select name="parent" id="dept-parent"> <?php echo erp_hr_get_departments_dropdown(); ?> </select> </span> </div> <?php wp_nonce_field('erp-new-dept'); ?> <input type="hidden" name="action" id="dept-action" value="erp-hr-new-dept">
<# if ( data.avatar.id ) { #> <img src="{{ data.avatar.url }}" alt="" /> <a href="#" class="erp-remove-photo">×</a> <# } else { #> <a href="#" id="erp-set-customer-photo" class="button button-small"><?php _e('Upload Customer Photo', 'wp-erp'); ?> </a> <# } #> </div> </li> <# if ( data.type == 'contact' ) { #> <li class="full-width name-container clearfix"> <?php erp_html_form_label(__('Full Name', 'wp-erp'), 'full-name', true); ?> <ol class="fields-inline"> <li> <?php erp_html_form_input(array('label' => __('First Name', 'wp-erp'), 'name' => 'first_name', 'id' => 'first_name', 'value' => '{{ data.first_name }}', 'required' => true, 'custom_attr' => array('maxlength' => 30))); ?> </li> <li> <?php erp_html_form_input(array('label' => __('Last Name', 'wp-erp'), 'name' => 'last_name', 'id' => 'last_name', 'value' => '{{ data.last_name }}', 'required' => true, 'custom_attr' => array('maxlength' => 30))); ?> </li> </ol>