X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=admin%2Finst_module.php;h=c465a55133e8cb9708d4c941c9adc110e29a1f1a;hb=31966256a900343308ce287a246fe3a52e9a613c;hp=11c30bfa5d2f62a6c53093e53a73331e4d01cff8;hpb=c70823611ef71079c28542f4810cc50c183a8cd5;p=fa-stable.git diff --git a/admin/inst_module.php b/admin/inst_module.php index 11c30bfa..c465a551 100644 --- a/admin/inst_module.php +++ b/admin/inst_module.php @@ -13,37 +13,44 @@ $page_security = 'SA_CREATEMODULES'; $path_to_root=".."; include_once($path_to_root . "/includes/session.inc"); -page(_("Install/Activate extensions")); +page(_($help_context = "Install/Activate extensions")); include_once($path_to_root . "/includes/date_functions.inc"); include_once($path_to_root . "/admin/db/company_db.inc"); include_once($path_to_root . "/admin/db/maintenance_db.inc"); include_once($path_to_root . "/includes/ui.inc"); -//--------------------------------------------------------------------------------------------- - -if (isset($_GET['selected_id'])) -{ - $selected_id = $_GET['selected_id']; -} -elseif (isset($_POST['selected_id'])) -{ - $selected_id = $_POST['selected_id']; -} -else - $selected_id = -1; +simple_page_mode(true); //--------------------------------------------------------------------------------------------- -function get_company_extensions($id = -1) { - - global $path_to_root; +function update_extensions($extensions) { + global $db_connections; + + if (!write_extensions($extensions)) { + display_notification(_("Cannot update system extensions list.")); + return false; + } - $file = $path_to_root.($id == -1 ? '' : '/company/'.$id).'/installed_extensions.php'; - $installed_extensions = array(); - if (is_file($file)) { - include($file); + // update per company files + $cnt = count($db_connections); + for($i = 0; $i < $cnt; $i++) + { + $newexts = $extensions; + // update 'active' status + $exts = get_company_extensions($i); + foreach ($exts as $key => $ext) + { + if (isset($newexts[$key])) + $newexts[$key]['active'] = $exts[$key]['active']; + } + if(!write_extensions($newexts, $i)) + { + display_notification(sprintf(_("Cannot update extensions list for company '%s'."), + $db_connections[$i]['name'])); + return false; + } } - return $installed_extensions; + return true; } function check_data($id, $exts) @@ -78,19 +85,23 @@ function check_data($id, $exts) function handle_submit() { - global $path_to_root, $db_connections, $selected_id; + global $path_to_root, $db_connections, $selected_id, $next_extension_id; $extensions = get_company_extensions(); - if (!check_data($selected_id), $extensions) + if (!check_data($selected_id, $extensions)) return false; + $id = $selected_id==-1 ? $next_extension_id : $selected_id; - $id = $_GET['id']; + if ($selected_id != -1 && $extensions[$id]['type'] != 'plugin') { + display_error(_('Module installation support is not implemented yet. You have to do it manually.')); + return; + } $extensions[$id]['tab'] = $_POST['tab']; $extensions[$id]['name'] = $_POST['name']; $extensions[$id]['path'] = $_POST['path']; $extensions[$id]['title'] = $_POST['title']; - $extensions[$id]['active'] = $_POST['active']; + $extensions[$id]['active'] = check_value('active'); // Currently we support only plugin extensions here. $extensions[$id]['type'] = 'plugin'; @@ -132,67 +143,53 @@ function handle_submit() } else $extensions[$id]['acc_file'] = get_post('acc_file'); - - if (!write_extensions($extensions)) + + // security area guess for plugins + if ($extensions[$id]['type'] == 'plugin'){ + $exttext = file_get_contents($path_to_root.'/modules/' + .$extensions[$id]['path'].'/'.$extensions[$id]['filename']); + $area = 'SA_OPEN'; + if (preg_match('/.*\$page_security\s*=\s*[\'"]([^\'"]*)/', $exttext, $match)) { + $area = trim($match[1]); + } + $extensions[$id]['access'] = $area; + } + + if ($selected_id == -1) + { + $next_extension_id++; + } + if (!update_extensions($extensions)) return false; return true; } -//--------------------------------------------------------------------------------------------- - function handle_delete() { - global $path_to_root; + global $path_to_root, $db_connections, $selected_id; $extensions = get_company_extensions(); - $id = $_GET['id']; + $id = $selected_id; - $path = $extensions[$id]['path']; + $filename = $path_to_root + . ($extensions[$id]['type']=='plugin' ? "/modules/": '/') + . $extensions[$id]['path']; - if ($extensions[$id]['type'] != 'plugin') { - display_error(_('Module installation support is not implemented yet. You have to do it manually.')); - return; - } - - $filename = "$path_to_root/modules/$path"; - if ($h = opendir($filename)) - { - while (($file = readdir($h)) !== false) - { - if (is_file("$filename/$file")) - unlink("$filename/$file"); - } - closedir($h); - } + flush_dir($filename); rmdir($filename); - unset($extensions[$id]); - $mods = array_values($extensions); - $extensions = $mods; - - if (!write_extensions($extensions)) - return; - - // should we also delete module form per company extension files? - - meta_forward($_SERVER['PHP_SELF']); + if (update_extensions($extensions)) + display_notification(_("Selected extension has been successfully deleted")); + return true; } //--------------------------------------------------------------------------------------------- function display_extensions() { - global $table_style, $tabs; - - echo " - "; + global $table_style; + start_table($table_style); $th = array(_("Name"),_("Tab"), _("Link text"), _("Folder"), _("Filename"), _("Access extensions"),"", ""); @@ -200,44 +197,39 @@ function display_extensions() $k = 0; $mods = get_company_extensions(); - $n = count($mods); - for ($i = 0; $i < $n; $i++) + $mods = array_natsort($mods, null, 'name'); + + foreach($mods as $i => $mod) { - $is_mod = $mods[$i]['type'] == 'module'; + $is_mod = $mod['type'] == 'module'; alt_table_row_color($k); - label_cell($mods[$i]['name']); - label_cell( $is_mod ? $mods[$i]['title'] : $tabs[$mods[$i]['tab']]); - $ttl = access_string($mods[$i]['title']); + label_cell($mod['name']); + label_cell( $is_mod ? + $mod['title'] : access_string($_SESSION['App']->applications[$mod['tab']]->name, true)); + $ttl = access_string($mod['title']); label_cell($ttl[0]); - label_cell($mods[$i]['path']); - label_cell($mods[$i]['filename']); - label_cell(@$mods[$i]['acc_file']); - $edit = _("Edit"); - $delete = _("Delete"); + label_cell($mod['path']); + label_cell($mod['filename']); + label_cell(@$mod['acc_file']); if ($is_mod) { label_cell(''); // not implemented (yet) - label_cell(''); } else { - if (user_graphic_links()) - { - $edit = set_icon(ICON_EDIT, $edit); - $delete = set_icon(ICON_DELETE, $delete); - } - label_cell("$edit"); - label_cell("$delete"); + edit_button_cell("Edit".$i, _("Edit")); } + delete_button_cell("Delete".$i, _("Delete")); + submit_js_confirm('Delete'.$i, _('You are about to delete this extension\nDo you want to continue?')); end_row(); } - end_table(); + end_table(1); } function company_extensions($id) { - global $table_style, $tabs; + global $table_style; start_table($table_style); @@ -255,18 +247,18 @@ function company_extensions($id) continue 2; } } - + $mods = array_natsort($mods, null, 'name'); table_header($th); $k = 0; - $n = count($mods); - for ($i = 0; $i < $n; $i++) + foreach($mods as $i => $mod) { alt_table_row_color($k); - label_cell($mods[$i]['name']); - label_cell($mods[$i]['type'] == 'module' ? $mods[$i]['title'] : $tabs[$mods[$i]['tab']]); - $ttl = access_string($mods[$i]['title']); + label_cell($mod['name']); + label_cell( $mod['type'] == 'module' ? + $mod['title'] : access_string($_SESSION['App']->applications[$mod['tab']]->name, true)); + $ttl = access_string($mod['title']); label_cell($ttl[0]); - check_cells(null, 'Active'.$i, @$mods[$i]['active'] ? 1:0, + check_cells(null, 'Active'.$i, @$mod['active'] ? 1:0, false, false, "align='center'"); end_row(); } @@ -279,43 +271,34 @@ function company_extensions($id) function display_ext_edit($selected_id) { - global $table_style2; + global $table_style2, $Mode; - $extensions = get_company_extensions(); - if ($selected_id != -1) - $n = $selected_id; - else - $n = count($extensions); - - echo " - "; + $extensions = get_company_extensions(); start_table($table_style2); if ($selected_id != -1 && $extensions[$selected_id]['type'] == 'plugin') { - $mod = $extensions[$selected_id]; - $_POST['tab'] = $mod['tab']; - $_POST['name'] = $mod['name']; - $_POST['title'] = $mod['title']; - $_POST['path'] = $mod['path']; - $_POST['filename'] = $mod['filename']; - $_POST['acc_file'] = @$mod['acc_file']; + if ($Mode == 'Edit') { + $mod = $extensions[$selected_id]; + $_POST['tab'] = $mod['tab']; + $_POST['name'] = $mod['name']; + $_POST['title'] = $mod['title']; + $_POST['path'] = $mod['path']; + $_POST['filename'] = $mod['filename']; + $_POST['acc_file'] = @$mod['acc_file']; + hidden('filename', $_POST['filename']); + hidden('acc_file', $_POST['acc_file']); + } hidden('selected_id', $selected_id); - hidden('filename', $_POST['filename']); - hidden('acc_file', $_POST['acc_file']); } text_row_ex(_("Name"), 'name', 30); text_row_ex(_("Folder"), 'path', 20); - tab_list_row(_("Menu Tab"), 'tab', null); + tab_list_row(_("Menu Tab"), 'tab', null, true); text_row_ex(_("Menu Link Text"), 'title', 30); + record_status_list_row(_("Default status"), 'active'); label_row(_("Module File"), ""); @@ -324,15 +307,27 @@ function display_ext_edit($selected_id) end_table(0); display_note(_("Select your module PHP file from your local harddisk."), 0, 1); - - echo "
"; - + submit_add_or_update_center($selected_id == -1, '', 'both'); } //--------------------------------------------------------------------------------------------- +if ($Mode=='ADD_ITEM' || $Mode == 'UPDATE_ITEM') { + if(handle_submit()) { + if ($selected_id != -1) + display_notification(_("Extension data has been updated.")); + else + display_notification(_("Extension has been installed.")); + $Mode = 'RESET'; + } +} +if ($Mode == 'Delete') +{ + handle_delete(); + $Mode = 'RESET'; +} if (get_post('Update')) { $exts = get_company_extensions(); - for($i = 0; $i < count($exts); $i++) { + foreach($exts as $i => $ext) { $exts[$i]['active'] = check_value('Active'.$i); } write_extensions($exts, get_post('extset')); @@ -340,23 +335,11 @@ if (get_post('Update')) { $installed_extensions = $exts; display_notification(_('Current active extensions set has been saved.')); } -elseif (isset($_GET['c'])) -{ - if ($_GET['c'] == 'df') - { - handle_delete(); - } - if ($_GET['c'] == 'u') - { - if (handle_submit()) - { - if ($selected_id != -1) - display_notification(_("Extension data has been updated.")); - else - display_notification(_("Extension has been installed.")); - } - } +if ($Mode == 'RESET') +{ + $selected_id = -1; + unset($_POST); } //--------------------------------------------------------------------------------------------- @@ -365,16 +348,13 @@ if (list_updated('extset')) $Ajax->activate('_page_body'); echo "
" . _('Extensions:') . "  "; -extset_list('extset', null, true); +echo extset_list('extset', null, true); echo "

"; -$set = get_post('extset'); - +$set = get_post('extset', -1); if ($set == -1) { display_extensions(); - hyperlink_no_params($_SERVER['PHP_SELF'], _("Add new extension")); - display_ext_edit($selected_id); } else { company_extensions($set);