-
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[TASK] Move excludedParameters config to ext_localconf.php, update do…
…cumentation and TypoScript, format ext_tables.sql
- Loading branch information
Showing
9 changed files
with
94 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?php | ||
|
||
use Leuchtfeuer\Locate\Domain\DTO\Configuration; | ||
|
||
defined('TYPO3') || die('Access denied.'); | ||
|
||
// override parameter needs to be excluded form cHash calculation due to enforceValidation = true setting | ||
$GLOBALS['TYPO3_CONF_VARS']['FE']['cacheHash']['excludedParameters'][] = Configuration::OVERRIDE_PARAMETER; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,51 @@ | ||
CREATE TABLE static_ip2country_v4 ( | ||
ip_from int(10) unsigned DEFAULT NULL, | ||
ip_to int(10) unsigned DEFAULT NULL, | ||
country_code char(2) NOT NULL DEFAULT '', | ||
KEY idx_ip_from (ip_from), | ||
KEY idx_ip_to (ip_to), | ||
KEY idx_ip_from_to (ip_from,ip_to) | ||
CREATE TABLE static_ip2country_v4 | ||
( | ||
ip_from int(10) unsigned DEFAULT NULL, | ||
ip_to int(10) unsigned DEFAULT NULL, | ||
country_code char(2) NOT NULL DEFAULT '', | ||
KEY idx_ip_from (ip_from), | ||
KEY idx_ip_to (ip_to), | ||
KEY idx_ip_from_to (ip_from,ip_to) | ||
); | ||
|
||
CREATE TABLE static_ip2country_v6 ( | ||
ip_from decimal(39,0) unsigned DEFAULT NULL, | ||
ip_to decimal(39,0) unsigned NOT NULL, | ||
country_code char(2) NOT NULL DEFAULT '', | ||
KEY idx_ip_from (ip_from), | ||
KEY idx_ip_to (ip_to), | ||
KEY idx_ip_from_to (ip_from,ip_to) | ||
CREATE TABLE static_ip2country_v6 | ||
( | ||
ip_from decimal(39, 0) unsigned DEFAULT NULL, | ||
ip_to decimal(39, 0) unsigned NOT NULL, | ||
country_code char(2) NOT NULL DEFAULT '', | ||
KEY idx_ip_from (ip_from), | ||
KEY idx_ip_to (ip_to), | ||
KEY idx_ip_from_to (ip_from,ip_to) | ||
); | ||
|
||
CREATE TABLE tx_locate_region_country_mm ( | ||
uid_local int(11) DEFAULT '0' NOT NULL, | ||
uid_foreign int(11) DEFAULT '0' NOT NULL, | ||
sorting int(11) DEFAULT '0' NOT NULL, | ||
CREATE TABLE tx_locate_region_country_mm | ||
( | ||
uid_local int(11) DEFAULT '0' NOT NULL, | ||
uid_foreign int(11) DEFAULT '0' NOT NULL, | ||
sorting int(11) DEFAULT '0' NOT NULL, | ||
|
||
KEY uid_local (uid_local), | ||
KEY uid_foreign (uid_foreign) | ||
KEY uid_local (uid_local), | ||
KEY uid_foreign (uid_foreign) | ||
); | ||
|
||
CREATE TABLE tx_locate_page_region_mm ( | ||
uid_local int(11) DEFAULT '0' NOT NULL, | ||
uid_foreign int(11) DEFAULT '0' NOT NULL, | ||
sorting int(11) DEFAULT '0' NOT NULL, | ||
CREATE TABLE tx_locate_page_region_mm | ||
( | ||
uid_local int(11) DEFAULT '0' NOT NULL, | ||
uid_foreign int(11) DEFAULT '0' NOT NULL, | ||
sorting int(11) DEFAULT '0' NOT NULL, | ||
|
||
KEY uid_local (uid_local), | ||
KEY uid_foreign (uid_foreign) | ||
KEY uid_local (uid_local), | ||
KEY uid_foreign (uid_foreign) | ||
); | ||
|
||
CREATE TABLE tx_locate_domain_model_region ( | ||
title varchar(255) DEFAULT '' NOT NULL, | ||
countries int(11) DEFAULT '0' NOT NULL | ||
CREATE TABLE tx_locate_domain_model_region | ||
( | ||
title varchar(255) DEFAULT '' NOT NULL, | ||
countries int(11) DEFAULT '0' NOT NULL, | ||
); | ||
|
||
CREATE TABLE pages ( | ||
tx_locate_regions int DEFAULT 0 NOT NULL, | ||
tx_locate_invert smallint(2) DEFAULT 0 NOT NULL | ||
CREATE TABLE pages | ||
( | ||
tx_locate_regions int DEFAULT 0 NOT NULL, | ||
tx_locate_invert smallint(2) DEFAULT 0 NOT NULL | ||
); |