Implement plugin for booking link page rendering
This commit is contained in:
@@ -2,169 +2,176 @@
|
||||
#
|
||||
# Table structure for table 'tx_eptheme_domain_model_slider'
|
||||
#
|
||||
CREATE TABLE tx_eptheme_domain_model_slide (
|
||||
CREATE TABLE tx_eptheme_domain_model_slide
|
||||
(
|
||||
|
||||
uid int(11) NOT NULL auto_increment,
|
||||
pid int(11) DEFAULT '0' NOT NULL,
|
||||
uid int(11) NOT NULL auto_increment,
|
||||
pid int(11) DEFAULT '0' NOT NULL,
|
||||
|
||||
headline varchar(255) DEFAULT '' NOT NULL,
|
||||
subline varchar(255) DEFAULT '' NOT NULL,
|
||||
button varchar(255) DEFAULT '' NOT NULL,
|
||||
page_uid varchar(255) DEFAULT '' NOT NULL,
|
||||
image int(11) unsigned NOT NULL default '0',
|
||||
page int(11) unsigned DEFAULT '0',
|
||||
sorting int(11) unsigned DEFAULT '0' NOT NULL,
|
||||
headline varchar(255) DEFAULT '' NOT NULL,
|
||||
subline varchar(255) DEFAULT '' NOT NULL,
|
||||
button varchar(255) DEFAULT '' NOT NULL,
|
||||
page_uid varchar(255) DEFAULT '' NOT NULL,
|
||||
image int(11) unsigned NOT NULL default '0',
|
||||
page int(11) unsigned DEFAULT '0',
|
||||
sorting int(11) unsigned DEFAULT '0' NOT NULL,
|
||||
|
||||
tstamp int(11) unsigned DEFAULT '0' NOT NULL,
|
||||
crdate int(11) unsigned DEFAULT '0' NOT NULL,
|
||||
cruser_id int(11) unsigned DEFAULT '0' NOT NULL,
|
||||
deleted tinyint(4) unsigned DEFAULT '0' NOT NULL,
|
||||
hidden tinyint(4) unsigned DEFAULT '0' NOT NULL,
|
||||
starttime int(11) unsigned DEFAULT '0' NOT NULL,
|
||||
endtime int(11) unsigned DEFAULT '0' NOT NULL,
|
||||
tstamp int(11) unsigned DEFAULT '0' NOT NULL,
|
||||
crdate int(11) unsigned DEFAULT '0' NOT NULL,
|
||||
cruser_id int(11) unsigned DEFAULT '0' NOT NULL,
|
||||
deleted tinyint(4) unsigned DEFAULT '0' NOT NULL,
|
||||
hidden tinyint(4) unsigned DEFAULT '0' NOT NULL,
|
||||
starttime int(11) unsigned DEFAULT '0' NOT NULL,
|
||||
endtime int(11) unsigned DEFAULT '0' NOT NULL,
|
||||
|
||||
t3ver_oid int(11) DEFAULT '0' NOT NULL,
|
||||
t3ver_id int(11) DEFAULT '0' NOT NULL,
|
||||
t3ver_wsid int(11) DEFAULT '0' NOT NULL,
|
||||
t3ver_label varchar(255) DEFAULT '' NOT NULL,
|
||||
t3ver_state tinyint(4) DEFAULT '0' NOT NULL,
|
||||
t3ver_stage int(11) DEFAULT '0' NOT NULL,
|
||||
t3ver_count int(11) DEFAULT '0' NOT NULL,
|
||||
t3ver_tstamp int(11) DEFAULT '0' NOT NULL,
|
||||
t3ver_move_id int(11) DEFAULT '0' NOT NULL,
|
||||
t3ver_oid int(11) DEFAULT '0' NOT NULL,
|
||||
t3ver_id int(11) DEFAULT '0' NOT NULL,
|
||||
t3ver_wsid int(11) DEFAULT '0' NOT NULL,
|
||||
t3ver_label varchar(255) DEFAULT '' NOT NULL,
|
||||
t3ver_state tinyint(4) DEFAULT '0' NOT NULL,
|
||||
t3ver_stage int(11) DEFAULT '0' NOT NULL,
|
||||
t3ver_count int(11) DEFAULT '0' NOT NULL,
|
||||
t3ver_tstamp int(11) DEFAULT '0' NOT NULL,
|
||||
t3ver_move_id int(11) DEFAULT '0' NOT NULL,
|
||||
|
||||
sys_language_uid int(11) DEFAULT '0' NOT NULL,
|
||||
l10n_parent int(11) DEFAULT '0' NOT NULL,
|
||||
l10n_diffsource mediumblob,
|
||||
sys_language_uid int(11) DEFAULT '0' NOT NULL,
|
||||
l10n_parent int(11) DEFAULT '0' NOT NULL,
|
||||
l10n_diffsource mediumblob,
|
||||
|
||||
PRIMARY KEY (uid),
|
||||
KEY parent (pid),
|
||||
KEY t3ver_oid (t3ver_oid,t3ver_wsid),
|
||||
KEY language (l10n_parent,sys_language_uid)
|
||||
PRIMARY KEY (uid),
|
||||
KEY parent (pid),
|
||||
KEY t3ver_oid (t3ver_oid, t3ver_wsid),
|
||||
KEY language (l10n_parent, sys_language_uid)
|
||||
|
||||
);
|
||||
|
||||
#
|
||||
# Table structure for table 'tx_eptheme_domain_model_lineup'
|
||||
#
|
||||
CREATE TABLE tx_eptheme_domain_model_lineup (
|
||||
CREATE TABLE tx_eptheme_domain_model_lineup
|
||||
(
|
||||
|
||||
uid int(11) NOT NULL auto_increment,
|
||||
pid int(11) DEFAULT '0' NOT NULL,
|
||||
uid int(11) NOT NULL auto_increment,
|
||||
pid int(11) DEFAULT '0' NOT NULL,
|
||||
|
||||
name varchar(255) DEFAULT '' NOT NULL,
|
||||
description text NOT NULL,
|
||||
image int(11) unsigned NOT NULL default '0',
|
||||
facebook_url varchar(255) DEFAULT '' NOT NULL,
|
||||
twitter_url varchar(255) DEFAULT '' NOT NULL,
|
||||
instagram_url varchar(255) DEFAULT '' NOT NULL,
|
||||
youtube_url varchar(255) DEFAULT '' NOT NULL,
|
||||
sorting int(11) unsigned DEFAULT '0' NOT NULL,
|
||||
tt_content int(11) unsigned DEFAULT '0' NOT NULL,
|
||||
name varchar(255) DEFAULT '' NOT NULL,
|
||||
description text NOT NULL,
|
||||
image int(11) unsigned NOT NULL default '0',
|
||||
facebook_url varchar(255) DEFAULT '' NOT NULL,
|
||||
twitter_url varchar(255) DEFAULT '' NOT NULL,
|
||||
instagram_url varchar(255) DEFAULT '' NOT NULL,
|
||||
youtube_url varchar(255) DEFAULT '' NOT NULL,
|
||||
sorting int(11) unsigned DEFAULT '0' NOT NULL,
|
||||
tt_content int(11) unsigned DEFAULT '0' NOT NULL,
|
||||
|
||||
tstamp int(11) unsigned DEFAULT '0' NOT NULL,
|
||||
crdate int(11) unsigned DEFAULT '0' NOT NULL,
|
||||
cruser_id int(11) unsigned DEFAULT '0' NOT NULL,
|
||||
deleted tinyint(4) unsigned DEFAULT '0' NOT NULL,
|
||||
hidden tinyint(4) unsigned DEFAULT '0' NOT NULL,
|
||||
starttime int(11) unsigned DEFAULT '0' NOT NULL,
|
||||
endtime int(11) unsigned DEFAULT '0' NOT NULL,
|
||||
tstamp int(11) unsigned DEFAULT '0' NOT NULL,
|
||||
crdate int(11) unsigned DEFAULT '0' NOT NULL,
|
||||
cruser_id int(11) unsigned DEFAULT '0' NOT NULL,
|
||||
deleted tinyint(4) unsigned DEFAULT '0' NOT NULL,
|
||||
hidden tinyint(4) unsigned DEFAULT '0' NOT NULL,
|
||||
starttime int(11) unsigned DEFAULT '0' NOT NULL,
|
||||
endtime int(11) unsigned DEFAULT '0' NOT NULL,
|
||||
|
||||
t3ver_oid int(11) DEFAULT '0' NOT NULL,
|
||||
t3ver_id int(11) DEFAULT '0' NOT NULL,
|
||||
t3ver_wsid int(11) DEFAULT '0' NOT NULL,
|
||||
t3ver_label varchar(255) DEFAULT '' NOT NULL,
|
||||
t3ver_state tinyint(4) DEFAULT '0' NOT NULL,
|
||||
t3ver_stage int(11) DEFAULT '0' NOT NULL,
|
||||
t3ver_count int(11) DEFAULT '0' NOT NULL,
|
||||
t3ver_tstamp int(11) DEFAULT '0' NOT NULL,
|
||||
t3ver_move_id int(11) DEFAULT '0' NOT NULL,
|
||||
t3ver_oid int(11) DEFAULT '0' NOT NULL,
|
||||
t3ver_id int(11) DEFAULT '0' NOT NULL,
|
||||
t3ver_wsid int(11) DEFAULT '0' NOT NULL,
|
||||
t3ver_label varchar(255) DEFAULT '' NOT NULL,
|
||||
t3ver_state tinyint(4) DEFAULT '0' NOT NULL,
|
||||
t3ver_stage int(11) DEFAULT '0' NOT NULL,
|
||||
t3ver_count int(11) DEFAULT '0' NOT NULL,
|
||||
t3ver_tstamp int(11) DEFAULT '0' NOT NULL,
|
||||
t3ver_move_id int(11) DEFAULT '0' NOT NULL,
|
||||
|
||||
sys_language_uid int(11) DEFAULT '0' NOT NULL,
|
||||
l10n_parent int(11) DEFAULT '0' NOT NULL,
|
||||
l10n_diffsource mediumblob,
|
||||
sys_language_uid int(11) DEFAULT '0' NOT NULL,
|
||||
l10n_parent int(11) DEFAULT '0' NOT NULL,
|
||||
l10n_diffsource mediumblob,
|
||||
|
||||
PRIMARY KEY (uid),
|
||||
KEY parent (pid),
|
||||
KEY t3ver_oid (t3ver_oid,t3ver_wsid),
|
||||
KEY language (l10n_parent,sys_language_uid)
|
||||
PRIMARY KEY (uid),
|
||||
KEY parent (pid),
|
||||
KEY t3ver_oid (t3ver_oid, t3ver_wsid),
|
||||
KEY language (l10n_parent, sys_language_uid)
|
||||
|
||||
);
|
||||
|
||||
CREATE TABLE pages (
|
||||
tx_eptheme_context_country_code char(2) DEFAULT '',
|
||||
tx_eptheme_context_country int(11) unsigned DEFAULT '0',
|
||||
tx_eptheme_context_region int(11) unsigned DEFAULT '0',
|
||||
tx_eptheme_context_concept int(11) unsigned DEFAULT '0',
|
||||
tx_eptheme_context_product int(11) unsigned DEFAULT '0',
|
||||
tx_eptheme_hide_searchbar tinyint(4) unsigned DEFAULT '0' NOT NULL,
|
||||
tx_eptheme_bodyclass varchar(255) DEFAULT '' NOT NULL,
|
||||
tx_eptheme_slides int(11) unsigned DEFAULT '0',
|
||||
tx_eptheme_badge int(11) unsigned DEFAULT '0'
|
||||
CREATE TABLE pages
|
||||
(
|
||||
tx_eptheme_context_pacode char(8) DEFAULT '',
|
||||
tx_eptheme_context_country_code char(2) DEFAULT '',
|
||||
tx_eptheme_context_country int(11) unsigned DEFAULT '0',
|
||||
tx_eptheme_context_region int(11) unsigned DEFAULT '0',
|
||||
tx_eptheme_context_concept int(11) unsigned DEFAULT '0',
|
||||
tx_eptheme_context_product int(11) unsigned DEFAULT '0',
|
||||
tx_eptheme_hide_searchbar tinyint(4) unsigned DEFAULT '0' NOT NULL,
|
||||
tx_eptheme_bodyclass varchar(255) DEFAULT '' NOT NULL,
|
||||
tx_eptheme_slides int(11) unsigned DEFAULT '0',
|
||||
tx_eptheme_badge int(11) unsigned DEFAULT '0'
|
||||
);
|
||||
|
||||
CREATE TABLE pages_language_overlay (
|
||||
tx_eptheme_context_country_code char(2) DEFAULT '',
|
||||
tx_eptheme_context_country int(11) unsigned DEFAULT '0',
|
||||
tx_eptheme_context_region int(11) unsigned DEFAULT '0',
|
||||
tx_eptheme_context_concept int(11) unsigned DEFAULT '0',
|
||||
tx_eptheme_context_product int(11) unsigned DEFAULT '0',
|
||||
tx_eptheme_hide_searchbar tinyint(4) unsigned DEFAULT '0' NOT NULL,
|
||||
tx_eptheme_bodyclass varchar(255) DEFAULT '' NOT NULL,
|
||||
tx_eptheme_slides int(11) unsigned DEFAULT '0',
|
||||
tx_eptheme_badge int(11) unsigned DEFAULT '0'
|
||||
CREATE TABLE pages_language_overlay
|
||||
(
|
||||
tx_eptheme_context_country_code char(2) DEFAULT '',
|
||||
tx_eptheme_context_country int(11) unsigned DEFAULT '0',
|
||||
tx_eptheme_context_region int(11) unsigned DEFAULT '0',
|
||||
tx_eptheme_context_concept int(11) unsigned DEFAULT '0',
|
||||
tx_eptheme_context_product int(11) unsigned DEFAULT '0',
|
||||
tx_eptheme_hide_searchbar tinyint(4) unsigned DEFAULT '0' NOT NULL,
|
||||
tx_eptheme_bodyclass varchar(255) DEFAULT '' NOT NULL,
|
||||
tx_eptheme_slides int(11) unsigned DEFAULT '0',
|
||||
tx_eptheme_badge int(11) unsigned DEFAULT '0'
|
||||
);
|
||||
|
||||
CREATE TABLE tt_content (
|
||||
tx_eptheme_context_country int(11) unsigned DEFAULT '0',
|
||||
tx_eptheme_context_region int(11) unsigned DEFAULT '0',
|
||||
tx_eptheme_context_city int(11) unsigned DEFAULT '0',
|
||||
tx_eptheme_context_hotel int(11) unsigned DEFAULT '0',
|
||||
tx_eptheme_context_concept int(11) unsigned DEFAULT '0',
|
||||
tx_eptheme_context_product int(11) unsigned DEFAULT '0',
|
||||
tx_eptheme_context_date_from int(11) unsigned DEFAULT '0' NOT NULL,
|
||||
tx_eptheme_context_date_to int(11) unsigned DEFAULT '0' NOT NULL,
|
||||
tx_eptheme_lineup int(11) unsigned DEFAULT '0',
|
||||
tx_eptheme_contact int(11) unsigned DEFAULT '0',
|
||||
button varchar(255) DEFAULT '' NOT NULL
|
||||
CREATE TABLE tt_content
|
||||
(
|
||||
tx_eptheme_context_country int(11) unsigned DEFAULT '0',
|
||||
tx_eptheme_context_region int(11) unsigned DEFAULT '0',
|
||||
tx_eptheme_context_city int(11) unsigned DEFAULT '0',
|
||||
tx_eptheme_context_hotel int(11) unsigned DEFAULT '0',
|
||||
tx_eptheme_context_concept int(11) unsigned DEFAULT '0',
|
||||
tx_eptheme_context_product int(11) unsigned DEFAULT '0',
|
||||
tx_eptheme_context_date_from int(11) unsigned DEFAULT '0' NOT NULL,
|
||||
tx_eptheme_context_date_to int(11) unsigned DEFAULT '0' NOT NULL,
|
||||
tx_eptheme_lineup int(11) unsigned DEFAULT '0',
|
||||
tx_eptheme_contact int(11) unsigned DEFAULT '0',
|
||||
button varchar(255) DEFAULT '' NOT NULL
|
||||
);
|
||||
|
||||
CREATE TABLE tx_eptheme_domain_model_addresscheck (
|
||||
uid int(11) NOT NULL auto_increment,
|
||||
pid int(11) DEFAULT '0' NOT NULL,
|
||||
tstamp int(11) DEFAULT '0' NOT NULL,
|
||||
crdate int(11) DEFAULT '0' NOT NULL,
|
||||
cruser_id int(11) DEFAULT '0' NOT NULL,
|
||||
deleted tinyint(3) DEFAULT '0',
|
||||
hidden tinyint(4) DEFAULT '0' NOT NULL,
|
||||
CREATE TABLE tx_eptheme_domain_model_addresscheck
|
||||
(
|
||||
uid int(11) NOT NULL auto_increment,
|
||||
pid int(11) DEFAULT '0' NOT NULL,
|
||||
tstamp int(11) DEFAULT '0' NOT NULL,
|
||||
crdate int(11) DEFAULT '0' NOT NULL,
|
||||
cruser_id int(11) DEFAULT '0' NOT NULL,
|
||||
deleted tinyint(3) DEFAULT '0',
|
||||
hidden tinyint(4) DEFAULT '0' NOT NULL,
|
||||
|
||||
name tinytext,
|
||||
first_name tinytext,
|
||||
last_name tinytext,
|
||||
customer_id varchar(255) DEFAULT '' NOT NULL,
|
||||
title varchar(255) DEFAULT '' NOT NULL,
|
||||
email varchar(255) DEFAULT '' NOT NULL,
|
||||
address tinytext,
|
||||
city varchar(255) DEFAULT '' NOT NULL,
|
||||
zip varchar(20) DEFAULT '' NOT NULL,
|
||||
country varchar(128) DEFAULT '' NOT NULL,
|
||||
name tinytext,
|
||||
first_name tinytext,
|
||||
last_name tinytext,
|
||||
customer_id varchar(255) DEFAULT '' NOT NULL,
|
||||
title varchar(255) DEFAULT '' NOT NULL,
|
||||
email varchar(255) DEFAULT '' NOT NULL,
|
||||
address tinytext,
|
||||
city varchar(255) DEFAULT '' NOT NULL,
|
||||
zip varchar(20) DEFAULT '' NOT NULL,
|
||||
country varchar(128) DEFAULT '' NOT NULL,
|
||||
|
||||
no_postal tinyint(4) DEFAULT '0' NOT NULL,
|
||||
no_email tinyint(4) DEFAULT '0' NOT NULL,
|
||||
address_current tinyint(4) DEFAULT '0' NOT NULL,
|
||||
no_postal tinyint(4) DEFAULT '0' NOT NULL,
|
||||
no_email tinyint(4) DEFAULT '0' NOT NULL,
|
||||
address_current tinyint(4) DEFAULT '0' NOT NULL,
|
||||
|
||||
t3ver_oid int(11) DEFAULT '0' NOT NULL,
|
||||
t3ver_id int(11) DEFAULT '0' NOT NULL,
|
||||
t3ver_wsid int(11) DEFAULT '0' NOT NULL,
|
||||
t3ver_label varchar(30) DEFAULT '' NOT NULL,
|
||||
t3ver_state tinyint(4) DEFAULT '0' NOT NULL,
|
||||
t3ver_stage tinyint(4) DEFAULT '0' NOT NULL,
|
||||
t3ver_count int(11) DEFAULT '0' NOT NULL,
|
||||
t3ver_tstamp int(11) DEFAULT '0' NOT NULL,
|
||||
t3ver_move_id int(11) DEFAULT '0' NOT NULL,
|
||||
t3_origuid int(11) DEFAULT '0' NOT NULL,
|
||||
t3ver_oid int(11) DEFAULT '0' NOT NULL,
|
||||
t3ver_id int(11) DEFAULT '0' NOT NULL,
|
||||
t3ver_wsid int(11) DEFAULT '0' NOT NULL,
|
||||
t3ver_label varchar(30) DEFAULT '' NOT NULL,
|
||||
t3ver_state tinyint(4) DEFAULT '0' NOT NULL,
|
||||
t3ver_stage tinyint(4) DEFAULT '0' NOT NULL,
|
||||
t3ver_count int(11) DEFAULT '0' NOT NULL,
|
||||
t3ver_tstamp int(11) DEFAULT '0' NOT NULL,
|
||||
t3ver_move_id int(11) DEFAULT '0' NOT NULL,
|
||||
t3_origuid int(11) DEFAULT '0' NOT NULL,
|
||||
|
||||
PRIMARY KEY (uid),
|
||||
KEY parent (pid),
|
||||
KEY pid (pid,email)
|
||||
PRIMARY KEY (uid),
|
||||
KEY parent (pid),
|
||||
KEY pid (pid, email)
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user