mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-14 04:57:21 +01:00
57 lines
1.3 KiB
C++
57 lines
1.3 KiB
C++
#ifndef ADMIN_PANEL_H
|
|
#define ADMIN_PANEL_H
|
|
|
|
#include "core/http/web_node.h"
|
|
|
|
#include "core/string.h"
|
|
#include "core/containers/vector.h"
|
|
|
|
class Request;
|
|
class FormValidator;
|
|
class AdminNode;
|
|
|
|
class AdminPanel : public WebNode {
|
|
RCPP_OBJECT(AdminPanel, WebNode);
|
|
|
|
public:
|
|
void handle_request_main(Request *request);
|
|
|
|
virtual void render_admin_panel_list(Request *request);
|
|
virtual void render_controller_panel(Request *request, AdminNode *controller);
|
|
|
|
void register_admin_controller(const String §ion, AdminNode *controller);
|
|
void clear();
|
|
|
|
virtual void render_headers(Request *request);
|
|
virtual void render_main_body_top(Request *request);
|
|
virtual void render_segment_body_top(Request *request);
|
|
virtual void render_footer(Request *request);
|
|
|
|
void set_default_header(const String &val);
|
|
void set_default_main_body_top(const String &val);
|
|
void set_default_segment_body_top(const String &val);
|
|
void set_default_footer(const String &val);
|
|
|
|
static AdminPanel *get_singleton();
|
|
|
|
AdminPanel();
|
|
~AdminPanel();
|
|
|
|
protected:
|
|
struct AdminPanelSection {
|
|
String section_url;
|
|
String name;
|
|
AdminNode *controller;
|
|
};
|
|
|
|
static AdminPanel *_self;
|
|
|
|
Vector<AdminPanelSection> _controllers;
|
|
|
|
String _default_headers;
|
|
String _default_main_body_top;
|
|
String _default_segment_body_top;
|
|
String _default_footer;
|
|
};
|
|
|
|
#endif |