From 83023120915b361d3523a3613713fec33fc0b179 Mon Sep 17 00:00:00 2001 From: Ramon Novoa Date: Mon, 2 Jun 2014 16:01:39 +0000 Subject: [PATCH] 2014-06-02 Ramon Novoa * godmode/setup/license.php: Added to repository. License configuration screen. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@10078 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 5 ++ pandora_console/godmode/setup/license.php | 102 ++++++++++++++++++++++ 2 files changed, 107 insertions(+) create mode 100644 pandora_console/godmode/setup/license.php diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 0ffa3fe3ad..caccc5b555 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2014-06-02 Ramon Novoa + + * godmode/setup/license.php: Added to repository. License configuration + screen. + 2014-06-02 Ramon Novoa * extensions/update_manager/settings.php diff --git a/pandora_console/godmode/setup/license.php b/pandora_console/godmode/setup/license.php new file mode 100644 index 0000000000..808cbe2c94 --- /dev/null +++ b/pandora_console/godmode/setup/license.php @@ -0,0 +1,102 @@ + $value) { + um_db_update_setting ($key, $value); + } + + 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'); + +$settings = null; +$settings = um_db_load_settings (); + +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] = ''.__('Expires').''; +$table->data[1][1] = html_print_input_text('expires', $license['expiry_date'], '', 10, 255, true, true); + +$table->data[2][0] = ''.__('Platform Limit').''; +$table->data[2][1] = html_print_input_text('expires', $license['max_agents'], '', 10, 255, true, true); + +$table->data[3][0] = ''.__('Current Platform Count').''; +$table->data[3][1] = html_print_input_text('expires', $license['agent_count'], '', 10, 255, true, true); + +$table->data[4][0] = ''.__('License Mode').''; +$table->data[4][1] = html_print_input_text('expires', $license['license_mode'], '', 10, 255, true, true); + +html_print_table ($table); +echo '
'; +html_print_input_hidden ('update_settings', 1); +html_print_submit_button (__('Validate'), 'update_button', false, 'class="sub upd"'); +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 ''; + +?>