Beispiel #1
0
            $s_action = $ufUf->s_get_var_from_allowed("action", array("view"), "view");
            switch ($s_action) {
                case "view":
                    $html_main_admin_content .= $admin_ui->html_requirements_list();
                    break;
            }
            break;
        case "flot":
            $s_action = $ufUf->s_get_var_from_allowed("action", array("regenerate", "list_pages"), false);
            switch ($s_action) {
                case "regenerate":
                    $flot->_render_all_pages();
                    // back to same page
                    $s_new_page = "/flot-admin/admin/index.php?section=items&message=" . urlencode("Flot has regenerated all pages");
                    $flot->_page_change($s_new_page);
                    break;
                case "list_pages":
                    // return json of all pages
                    header('Content-Type: application/json');
                    echo json_encode($flot->oa_pages());
                    exit;
                    break;
            }
            break;
    }
}
#
# if we're still here, render a page for the user
#
$admin_ui->html_make_admin_page($admin_ui->s_admin_header($s_section), $admin_ui->html_make_left_menu($s_section), $html_main_admin_content, $html_main_admin_content_menu, $s_body_class);