$value) { db_process_sql_update('tupdate_settings', array('value' => $value), array('key' => $key)); } ui_print_success_message(__('License updated')); } ui_require_javascript_file_enterprise('load_enterprise'); enterprise_include_once('include/functions_license.php'); $license = enterprise_hook('license_get_info'); $rows = db_get_all_rows_in_table('tupdate_settings'); $settings = new StdClass; foreach ($rows as $row) { $settings->$row['key'] = $row['value']; } echo ''; echo '
'; $table->width = '95%'; $table->data = array (); $table->data[0][0] = ''.__('Customer key').''; $table->data[0][1] = html_print_input_text ('keys[customer_key]', $settings->customer_key, '', 81, 255, true); $table->data[1][0] = ''.__('Company name').''; $table->data[1][1] = html_print_input_text ('company', preg_replace('/0+$/', '', substr($settings->customer_key, 0, 12)), '', 81, 255, true); $table->data[2][0] = ''.__('Expires').''; $table->data[2][1] = html_print_input_text('expires', $license['expiry_date'], '', 10, 255, true, true); $table->data[3][0] = ''.__('Platform Limit').''; $table->data[3][1] = html_print_input_text('expires', $license['max_agents'], '', 10, 255, true, true); $table->data[4][0] = ''.__('Current Platform Count').''; $table->data[4][1] = html_print_input_text('expires', $license['agent_count'], '', 10, 255, true, true); $table->data[5][0] = ''.__('License Mode').''; $table->data[5][1] = html_print_input_text('expires', $license['license_mode'], '', 10, 255, true, true); html_print_table ($table); if (enterprise_installed()) { echo '
'; html_print_input_hidden ('update_settings', 1); html_print_submit_button (__('Validate'), 'update_button', false, 'class="sub upd"'); echo ' '; html_print_button(__('Request new license'), '', false, 'generate_request_code()', 'class="ui-button-dialog ui-widget ui-state-default ui-corner-all ui-button-text-only sub next"'); echo '
'; } echo '
'; echo ''; ?>