- ALL classes are E_NOTICE safe as far as possible. There might be some minor things left over which will be cleaned up in further testing - Added declare(strict_types=1); on all pages for trying to make all calls strict - Added page_content sub content to edit_page, with this some inner page content with ACL can be set, eg for use with Ajax/JS calls with backend. Also alias can be set so the control ajax pages can back reference to the master page content setting. Currently only one back reference is allowed - Note that the PAGES array has no numeric indexes, but uses the cuid as index
22 lines
810 B
SQL
22 lines
810 B
SQL
-- AUTHOR: Clemens Schwaighofer
|
|
-- DATE: 2005/07/05
|
|
-- DESCRIPTION:
|
|
-- edit tables, this table contains all pages in the edit interface and allocates rights + values to it
|
|
-- TABLE: edit_page
|
|
-- HISTORY:
|
|
|
|
-- DROP TABLE edit_page;
|
|
CREATE TABLE edit_page (
|
|
edit_page_id SERIAL PRIMARY KEY,
|
|
content_alias_edit_page_id INT, -- alias for page content, if the page content is defined on a different page, ege for ajax backend pages
|
|
filename VARCHAR,
|
|
name VARCHAR UNIQUE,
|
|
order_number INT NOT NULL,
|
|
online SMALLINT NOT NULL DEFAULT 0,
|
|
menu SMALLINT NOT NULL DEFAULT 0,
|
|
popup SMALLINT NOT NULL DEFAULT 0,
|
|
popup_x SMALLINT,
|
|
popup_y SMALLINT,
|
|
FOREIGN KEY (content_alias_edit_page_id) REFERENCES edit_page (edit_page_id) MATCH FULL ON DELETE RESTRICT ON UPDATE CASCADE,
|
|
) INHERITS (edit_generic) WITHOUT OIDS;
|