$id_field)); $name = $field['name']; $display_on_front = $field['display_on_front']; $is_password_type = $field['is_password_type']; ui_print_page_header (__("Update agent custom field"), "images/custom_field.png", false, "", true, ""); } else { ui_print_page_header (__("Create agent custom field"), "images/custom_field.png", false, "", true, ""); } $table = new stdClass(); $table->width = '100%'; $table->class = 'databox filters'; $table->style[0] = 'font-weight: bold'; $table->style[2] = 'font-weight: bold'; $table->data = array (); $table->data[0][0] = __('Name'); $table->data[0][1] = html_print_input_text ('name', $name, '', 35, 100, true); $table->data[0][2] = __('Pass type').ui_print_help_tip (__('The fields with pass type enabled will be displayed like html input type pass in html'), true); $table->data[0][3] = html_print_checkbox ('is_password_type', 1, $is_password_type, true); $table->data[0][4] = __('Display on front').ui_print_help_tip (__('The fields with display on front enabled will be displayed into the agent details'), true); $table->data[0][5] = html_print_checkbox ('display_on_front', 1, $display_on_front, true); echo '
'; html_print_table ($table); echo '
'; if ($id_field) { html_print_input_hidden ('update_field', 1); html_print_input_hidden ('id_field', $id_field); html_print_submit_button (__('Update'), 'updbutton', false, 'class="sub upd"'); } else { html_print_input_hidden ('create_field', 1); html_print_submit_button (__('Create'), 'crtbutton', false, 'class="sub wand"'); } echo '
'; echo '
'; ?>