commit dc264b89a1328aee969d418740acd70d5d830d83 Author: Cloonar <> Date: Mon Dec 2 12:28:35 2024 +0100 Initial commit diff --git a/.ddev/config.yaml b/.ddev/config.yaml new file mode 100644 index 0000000..3badc08 --- /dev/null +++ b/.ddev/config.yaml @@ -0,0 +1,283 @@ +name: typo3-basic +type: typo3 +docroot: public +php_version: "8.3" +webserver_type: nginx-fpm +xdebug_enabled: false +additional_hostnames: [] +additional_fqdns: [] +database: + type: mariadb + version: "10.11" +use_dns_when_possible: true +composer_version: "2" +web_environment: + - TYPO3_CONTEXT=Development/Ddev +corepack_enable: false + +# Key features of DDEV's config.yaml: + +# name: # Name of the project, automatically provides +# http://projectname.ddev.site and https://projectname.ddev.site + +# type: # backdrop, craftcms, django4, drupal, drupal6, drupal7, laravel, magento, magento2, php, python, shopware6, silverstripe, typo3, wordpress +# See https://ddev.readthedocs.io/en/stable/users/quickstart/ for more +# information on the different project types +# "drupal" covers recent Drupal 8+ + +# docroot: # Relative path to the directory containing index.php. + +# php_version: "8.2" # PHP version to use, "5.6", "7.0", "7.1", "7.2", "7.3", "7.4", "8.0", "8.1", "8.2", "8.3" + +# You can explicitly specify the webimage but this +# is not recommended, as the images are often closely tied to DDEV's' behavior, +# so this can break upgrades. + +# webimage: # nginx/php docker image. + +# database: +# type: # mysql, mariadb, postgres +# version: # database version, like "10.11" or "8.0" +# MariaDB versions can be 5.5-10.8 and 10.11, MySQL versions can be 5.5-8.0 +# PostgreSQL versions can be 9-16. + +# router_http_port: # Port to be used for http (defaults to global configuration, usually 80) +# router_https_port: # Port for https (defaults to global configuration, usually 443) + +# xdebug_enabled: false # Set to true to enable Xdebug and "ddev start" or "ddev restart" +# Note that for most people the commands +# "ddev xdebug" to enable Xdebug and "ddev xdebug off" to disable it work better, +# as leaving Xdebug enabled all the time is a big performance hit. + +# xhprof_enabled: false # Set to true to enable Xhprof and "ddev start" or "ddev restart" +# Note that for most people the commands +# "ddev xhprof" to enable Xhprof and "ddev xhprof off" to disable it work better, +# as leaving Xhprof enabled all the time is a big performance hit. + +# webserver_type: nginx-fpm, apache-fpm, or nginx-gunicorn + +# timezone: Europe/Berlin +# This is the timezone used in the containers and by PHP; +# it can be set to any valid timezone, +# see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones +# For example Europe/Dublin or MST7MDT + +# composer_root: +# Relative path to the Composer root directory from the project root. This is +# the directory which contains the composer.json and where all Composer related +# commands are executed. + +# composer_version: "2" +# You can set it to "" or "2" (default) for Composer v2 or "1" for Composer v1 +# to use the latest major version available at the time your container is built. +# It is also possible to use each other Composer version channel. This includes: +# - 2.2 (latest Composer LTS version) +# - stable +# - preview +# - snapshot +# Alternatively, an explicit Composer version may be specified, for example "2.2.18". +# To reinstall Composer after the image was built, run "ddev debug refresh". + +# nodejs_version: "20" +# change from the default system Node.js version to any other version. +# Numeric version numbers can be complete (i.e. 18.15.0) or +# incomplete (18, 17.2, 16). 'lts' and 'latest' can be used as well along with +# other named releases. +# see https://www.npmjs.com/package/n#specifying-nodejs-versions +# Note that you can continue using 'ddev nvm' or nvm inside the web container +# to change the project's installed node version if you need to. + +# corepack_enable: false +# Change to 'true' to 'corepack enable' and gain access to latest versions of yarn/pnpm + +# additional_hostnames: +# - somename +# - someothername +# would provide http and https URLs for "somename.ddev.site" +# and "someothername.ddev.site". + +# additional_fqdns: +# - example.com +# - sub1.example.com +# would provide http and https URLs for "example.com" and "sub1.example.com" +# Please take care with this because it can cause great confusion. + +# upload_dirs: "custom/upload/dir" +# +# upload_dirs: +# - custom/upload/dir +# - ../private +# +# would set the destination paths for ddev import-files to /custom/upload/dir +# When Mutagen is enabled this path is bind-mounted so that all the files +# in the upload_dirs don't have to be synced into Mutagen. + +# disable_upload_dirs_warning: false +# If true, turns off the normal warning that says +# "You have Mutagen enabled and your 'php' project type doesn't have upload_dirs set" + +# ddev_version_constraint: "" +# Example: +# ddev_version_constraint: ">= 1.22.4" +# This will enforce that the running ddev version is within this constraint. +# See https://github.com/Masterminds/semver#checking-version-constraints for +# supported constraint formats + +# working_dir: +# web: /var/www/html +# db: /home +# would set the default working directory for the web and db services. +# These values specify the destination directory for ddev ssh and the +# directory in which commands passed into ddev exec are run. + +# omit_containers: [db, ddev-ssh-agent] +# Currently only these containers are supported. Some containers can also be +# omitted globally in the ~/.ddev/global_config.yaml. Note that if you omit +# the "db" container, several standard features of DDEV that access the +# database container will be unusable. In the global configuration it is also +# possible to omit ddev-router, but not here. + +# performance_mode: "global" +# DDEV offers performance optimization strategies to improve the filesystem +# performance depending on your host system. Should be configured globally. +# +# If set, will override the global config. Possible values are: +# - "global": uses the value from the global config. +# - "none": disables performance optimization for this project. +# - "mutagen": enables Mutagen for this project. +# - "nfs": enables NFS for this project. +# +# See https://ddev.readthedocs.io/en/stable/users/install/performance/#nfs +# See https://ddev.readthedocs.io/en/stable/users/install/performance/#mutagen + +# fail_on_hook_fail: False +# Decide whether 'ddev start' should be interrupted by a failing hook + +# host_https_port: "59002" +# The host port binding for https can be explicitly specified. It is +# dynamic unless otherwise specified. +# This is not used by most people, most people use the *router* instead +# of the localhost port. + +# host_webserver_port: "59001" +# The host port binding for the ddev-webserver can be explicitly specified. It is +# dynamic unless otherwise specified. +# This is not used by most people, most people use the *router* instead +# of the localhost port. + +# host_db_port: "59002" +# The host port binding for the ddev-dbserver can be explicitly specified. It is dynamic +# unless explicitly specified. + +# mailpit_http_port: "8025" +# mailpit_https_port: "8026" +# The Mailpit ports can be changed from the default 8025 and 8026 + +# host_mailpit_port: "8025" +# The mailpit port is not normally bound on the host at all, instead being routed +# through ddev-router, but it can be bound directly to localhost if specified here. + +# webimage_extra_packages: [php7.4-tidy, php-bcmath] +# Extra Debian packages that are needed in the webimage can be added here + +# dbimage_extra_packages: [telnet,netcat] +# Extra Debian packages that are needed in the dbimage can be added here + +# use_dns_when_possible: true +# If the host has internet access and the domain configured can +# successfully be looked up, DNS will be used for hostname resolution +# instead of editing /etc/hosts +# Defaults to true + +# project_tld: ddev.site +# The top-level domain used for project URLs +# The default "ddev.site" allows DNS lookup via a wildcard +# If you prefer you can change this to "ddev.local" to preserve +# pre-v1.9 behavior. + +# ngrok_args: --basic-auth username:pass1234 +# Provide extra flags to the "ngrok http" command, see +# https://ngrok.com/docs/ngrok-agent/config or run "ngrok http -h" + +# disable_settings_management: false +# If true, DDEV will not create CMS-specific settings files like +# Drupal's settings.php/settings.ddev.php or TYPO3's AdditionalConfiguration.php +# In this case the user must provide all such settings. + +# You can inject environment variables into the web container with: +# web_environment: +# - SOMEENV=somevalue +# - SOMEOTHERENV=someothervalue + +# no_project_mount: false +# (Experimental) If true, DDEV will not mount the project into the web container; +# the user is responsible for mounting it manually or via a script. +# This is to enable experimentation with alternate file mounting strategies. +# For advanced users only! + +# bind_all_interfaces: false +# If true, host ports will be bound on all network interfaces, +# not the localhost interface only. This means that ports +# will be available on the local network if the host firewall +# allows it. + +# default_container_timeout: 120 +# The default time that DDEV waits for all containers to become ready can be increased from +# the default 120. This helps in importing huge databases, for example. + +#web_extra_exposed_ports: +#- name: nodejs +# container_port: 3000 +# http_port: 2999 +# https_port: 3000 +#- name: something +# container_port: 4000 +# https_port: 4000 +# http_port: 3999 +# Allows a set of extra ports to be exposed via ddev-router +# Fill in all three fields even if you don’t intend to use the https_port! +# If you don’t add https_port, then it defaults to 0 and ddev-router will fail to start. +# +# The port behavior on the ddev-webserver must be arranged separately, for example +# using web_extra_daemons. +# For example, with a web app on port 3000 inside the container, this config would +# expose that web app on https://.ddev.site:9999 and http://.ddev.site:9998 +# web_extra_exposed_ports: +# - name: myapp +# container_port: 3000 +# http_port: 9998 +# https_port: 9999 + +#web_extra_daemons: +#- name: "http-1" +# command: "/var/www/html/node_modules/.bin/http-server -p 3000" +# directory: /var/www/html +#- name: "http-2" +# command: "/var/www/html/node_modules/.bin/http-server /var/www/html/sub -p 3000" +# directory: /var/www/html + +# override_config: false +# By default, config.*.yaml files are *merged* into the configuration +# But this means that some things can't be overridden +# For example, if you have 'use_dns_when_possible: true'' you can't override it with a merge +# and you can't erase existing hooks or all environment variables. +# However, with "override_config: true" in a particular config.*.yaml file, +# 'use_dns_when_possible: false' can override the existing values, and +# hooks: +# post-start: [] +# or +# web_environment: [] +# or +# additional_hostnames: [] +# can have their intended affect. 'override_config' affects only behavior of the +# config.*.yaml file it exists in. + +# Many DDEV commands can be extended to run tasks before or after the +# DDEV command is executed, for example "post-start", "post-import-db", +# "pre-composer", "post-composer" +# See https://ddev.readthedocs.io/en/stable/users/extend/custom-commands/ for more +# information on the commands that can be extended and the tasks you can define +# for them. Example: +#hooks: +# post-start: +# - exec: composer install -d /var/www/html diff --git a/.ddev/providers/acquia.yaml b/.ddev/providers/acquia.yaml new file mode 100755 index 0000000..4565443 Binary files /dev/null and b/.ddev/providers/acquia.yaml differ diff --git a/.ddev/providers/platform.yaml b/.ddev/providers/platform.yaml new file mode 100755 index 0000000..4fdab42 Binary files /dev/null and b/.ddev/providers/platform.yaml differ diff --git a/.ddev/providers/upsun.yaml b/.ddev/providers/upsun.yaml new file mode 100755 index 0000000..ca6bb8a Binary files /dev/null and b/.ddev/providers/upsun.yaml differ diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..30f5407 --- /dev/null +++ b/.gitignore @@ -0,0 +1,18 @@ +.DS_Store +.idea +mbox +nbproject +/var/* +!/var/labels +/vendor +/public/_assets +/public/fileadmin +/public/typo3 +/public/typo3temp +/public/index.php +/.env +/composer.list +/backup +/bin +/public +composer.lock diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..1f192db --- /dev/null +++ b/composer.json @@ -0,0 +1,96 @@ +{ + "name": "typo3/cms-base-distribution", + "description": "TYPO3 CMS Base Distribution", + "license": "GPL-2.0+", + "config": { + "allow-plugins": { + "typo3/class-alias-loader": true, + "typo3/cms-composer-installers": true, + "helhum/dotenv-connector": true, + "cweagans/composer-patches": true + }, + "platform": { + "php": "8.3" + }, + "vendor-dir": "vendor", + "bin-dir": "bin", + "sort-packages": true + }, + "repositories": [ + { + "type": "path", + "url": "packages/*" + } + ], + "require": { + "typo3/minimal": "^12.4", + "typo3/cms-adminpanel": "^12.4", + "typo3/cms-backend": "^12.4", + "typo3/cms-belog": "^12.4", + "typo3/cms-beuser": "^12.4", + "typo3/cms-core": "^12.4", + "typo3/cms-dashboard": "^12.4", + "typo3/cms-extbase": "^12.4", + "typo3/cms-extensionmanager": "^12.4", + "typo3/cms-felogin": "^12.4", + "typo3/cms-filelist": "^12.4", + "typo3/cms-filemetadata": "^12.4", + "typo3/cms-fluid": "^12.4", + "typo3/cms-fluid-styled-content": "^12.4", + "typo3/cms-form": "^12.4", + "typo3/cms-frontend": "^12.4", + "typo3/cms-indexed-search": "^12.4", + "typo3/cms-info": "^12.4", + "typo3/cms-install": "^12.4", + "typo3/cms-lowlevel": "^12.4", + "typo3/cms-opendocs": "^12.4", + "typo3/cms-recordlist": "^12.4", + "typo3/cms-recycler": "^12.4", + "typo3/cms-redirects": "^12.4", + "typo3/cms-reports": "^12.4", + "typo3/cms-rte-ckeditor": "^12.4", + "typo3/cms-scheduler": "^12.4", + "typo3/cms-seo": "^12.4", + "typo3/cms-setup": "^12.4", + "typo3/cms-sys-note": "^12.4", + "typo3/cms-tstemplate": "^12.4", + "typo3/cms-viewpage": "^12.4", + + "ichhabrecht/filefill": "^4.3", + "helhum/dotenv-connector": "^3.1", + "helhum/typo3-console": "^8.2", + "bk2k/bootstrap-package": "^15.0", + "georgringer/news": "^12.2", + "georgringer/numbered-pagination": "^2.1", + "tpwd/ke_search": "^6.1", + "cloonar-typo3/base-design": "@dev" + }, + "require-dev": { + "deployer/deployer": "^7.4", + "friendsoftypo3/phpstan-typo3": "^0.9", + "phpmd/phpmd": "^2.10", + "phpstan/phpstan": "^1.8", + "rector/rector": "0.13.4", + "squizlabs/php_codesniffer": "^3.6", + "vimeo/psalm": "^4.7" + }, + "scripts":{ + "pre-autoload-dump": [ + "@php -r \"file_exists('.env') || copy('.env.local', '.env');\"" + ], + "typo3-cms-scripts": [ + "typo3 install:fixfolderstructure" + ], + "post-autoload-dump": [ + "@typo3-cms-scripts" + ] + }, + "extra": { + "typo3/cms": { + "web-dir": "public" + }, + "helhum/typo3-console": { + "install-extension-dummy": "0" + } + } +} diff --git a/config/sites/default/config.yaml b/config/sites/default/config.yaml new file mode 100644 index 0000000..96bf9b8 --- /dev/null +++ b/config/sites/default/config.yaml @@ -0,0 +1,17 @@ +base: / +languages: + - + title: German + enabled: true + languageId: 0 + base: / + typo3Language: de + locale: de_AT.UTF-8 + iso-639-1: de + navigationTitle: Deutsch + hreflang: de-AT + direction: ltr + flag: at + websiteTitle: '' +rootPageId: 1 +websiteTitle: '' diff --git a/config/system/additional.php b/config/system/additional.php new file mode 100644 index 0000000..f0936d0 --- /dev/null +++ b/config/system/additional.php @@ -0,0 +1,85 @@ + [ + 'installToolPassword' => $_ENV['TYPO3_BE_INSTALL_TOOL_PASSWORD'], + ], + 'DB' => [ + 'Connections' => [ + 'Default' => [ + 'dbname' => $_ENV['TYPO3_DB_NAME'], + 'host' => $_ENV['TYPO3_DB_HOST'], + 'password' => $_ENV['TYPO3_DB_PASSWORD'], + 'port' => $_ENV['TYPO3_DB_PORT'], + 'user' => $_ENV['TYPO3_DB_USER'], + 'unix_socket' => $_ENV['TYPO3_DB_UNIX_SOCKET'], + ], + ], + 'extTablesDefinitionScript' => 'extTables.php', + ], + 'MAIL' => [ + 'transport' => $_ENV['TYPO3_MAIL_TRANSPORT'], + 'transport_smtp_server' => $_ENV['TYPO3_MAIL_SMTP_SERVER'], + 'transport_smtp_encrypt' => $_ENV['TYPO3_MAIL_SMTP_ENCRYPT'], + 'transport_smtp_username' => $_ENV['TYPO3_MAIL_SMTP_USER'], + 'transport_smtp_password' => $_ENV['TYPO3_MAIL_SMTP_PASSWORD'], + ], + 'SYS' => [ + 'caching' => [ + 'cacheConfigurations' => [ + 'hash' => [ + 'backend' => 'TYPO3\\CMS\\Core\\Cache\\Backend\\NullBackend', + ], + 'imagesizes' => [ + 'backend' => 'TYPO3\\CMS\\Core\\Cache\\Backend\\NullBackend', + 'options' => [ + 'compression' => true, + ], + ], + 'pages' => [ + 'backend' => 'TYPO3\\CMS\\Core\\Cache\\Backend\\NullBackend', + 'options' => [ + 'compression' => true, + ], + ], + 'rootline' => [ + 'backend' => 'TYPO3\\CMS\\Core\\Cache\\Backend\\NullBackend', + 'options' => [ + 'compression' => true, + ], + ], + ], + ], + ], +]; + + +\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addTypoScript( + 'developmentConfiguration', + 'setup', + 'config.contentObjectExceptionHandler = 0' +); + +// MAIL +// $GLOBALS['TYPO3_CONF_VARS']['MAIL']['transport'] = 'mbox'; +// $GLOBALS['TYPO3_CONF_VARS']['MAIL']['transport_mbox_file'] = dirname(__DIR__, 2).'/mbox'; +$GLOBALS['TYPO3_CONF_VARS']['GFX']['processor_path'] = '/usr/bin/'; +// +$GLOBALS['TYPO3_CONF_VARS'] = array_replace_recursive($GLOBALS['TYPO3_CONF_VARS'], $customChanges); + +$context = strtolower((string)\TYPO3\CMS\Core\Core\Environment::getContext()); + +$contextParts = explode('/', $context); +$dir = realpath(__DIR__); + +$file = $dir . '/additional_' . $contextParts[0] . '.php'; +if (is_file($file)) { + include_once($file); +} + +if (isset($contextParts[1])) { + $file = $dir . '/additional_' . $contextParts[0] . '_' . $contextParts[1] . '.php'; + if (is_file($file)) { + include_once($file); + } +} diff --git a/config/system/additional_development_ddev.php b/config/system/additional_development_ddev.php new file mode 100644 index 0000000..c3f080e --- /dev/null +++ b/config/system/additional_development_ddev.php @@ -0,0 +1,34 @@ + [ + 'installToolPassword' => '$2y$12$h8p5JOqRdE2ze/daTBKeDuF6kDnbRjiU2iQs9PoD4WhpERyGepIV2', + 'debug' => true, + 'cookieSameSite' => 'lax', + 'HTTP' => [ + 'Response' => [ + 'Headers' => [ + 'csp' => 'Content-Security-Policy: default-src \'self\' \'data:\' *.ddev.site *.gstatic.com cdnjs.cloudflare.com piwik.wohnservice-wien.at *.ytimg.com *.googlevideo.com *.youtube-nocookie.com *.googleapis.com *.wien.gv.at *.google.com \'unsafe-eval\' \'unsafe-inline\' \'script-src-elem\'', + ], + ], + ], + ], + 'FE' => [ + 'debug' => true, + ], + // This GFX configuration allows processing by installed ImageMagick 6 + 'GFX' => [ + 'processor' => 'ImageMagick', + 'processor_path' => '/usr/bin/', + 'processor_path_lzw' => '/usr/bin/', + ], + 'SYS' => [ + 'cookieDomain' => '/\.ddev\.site$/', + 'trustedHostsPattern' => '.*', + 'devIPmask' => '*', + 'displayErrors' => 1, + ] + ] +); diff --git a/config/system/settings.php b/config/system/settings.php new file mode 100644 index 0000000..65c9fca --- /dev/null +++ b/config/system/settings.php @@ -0,0 +1,169 @@ + [ + 'HTTP' => [ + 'Response' => [ + 'Headers' => [ + 'csp' => 'Content-Security-Policy: default-src \'self\' *.gstatic.com cdnjs.cloudflare.com piwik.wohnservice-wien.at *.ytimg.com *.googlevideo.com *.youtube-nocookie.com *.googleapis.com *.wien.gv.at *.google.com \'unsafe-eval\' \'unsafe-inline\'', + ], + ], + ], + 'debug' => false, + 'explicitADmode' => 'explicitAllow', + 'installToolPassword' => '$pbkdf2-sha256$25000$J4PZzLyS4haJCD.ajwNIDw$kj//RtM.xTPuXDa2/qwr/CiLIUO6MMbuI367AHEs6hU', + 'passwordHashing' => [ + 'className' => 'TYPO3\\CMS\\Core\\Crypto\\PasswordHashing\\BcryptPasswordHash', + 'options' => [], + ], + ], + 'DB' => [ + 'Connections' => [ + 'Default' => [ + 'charset' => 'utf8', + 'dbname' => 'func_test_at', + 'driver' => 'mysqli', + 'host' => 'mariadb10', + 'password' => 'password', + 'port' => 3307, + 'user' => 'root', + ], + ], + ], + 'EXT' => [], + 'EXTCONF' => [ + 'lang' => [ + 'availableLanguages' => [ + 'de', + ], + ], + ], + 'EXTENSIONS' => [ + 'backend' => [ + 'backendFavicon' => '', + 'backendLogo' => '', + 'loginBackgroundImage' => '', + 'loginFootnote' => '', + 'loginHighlightColor' => '', + 'loginLogo' => '', + 'loginLogoAlt' => '', + ], + 'bootstrap_package' => [ + 'disableCssProcessing' => '0', + 'disableFontLoader' => '1', + 'disableGoogleFontCaching' => '0', + 'disablePageTsBackendLayouts' => '0', + 'disablePageTsContentElements' => '0', + 'disablePageTsRTE' => '0', + 'disablePageTsTCADefaults' => '0', + 'disablePageTsTCEFORM' => '0', + 'disablePageTsTCEMAIN' => '0', + ], + 'extensionmanager' => [ + 'automaticInstallation' => '1', + 'offlineMode' => '0', + ], + 'indexed_search' => [ + 'catdoc' => '/usr/bin/', + 'debugMode' => '0', + 'deleteFromIndexAfterEditing' => '1', + 'disableFrontendIndexing' => '0', + 'enableMetaphoneSearch' => '1', + 'flagBitMask' => '192', + 'fullTextDataLength' => '0', + 'ignoreExtensions' => '', + 'indexExternalURLs' => '0', + 'maxAge' => '0', + 'maxExternalFiles' => '5', + 'minAge' => '24', + 'pdf_mode' => '20', + 'pdftools' => '/usr/bin/', + 'ppthtml' => '/usr/bin/', + 'unrtf' => '/usr/bin/', + 'unzip' => '/usr/bin/', + 'useCrawlerForExternalFiles' => '0', + 'useMysqlFulltext' => '0', + 'xlhtml' => '/usr/bin/', + ], + 'ke_search' => [ + 'allowEmptySearch' => '1', + 'enableExplicitAnd' => '0', + 'enablePartSearch' => '1', + 'finishNotification' => '0', + 'loglevel' => 'ERROR', + 'multiplyValueToTitle' => '1', + 'notificationRecipient' => '', + 'notificationSender' => 'no_reply@domain.com', + 'notificationSubject' => '[KE_SEARCH INDEXER NOTIFICATION]', + 'pathCatdoc' => '/usr/bin/', + 'pathPdfinfo' => '/usr/bin/', + 'pathPdftotext' => '/usr/bin/', + 'searchWordLength' => '4', + ], + 'news' => [ + 'advancedMediaPreview' => '1', + 'archiveDate' => 'date', + 'categoryBeGroupTceFormsRestriction' => '0', + 'categoryRestriction' => '', + 'contentElementPreview' => '1', + 'contentElementRelation' => '1', + 'dateTimeNotRequired' => '0', + 'hidePageTreeForAdministrationModule' => '0', + 'manualSorting' => '0', + 'mediaPreview' => 'false', + 'prependAtCopy' => '1', + 'resourceFolderImporter' => '/news_import', + 'rteForTeaser' => '0', + 'showAdministrationModule' => '1', + 'showImporter' => '0', + 'slugBehaviour' => 'unique', + 'storageUidImporter' => '1', + 'tagPid' => '1', + ], + 'scheduler' => [ + 'maxLifetime' => '1440', + 'showSampleTasks' => '1', + ], + ], + 'FE' => [ + 'debug' => false, + 'passwordHashing' => [ + 'className' => 'TYPO3\\CMS\\Core\\Crypto\\PasswordHashing\\BcryptPasswordHash', + 'options' => [], + ], + ], + 'GFX' => [ + 'jpg_quality' => '80', + ], + 'MAIL' => [ + 'defaultMailFromAddress' => 'no-reply@example.com', + 'transport_smtp_encrypt' => false, + 'transport_smtp_password' => '', + 'transport_smtp_server' => '', + 'transport_smtp_username' => '', + ], + 'SYS' => [ + 'caching' => [ + 'cacheConfigurations' => [ + 'extbase_object' => [ + 'backend' => 'TYPO3\\CMS\\Core\\Cache\\Backend\\Typo3DatabaseBackend', + 'frontend' => 'TYPO3\\CMS\\Core\\Cache\\Frontend\\VariableFrontend', + 'groups' => [ + 'system', + ], + 'options' => [ + 'defaultLifetime' => 60, + ], + ], + ], + ], + 'devIPmask' => '127.0.0.1', + 'displayErrors' => 0, + 'encryptionKey' => 'ef791a3dc7a18e20d575d6ebe666bcfadc3be7744f66ef14e863fcb76a8baffb5f7dea3e1d11134d5ed745bf84aa65f8', + 'exceptionalErrors' => 4096, + 'phpTimeZone' => 'Europe/Vienna', + 'sitename' => 'Managed Typo3', + 'systemMaintainers' => [ + 1, + ], + ], +]; diff --git a/data/test.sql b/data/test.sql new file mode 100644 index 0000000..0206bbb --- /dev/null +++ b/data/test.sql @@ -0,0 +1,2868 @@ +-- MariaDB dump 10.19 Distrib 10.6.11-MariaDB, for Linux (x86_64) +-- +-- Host: localhost Database: func_test_at +-- ------------------------------------------------------ +-- Server version 10.6.11-MariaDB + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; +/*!40101 SET NAMES utf8mb4 */; +/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; +/*!40103 SET TIME_ZONE='+00:00' */; +/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; +/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; +/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; +/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; + +-- +-- Table structure for table `backend_layout` +-- + +DROP TABLE IF EXISTS `backend_layout`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `backend_layout` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pid` int(11) NOT NULL DEFAULT 0, + `tstamp` int(10) unsigned NOT NULL DEFAULT 0, + `crdate` int(10) unsigned NOT NULL DEFAULT 0, + `cruser_id` int(10) unsigned NOT NULL DEFAULT 0, + `deleted` smallint(5) unsigned NOT NULL DEFAULT 0, + `hidden` smallint(5) unsigned NOT NULL DEFAULT 0, + `sorting` int(11) NOT NULL DEFAULT 0, + `description` text DEFAULT NULL, + `t3_origuid` int(10) unsigned NOT NULL DEFAULT 0, + `t3ver_oid` int(10) unsigned NOT NULL DEFAULT 0, + `t3ver_wsid` int(10) unsigned NOT NULL DEFAULT 0, + `t3ver_state` smallint(6) NOT NULL DEFAULT 0, + `t3ver_stage` int(11) NOT NULL DEFAULT 0, + `title` varchar(255) NOT NULL DEFAULT '', + `config` text NOT NULL, + `icon` text DEFAULT NULL, + PRIMARY KEY (`uid`), + KEY `parent` (`pid`,`deleted`,`hidden`), + KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `backend_layout` +-- + +LOCK TABLES `backend_layout` WRITE; +/*!40000 ALTER TABLE `backend_layout` DISABLE KEYS */; +/*!40000 ALTER TABLE `backend_layout` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `be_dashboards` +-- + +DROP TABLE IF EXISTS `be_dashboards`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `be_dashboards` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pid` int(10) unsigned NOT NULL DEFAULT 0, + `tstamp` int(10) unsigned NOT NULL DEFAULT 0, + `crdate` int(10) unsigned NOT NULL DEFAULT 0, + `cruser_id` int(10) unsigned NOT NULL DEFAULT 0, + `deleted` smallint(5) unsigned NOT NULL DEFAULT 0, + `hidden` smallint(5) unsigned NOT NULL DEFAULT 0, + `starttime` int(10) unsigned NOT NULL DEFAULT 0, + `endtime` int(10) unsigned NOT NULL DEFAULT 0, + `identifier` varchar(120) NOT NULL DEFAULT '', + `title` varchar(120) NOT NULL DEFAULT '', + `widgets` text DEFAULT NULL, + PRIMARY KEY (`uid`), + KEY `parent` (`pid`,`deleted`,`hidden`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `be_dashboards` +-- + +LOCK TABLES `be_dashboards` WRITE; +/*!40000 ALTER TABLE `be_dashboards` DISABLE KEYS */; +INSERT INTO `be_dashboards` VALUES (1,0,1676910164,1676910164,1,0,0,0,0,'5a1e4c7c7e59315eeeaae0a9854999e6ebc202e4','My dashboard','{\"846988ee0d7e05f15834aede9c4d9eb592bd927f\":{\"identifier\":\"t3information\"},\"d31ab551656dcdb6e1f8ea139863b7ad4849910b\":{\"identifier\":\"docGettingStarted\"}}'); +/*!40000 ALTER TABLE `be_dashboards` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `be_groups` +-- + +DROP TABLE IF EXISTS `be_groups`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `be_groups` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pid` int(10) unsigned NOT NULL DEFAULT 0, + `tstamp` int(10) unsigned NOT NULL DEFAULT 0, + `crdate` int(10) unsigned NOT NULL DEFAULT 0, + `cruser_id` int(10) unsigned NOT NULL DEFAULT 0, + `deleted` smallint(5) unsigned NOT NULL DEFAULT 0, + `hidden` smallint(5) unsigned NOT NULL DEFAULT 0, + `description` text DEFAULT NULL, + `title` varchar(50) NOT NULL DEFAULT '', + `non_exclude_fields` text DEFAULT NULL, + `explicit_allowdeny` text DEFAULT NULL, + `allowed_languages` varchar(255) NOT NULL DEFAULT '', + `custom_options` text DEFAULT NULL, + `db_mountpoints` text DEFAULT NULL, + `pagetypes_select` text DEFAULT NULL, + `tables_select` text DEFAULT NULL, + `tables_modify` text DEFAULT NULL, + `groupMods` text DEFAULT NULL, + `availableWidgets` text DEFAULT NULL, + `mfa_providers` text DEFAULT NULL, + `file_mountpoints` text DEFAULT NULL, + `file_permissions` text DEFAULT NULL, + `TSconfig` text DEFAULT NULL, + `subgroup` text DEFAULT NULL, + `workspace_perms` smallint(6) NOT NULL DEFAULT 1, + `category_perms` longtext DEFAULT NULL, + PRIMARY KEY (`uid`), + KEY `parent` (`pid`,`deleted`,`hidden`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `be_groups` +-- + +LOCK TABLES `be_groups` WRITE; +/*!40000 ALTER TABLE `be_groups` DISABLE KEYS */; +/*!40000 ALTER TABLE `be_groups` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `be_sessions` +-- + +DROP TABLE IF EXISTS `be_sessions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `be_sessions` ( + `ses_id` varchar(190) NOT NULL DEFAULT '', + `ses_iplock` varchar(39) NOT NULL DEFAULT '', + `ses_userid` int(10) unsigned NOT NULL DEFAULT 0, + `ses_tstamp` int(10) unsigned NOT NULL DEFAULT 0, + `ses_data` longblob DEFAULT NULL, + PRIMARY KEY (`ses_id`), + KEY `ses_tstamp` (`ses_tstamp`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `be_sessions` +-- + +LOCK TABLES `be_sessions` WRITE; +/*!40000 ALTER TABLE `be_sessions` DISABLE KEYS */; +/*!40000 ALTER TABLE `be_sessions` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `be_users` +-- + +DROP TABLE IF EXISTS `be_users`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `be_users` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pid` int(10) unsigned NOT NULL DEFAULT 0, + `tstamp` int(10) unsigned NOT NULL DEFAULT 0, + `crdate` int(10) unsigned NOT NULL DEFAULT 0, + `cruser_id` int(10) unsigned NOT NULL DEFAULT 0, + `deleted` smallint(5) unsigned NOT NULL DEFAULT 0, + `disable` smallint(5) unsigned NOT NULL DEFAULT 0, + `starttime` int(10) unsigned NOT NULL DEFAULT 0, + `endtime` int(10) unsigned NOT NULL DEFAULT 0, + `description` text DEFAULT NULL, + `username` varchar(50) NOT NULL DEFAULT '', + `avatar` int(10) unsigned NOT NULL DEFAULT 0, + `password` varchar(100) NOT NULL DEFAULT '', + `admin` smallint(5) unsigned NOT NULL DEFAULT 0, + `usergroup` text DEFAULT NULL, + `lang` varchar(10) NOT NULL DEFAULT 'default', + `email` varchar(255) NOT NULL DEFAULT '', + `db_mountpoints` text DEFAULT NULL, + `options` smallint(5) unsigned NOT NULL DEFAULT 0, + `realName` varchar(80) NOT NULL DEFAULT '', + `userMods` text DEFAULT NULL, + `allowed_languages` varchar(255) NOT NULL DEFAULT '', + `uc` mediumblob DEFAULT NULL, + `file_mountpoints` text DEFAULT NULL, + `file_permissions` text DEFAULT NULL, + `workspace_perms` smallint(6) NOT NULL DEFAULT 1, + `TSconfig` text DEFAULT NULL, + `lastlogin` int(10) unsigned NOT NULL DEFAULT 0, + `workspace_id` int(11) NOT NULL DEFAULT 0, + `mfa` mediumblob DEFAULT NULL, + `category_perms` longtext DEFAULT NULL, + `password_reset_token` varchar(100) NOT NULL DEFAULT '', + `tx_news_categorymounts` varchar(255) NOT NULL DEFAULT '', + PRIMARY KEY (`uid`), + KEY `username` (`username`), + KEY `parent` (`pid`,`deleted`,`disable`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `be_users` +-- + +LOCK TABLES `be_users` WRITE; +/*!40000 ALTER TABLE `be_users` DISABLE KEYS */; +INSERT INTO `be_users` VALUES (1,0,1676910156,1676910156,0,0,0,0,0,NULL,'admin',0,'$2y$12$rt1Fgda6QerLQID4Rq/G9ezi1kio92fDLj2OIVXDEiY1tLA7z3fom',1,NULL,'default','',NULL,0,'',NULL,'','a:11:{s:14:\"interfaceSetup\";s:0:\"\";s:10:\"moduleData\";a:6:{s:28:\"dashboard/current_dashboard/\";s:40:\"5a1e4c7c7e59315eeeaae0a9854999e6ebc202e4\";s:10:\"web_layout\";a:3:{s:8:\"function\";s:1:\"1\";s:8:\"language\";s:1:\"0\";s:19:\"constant_editor_cat\";N;}s:57:\"TYPO3\\CMS\\Backend\\Utility\\BackendUtility::getUpdateSignal\";a:0:{}s:10:\"FormEngine\";a:2:{i:0;a:1:{s:32:\"86205c5935270b8ee413592ec1b62292\";a:4:{i:0;s:8:\"NEW SITE\";i:1;a:5:{s:4:\"edit\";a:1:{s:12:\"sys_template\";a:1:{i:1;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;}i:2;s:35:\"&edit%5Bsys_template%5D%5B1%5D=edit\";i:3;a:5:{s:5:\"table\";s:12:\"sys_template\";s:3:\"uid\";i:1;s:3:\"pid\";i:1;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}}}i:1;s:32:\"86205c5935270b8ee413592ec1b62292\";}s:16:\"opendocs::recent\";a:1:{s:32:\"696addfecc296b326ff6e9f04c7ff3e1\";a:4:{i:0;s:11:\"example.com\";i:1;a:5:{s:4:\"edit\";a:1:{s:5:\"pages\";a:1:{i:1;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;}i:2;s:28:\"&edit%5Bpages%5D%5B1%5D=edit\";i:3;a:5:{s:5:\"table\";s:5:\"pages\";s:3:\"uid\";i:1;s:3:\"pid\";i:0;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}}}s:6:\"web_ts\";a:3:{s:8:\"function\";s:85:\"TYPO3\\CMS\\Tstemplate\\Controller\\TypoScriptTemplateInformationModuleFunctionController\";s:8:\"language\";N;s:19:\"constant_editor_cat\";s:14:\"frontend login\";}}s:14:\"emailMeAtLogin\";i:0;s:8:\"titleLen\";i:50;s:8:\"edit_RTE\";s:1:\"1\";s:20:\"edit_docModuleUpload\";s:1:\"1\";s:25:\"resizeTextareas_MaxHeight\";i:500;s:4:\"lang\";s:7:\"default\";s:19:\"firstLoginTimeStamp\";i:1676910163;s:15:\"moduleSessionID\";a:6:{s:28:\"dashboard/current_dashboard/\";s:40:\"86aac5d2aeff6d1172f84c56eaa697d1ab039f33\";s:10:\"web_layout\";s:40:\"86aac5d2aeff6d1172f84c56eaa697d1ab039f33\";s:57:\"TYPO3\\CMS\\Backend\\Utility\\BackendUtility::getUpdateSignal\";s:40:\"86aac5d2aeff6d1172f84c56eaa697d1ab039f33\";s:10:\"FormEngine\";s:40:\"86aac5d2aeff6d1172f84c56eaa697d1ab039f33\";s:16:\"opendocs::recent\";s:40:\"86aac5d2aeff6d1172f84c56eaa697d1ab039f33\";s:6:\"web_ts\";s:40:\"86aac5d2aeff6d1172f84c56eaa697d1ab039f33\";}s:17:\"BackendComponents\";a:1:{s:6:\"States\";a:1:{s:8:\"Pagetree\";a:1:{s:9:\"stateHash\";a:1:{s:3:\"0_0\";s:1:\"1\";}}}}}',NULL,NULL,1,NULL,1676910163,0,NULL,NULL,'',''); +/*!40000 ALTER TABLE `be_users` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `cache_adminpanel_requestcache` +-- + +DROP TABLE IF EXISTS `cache_adminpanel_requestcache`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cache_adminpanel_requestcache` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `identifier` varchar(250) NOT NULL DEFAULT '', + `expires` int(10) unsigned NOT NULL DEFAULT 0, + `content` longblob DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `cache_id` (`identifier`(180),`expires`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `cache_adminpanel_requestcache` +-- + +LOCK TABLES `cache_adminpanel_requestcache` WRITE; +/*!40000 ALTER TABLE `cache_adminpanel_requestcache` DISABLE KEYS */; +/*!40000 ALTER TABLE `cache_adminpanel_requestcache` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `cache_adminpanel_requestcache_tags` +-- + +DROP TABLE IF EXISTS `cache_adminpanel_requestcache_tags`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cache_adminpanel_requestcache_tags` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `identifier` varchar(250) NOT NULL DEFAULT '', + `tag` varchar(250) NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + KEY `cache_id` (`identifier`(191)), + KEY `cache_tag` (`tag`(191)) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `cache_adminpanel_requestcache_tags` +-- + +LOCK TABLES `cache_adminpanel_requestcache_tags` WRITE; +/*!40000 ALTER TABLE `cache_adminpanel_requestcache_tags` DISABLE KEYS */; +/*!40000 ALTER TABLE `cache_adminpanel_requestcache_tags` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `cache_imagesizes` +-- + +DROP TABLE IF EXISTS `cache_imagesizes`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cache_imagesizes` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `identifier` varchar(250) NOT NULL DEFAULT '', + `expires` int(10) unsigned NOT NULL DEFAULT 0, + `content` longblob DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `cache_id` (`identifier`(180),`expires`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `cache_imagesizes` +-- + +LOCK TABLES `cache_imagesizes` WRITE; +/*!40000 ALTER TABLE `cache_imagesizes` DISABLE KEYS */; +/*!40000 ALTER TABLE `cache_imagesizes` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `cache_imagesizes_tags` +-- + +DROP TABLE IF EXISTS `cache_imagesizes_tags`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cache_imagesizes_tags` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `identifier` varchar(250) NOT NULL DEFAULT '', + `tag` varchar(250) NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + KEY `cache_id` (`identifier`(191)), + KEY `cache_tag` (`tag`(191)) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `cache_imagesizes_tags` +-- + +LOCK TABLES `cache_imagesizes_tags` WRITE; +/*!40000 ALTER TABLE `cache_imagesizes_tags` DISABLE KEYS */; +/*!40000 ALTER TABLE `cache_imagesizes_tags` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `cache_news_category` +-- + +DROP TABLE IF EXISTS `cache_news_category`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cache_news_category` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `identifier` varchar(250) NOT NULL DEFAULT '', + `expires` int(10) unsigned NOT NULL DEFAULT 0, + `content` longblob DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `cache_id` (`identifier`(180),`expires`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `cache_news_category` +-- + +LOCK TABLES `cache_news_category` WRITE; +/*!40000 ALTER TABLE `cache_news_category` DISABLE KEYS */; +/*!40000 ALTER TABLE `cache_news_category` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `cache_news_category_tags` +-- + +DROP TABLE IF EXISTS `cache_news_category_tags`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cache_news_category_tags` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `identifier` varchar(250) NOT NULL DEFAULT '', + `tag` varchar(250) NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + KEY `cache_id` (`identifier`(191)), + KEY `cache_tag` (`tag`(191)) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `cache_news_category_tags` +-- + +LOCK TABLES `cache_news_category_tags` WRITE; +/*!40000 ALTER TABLE `cache_news_category_tags` DISABLE KEYS */; +/*!40000 ALTER TABLE `cache_news_category_tags` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `cache_treelist` +-- + +DROP TABLE IF EXISTS `cache_treelist`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cache_treelist` ( + `md5hash` varchar(32) NOT NULL DEFAULT '', + `pid` int(11) NOT NULL DEFAULT 0, + `treelist` mediumtext DEFAULT NULL, + `tstamp` int(11) NOT NULL DEFAULT 0, + `expires` int(10) unsigned NOT NULL DEFAULT 0, + PRIMARY KEY (`md5hash`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `cache_treelist` +-- + +LOCK TABLES `cache_treelist` WRITE; +/*!40000 ALTER TABLE `cache_treelist` DISABLE KEYS */; +/*!40000 ALTER TABLE `cache_treelist` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `fe_groups` +-- + +DROP TABLE IF EXISTS `fe_groups`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `fe_groups` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pid` int(10) unsigned NOT NULL DEFAULT 0, + `tstamp` int(10) unsigned NOT NULL DEFAULT 0, + `crdate` int(10) unsigned NOT NULL DEFAULT 0, + `cruser_id` int(10) unsigned NOT NULL DEFAULT 0, + `deleted` smallint(5) unsigned NOT NULL DEFAULT 0, + `hidden` smallint(5) unsigned NOT NULL DEFAULT 0, + `description` text DEFAULT NULL, + `tx_extbase_type` varchar(255) NOT NULL DEFAULT '0', + `title` varchar(50) NOT NULL DEFAULT '', + `subgroup` tinytext DEFAULT NULL, + `TSconfig` text DEFAULT NULL, + `felogin_redirectPid` tinytext DEFAULT NULL, + PRIMARY KEY (`uid`), + KEY `parent` (`pid`,`deleted`,`hidden`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `fe_groups` +-- + +LOCK TABLES `fe_groups` WRITE; +/*!40000 ALTER TABLE `fe_groups` DISABLE KEYS */; +/*!40000 ALTER TABLE `fe_groups` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `fe_sessions` +-- + +DROP TABLE IF EXISTS `fe_sessions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `fe_sessions` ( + `ses_id` varchar(190) NOT NULL DEFAULT '', + `ses_iplock` varchar(39) NOT NULL DEFAULT '', + `ses_userid` int(10) unsigned NOT NULL DEFAULT 0, + `ses_tstamp` int(10) unsigned NOT NULL DEFAULT 0, + `ses_data` mediumblob DEFAULT NULL, + `ses_permanent` smallint(5) unsigned NOT NULL DEFAULT 0, + PRIMARY KEY (`ses_id`), + KEY `ses_tstamp` (`ses_tstamp`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `fe_sessions` +-- + +LOCK TABLES `fe_sessions` WRITE; +/*!40000 ALTER TABLE `fe_sessions` DISABLE KEYS */; +/*!40000 ALTER TABLE `fe_sessions` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `fe_users` +-- + +DROP TABLE IF EXISTS `fe_users`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `fe_users` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pid` int(10) unsigned NOT NULL DEFAULT 0, + `tstamp` int(10) unsigned NOT NULL DEFAULT 0, + `crdate` int(10) unsigned NOT NULL DEFAULT 0, + `cruser_id` int(10) unsigned NOT NULL DEFAULT 0, + `deleted` smallint(5) unsigned NOT NULL DEFAULT 0, + `disable` smallint(5) unsigned NOT NULL DEFAULT 0, + `starttime` int(10) unsigned NOT NULL DEFAULT 0, + `endtime` int(10) unsigned NOT NULL DEFAULT 0, + `description` text DEFAULT NULL, + `tx_extbase_type` varchar(255) NOT NULL DEFAULT '0', + `username` varchar(255) NOT NULL DEFAULT '', + `password` varchar(100) NOT NULL DEFAULT '', + `usergroup` text DEFAULT NULL, + `name` varchar(160) NOT NULL DEFAULT '', + `first_name` varchar(50) NOT NULL DEFAULT '', + `middle_name` varchar(50) NOT NULL DEFAULT '', + `last_name` varchar(50) NOT NULL DEFAULT '', + `address` varchar(255) NOT NULL DEFAULT '', + `telephone` varchar(30) NOT NULL DEFAULT '', + `fax` varchar(30) NOT NULL DEFAULT '', + `email` varchar(255) NOT NULL DEFAULT '', + `uc` blob DEFAULT NULL, + `title` varchar(40) NOT NULL DEFAULT '', + `zip` varchar(10) NOT NULL DEFAULT '', + `city` varchar(50) NOT NULL DEFAULT '', + `country` varchar(40) NOT NULL DEFAULT '', + `www` varchar(80) NOT NULL DEFAULT '', + `company` varchar(80) NOT NULL DEFAULT '', + `image` tinytext DEFAULT NULL, + `TSconfig` text DEFAULT NULL, + `lastlogin` int(10) unsigned NOT NULL DEFAULT 0, + `is_online` int(10) unsigned NOT NULL DEFAULT 0, + `mfa` mediumblob DEFAULT NULL, + `felogin_redirectPid` tinytext DEFAULT NULL, + `felogin_forgotHash` varchar(80) DEFAULT '', + PRIMARY KEY (`uid`), + KEY `parent` (`pid`,`username`(100)), + KEY `username` (`username`(100)), + KEY `is_online` (`is_online`), + KEY `felogin_forgotHash` (`felogin_forgotHash`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `fe_users` +-- + +LOCK TABLES `fe_users` WRITE; +/*!40000 ALTER TABLE `fe_users` DISABLE KEYS */; +/*!40000 ALTER TABLE `fe_users` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `index_config` +-- + +DROP TABLE IF EXISTS `index_config`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `index_config` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pid` int(10) unsigned NOT NULL DEFAULT 0, + `tstamp` int(10) unsigned NOT NULL DEFAULT 0, + `crdate` int(10) unsigned NOT NULL DEFAULT 0, + `cruser_id` int(10) unsigned NOT NULL DEFAULT 0, + `hidden` smallint(5) unsigned NOT NULL DEFAULT 0, + `starttime` int(10) unsigned NOT NULL DEFAULT 0, + `description` text DEFAULT NULL, + `set_id` int(11) NOT NULL DEFAULT 0, + `session_data` mediumtext DEFAULT NULL, + `title` varchar(255) NOT NULL DEFAULT '', + `type` varchar(30) NOT NULL DEFAULT '', + `depth` int(10) unsigned NOT NULL DEFAULT 0, + `table2index` varchar(255) NOT NULL DEFAULT '', + `alternative_source_pid` int(10) unsigned NOT NULL DEFAULT 0, + `get_params` varchar(255) NOT NULL DEFAULT '', + `fieldlist` varchar(255) NOT NULL DEFAULT '', + `externalUrl` varchar(255) NOT NULL DEFAULT '', + `indexcfgs` text DEFAULT NULL, + `filepath` varchar(255) NOT NULL DEFAULT '', + `extensions` varchar(255) NOT NULL DEFAULT '', + `timer_next_indexing` int(11) NOT NULL DEFAULT 0, + `timer_frequency` int(11) NOT NULL DEFAULT 0, + `timer_offset` int(11) NOT NULL DEFAULT 0, + `url_deny` text DEFAULT NULL, + `recordsbatch` int(11) NOT NULL DEFAULT 0, + `records_indexonchange` smallint(6) NOT NULL DEFAULT 0, + PRIMARY KEY (`uid`), + KEY `parent` (`pid`,`hidden`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `index_config` +-- + +LOCK TABLES `index_config` WRITE; +/*!40000 ALTER TABLE `index_config` DISABLE KEYS */; +/*!40000 ALTER TABLE `index_config` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `index_debug` +-- + +DROP TABLE IF EXISTS `index_debug`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `index_debug` ( + `phash` int(11) NOT NULL DEFAULT 0, + `debuginfo` mediumtext DEFAULT NULL, + PRIMARY KEY (`phash`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `index_debug` +-- + +LOCK TABLES `index_debug` WRITE; +/*!40000 ALTER TABLE `index_debug` DISABLE KEYS */; +/*!40000 ALTER TABLE `index_debug` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `index_fulltext` +-- + +DROP TABLE IF EXISTS `index_fulltext`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `index_fulltext` ( + `phash` int(11) NOT NULL DEFAULT 0, + `fulltextdata` mediumtext DEFAULT NULL, + `metaphonedata` mediumtext NOT NULL, + PRIMARY KEY (`phash`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `index_fulltext` +-- + +LOCK TABLES `index_fulltext` WRITE; +/*!40000 ALTER TABLE `index_fulltext` DISABLE KEYS */; +INSERT INTO `index_fulltext` VALUES (64460995,'example.com ',''); +/*!40000 ALTER TABLE `index_fulltext` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `index_grlist` +-- + +DROP TABLE IF EXISTS `index_grlist`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `index_grlist` ( + `uniqid` int(11) NOT NULL AUTO_INCREMENT, + `phash` int(11) NOT NULL DEFAULT 0, + `phash_x` int(11) NOT NULL DEFAULT 0, + `hash_gr_list` int(11) NOT NULL DEFAULT 0, + `gr_list` varchar(255) NOT NULL DEFAULT '', + PRIMARY KEY (`uniqid`), + KEY `joinkey` (`phash`,`hash_gr_list`), + KEY `phash_grouping` (`phash_x`,`hash_gr_list`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `index_grlist` +-- + +LOCK TABLES `index_grlist` WRITE; +/*!40000 ALTER TABLE `index_grlist` DISABLE KEYS */; +INSERT INTO `index_grlist` VALUES (1,64460995,64460995,215747215,'0,-1'); +/*!40000 ALTER TABLE `index_grlist` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `index_phash` +-- + +DROP TABLE IF EXISTS `index_phash`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `index_phash` ( + `phash` int(11) NOT NULL DEFAULT 0, + `phash_grouping` int(11) NOT NULL DEFAULT 0, + `static_page_arguments` blob DEFAULT NULL, + `data_filename` varchar(1024) NOT NULL DEFAULT '', + `data_page_id` int(10) unsigned NOT NULL DEFAULT 0, + `data_page_type` int(10) unsigned NOT NULL DEFAULT 0, + `data_page_mp` varchar(255) NOT NULL DEFAULT '', + `gr_list` varchar(255) NOT NULL DEFAULT '', + `item_type` varchar(5) NOT NULL DEFAULT '', + `item_title` varchar(255) NOT NULL DEFAULT '', + `item_description` varchar(255) NOT NULL DEFAULT '', + `item_mtime` int(11) NOT NULL DEFAULT 0, + `tstamp` int(10) unsigned NOT NULL DEFAULT 0, + `item_size` int(11) NOT NULL DEFAULT 0, + `contentHash` int(11) NOT NULL DEFAULT 0, + `crdate` int(11) NOT NULL DEFAULT 0, + `parsetime` int(11) NOT NULL DEFAULT 0, + `sys_language_uid` int(11) NOT NULL DEFAULT 0, + `item_crdate` int(11) NOT NULL DEFAULT 0, + `externalUrl` smallint(6) NOT NULL DEFAULT 0, + `recordUid` int(11) NOT NULL DEFAULT 0, + `freeIndexUid` int(11) NOT NULL DEFAULT 0, + `freeIndexSetId` int(11) NOT NULL DEFAULT 0, + PRIMARY KEY (`phash`), + KEY `phash_grouping` (`phash_grouping`), + KEY `freeIndexUid` (`freeIndexUid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `index_phash` +-- + +LOCK TABLES `index_phash` WRITE; +/*!40000 ALTER TABLE `index_phash` DISABLE KEYS */; +INSERT INTO `index_phash` VALUES (64460995,231284643,'[]','',1,0,'','0,-1','0','example.com','',1676910572,1676911371,6090,95136726,1676911371,51,0,1676910413,0,0,0,0); +/*!40000 ALTER TABLE `index_phash` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `index_rel` +-- + +DROP TABLE IF EXISTS `index_rel`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `index_rel` ( + `phash` int(11) NOT NULL DEFAULT 0, + `wid` int(11) NOT NULL DEFAULT 0, + `count` smallint(5) unsigned NOT NULL DEFAULT 0, + `first` int(10) unsigned NOT NULL DEFAULT 0, + `freq` smallint(5) unsigned NOT NULL DEFAULT 0, + `flags` smallint(5) unsigned NOT NULL DEFAULT 0, + PRIMARY KEY (`phash`,`wid`), + KEY `wid` (`wid`,`phash`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `index_rel` +-- + +LOCK TABLES `index_rel` WRITE; +/*!40000 ALTER TABLE `index_rel` DISABLE KEYS */; +INSERT INTO `index_rel` VALUES (64460995,95136726,1,0,32000,128); +/*!40000 ALTER TABLE `index_rel` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `index_section` +-- + +DROP TABLE IF EXISTS `index_section`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `index_section` ( + `uniqid` int(11) NOT NULL AUTO_INCREMENT, + `phash` int(11) NOT NULL DEFAULT 0, + `phash_t3` int(11) NOT NULL DEFAULT 0, + `rl0` int(10) unsigned NOT NULL DEFAULT 0, + `rl1` int(10) unsigned NOT NULL DEFAULT 0, + `rl2` int(10) unsigned NOT NULL DEFAULT 0, + `page_id` int(11) NOT NULL DEFAULT 0, + PRIMARY KEY (`uniqid`), + KEY `joinkey` (`phash`,`rl0`), + KEY `page_id` (`page_id`), + KEY `rl0` (`rl0`,`rl1`,`phash`), + KEY `rl0_2` (`rl0`,`phash`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `index_section` +-- + +LOCK TABLES `index_section` WRITE; +/*!40000 ALTER TABLE `index_section` DISABLE KEYS */; +INSERT INTO `index_section` VALUES (1,64460995,64460995,1,0,0,1); +/*!40000 ALTER TABLE `index_section` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `index_stat_word` +-- + +DROP TABLE IF EXISTS `index_stat_word`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `index_stat_word` ( + `uid` int(11) NOT NULL AUTO_INCREMENT, + `word` varchar(50) NOT NULL DEFAULT '', + `index_stat_search_id` int(11) NOT NULL DEFAULT 0, + `tstamp` int(11) NOT NULL DEFAULT 0, + `pageid` int(11) NOT NULL DEFAULT 0, + PRIMARY KEY (`uid`), + KEY `tstamp` (`tstamp`,`word`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `index_stat_word` +-- + +LOCK TABLES `index_stat_word` WRITE; +/*!40000 ALTER TABLE `index_stat_word` DISABLE KEYS */; +/*!40000 ALTER TABLE `index_stat_word` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `index_words` +-- + +DROP TABLE IF EXISTS `index_words`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `index_words` ( + `wid` int(11) NOT NULL DEFAULT 0, + `baseword` varchar(60) NOT NULL DEFAULT '', + `metaphone` int(11) NOT NULL DEFAULT 0, + `is_stopword` smallint(6) NOT NULL DEFAULT 0, + PRIMARY KEY (`wid`), + KEY `baseword` (`baseword`), + KEY `metaphone` (`metaphone`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `index_words` +-- + +LOCK TABLES `index_words` WRITE; +/*!40000 ALTER TABLE `index_words` DISABLE KEYS */; +INSERT INTO `index_words` VALUES (95136726,'example.com',250024433,0); +/*!40000 ALTER TABLE `index_words` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `pages` +-- + +DROP TABLE IF EXISTS `pages`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `pages` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pid` int(11) NOT NULL DEFAULT 0, + `tstamp` int(10) unsigned NOT NULL DEFAULT 0, + `crdate` int(10) unsigned NOT NULL DEFAULT 0, + `cruser_id` int(10) unsigned NOT NULL DEFAULT 0, + `deleted` smallint(5) unsigned NOT NULL DEFAULT 0, + `hidden` smallint(5) unsigned NOT NULL DEFAULT 0, + `starttime` int(10) unsigned NOT NULL DEFAULT 0, + `endtime` int(10) unsigned NOT NULL DEFAULT 0, + `fe_group` varchar(255) NOT NULL DEFAULT '0', + `sorting` int(11) NOT NULL DEFAULT 0, + `rowDescription` text DEFAULT NULL, + `editlock` smallint(5) unsigned NOT NULL DEFAULT 0, + `sys_language_uid` int(11) NOT NULL DEFAULT 0, + `l10n_parent` int(10) unsigned NOT NULL DEFAULT 0, + `l10n_source` int(10) unsigned NOT NULL DEFAULT 0, + `l10n_state` text DEFAULT NULL, + `t3_origuid` int(10) unsigned NOT NULL DEFAULT 0, + `l10n_diffsource` mediumblob DEFAULT NULL, + `t3ver_oid` int(10) unsigned NOT NULL DEFAULT 0, + `t3ver_wsid` int(10) unsigned NOT NULL DEFAULT 0, + `t3ver_state` smallint(6) NOT NULL DEFAULT 0, + `t3ver_stage` int(11) NOT NULL DEFAULT 0, + `perms_userid` int(10) unsigned NOT NULL DEFAULT 0, + `perms_groupid` int(10) unsigned NOT NULL DEFAULT 0, + `perms_user` smallint(5) unsigned NOT NULL DEFAULT 0, + `perms_group` smallint(5) unsigned NOT NULL DEFAULT 0, + `perms_everybody` smallint(5) unsigned NOT NULL DEFAULT 0, + `title` varchar(255) NOT NULL DEFAULT '', + `slug` varchar(2048) DEFAULT NULL, + `doktype` int(10) unsigned NOT NULL DEFAULT 0, + `TSconfig` text DEFAULT NULL, + `is_siteroot` smallint(6) NOT NULL DEFAULT 0, + `php_tree_stop` smallint(6) NOT NULL DEFAULT 0, + `url` varchar(255) NOT NULL DEFAULT '', + `shortcut` int(10) unsigned NOT NULL DEFAULT 0, + `shortcut_mode` int(10) unsigned NOT NULL DEFAULT 0, + `subtitle` varchar(255) NOT NULL DEFAULT '', + `layout` int(10) unsigned NOT NULL DEFAULT 0, + `target` varchar(80) NOT NULL DEFAULT '', + `media` int(10) unsigned NOT NULL DEFAULT 0, + `lastUpdated` int(10) unsigned NOT NULL DEFAULT 0, + `keywords` text DEFAULT NULL, + `cache_timeout` int(10) unsigned NOT NULL DEFAULT 0, + `cache_tags` varchar(255) NOT NULL DEFAULT '', + `newUntil` int(10) unsigned NOT NULL DEFAULT 0, + `description` text DEFAULT NULL, + `no_search` smallint(5) unsigned NOT NULL DEFAULT 0, + `SYS_LASTCHANGED` int(10) unsigned NOT NULL DEFAULT 0, + `abstract` text DEFAULT NULL, + `module` varchar(255) NOT NULL DEFAULT '', + `extendToSubpages` smallint(5) unsigned NOT NULL DEFAULT 0, + `author` varchar(255) NOT NULL DEFAULT '', + `author_email` varchar(255) NOT NULL DEFAULT '', + `nav_title` varchar(255) NOT NULL DEFAULT '', + `nav_hide` smallint(6) NOT NULL DEFAULT 0, + `content_from_pid` int(10) unsigned NOT NULL DEFAULT 0, + `mount_pid` int(10) unsigned NOT NULL DEFAULT 0, + `mount_pid_ol` smallint(6) NOT NULL DEFAULT 0, + `l18n_cfg` smallint(6) NOT NULL DEFAULT 0, + `fe_login_mode` smallint(6) NOT NULL DEFAULT 0, + `backend_layout` varchar(64) NOT NULL DEFAULT '', + `backend_layout_next_level` varchar(64) NOT NULL DEFAULT '', + `tsconfig_includes` text DEFAULT NULL, + `categories` int(10) unsigned NOT NULL DEFAULT 0, + `seo_title` varchar(255) NOT NULL DEFAULT '', + `no_index` smallint(6) NOT NULL DEFAULT 0, + `no_follow` smallint(6) NOT NULL DEFAULT 0, + `og_title` varchar(255) NOT NULL DEFAULT '', + `og_description` text DEFAULT NULL, + `og_image` int(10) unsigned NOT NULL DEFAULT 0, + `twitter_title` varchar(255) NOT NULL DEFAULT '', + `twitter_description` text DEFAULT NULL, + `twitter_image` int(10) unsigned NOT NULL DEFAULT 0, + `twitter_card` varchar(255) NOT NULL DEFAULT '', + `canonical_link` varchar(2048) NOT NULL DEFAULT '', + `sitemap_priority` decimal(2,1) NOT NULL DEFAULT 0.5, + `sitemap_changefreq` varchar(10) NOT NULL DEFAULT '', + `nav_icon_set` varchar(255) NOT NULL DEFAULT '', + `nav_icon_identifier` varchar(255) NOT NULL DEFAULT '', + `nav_icon` int(10) unsigned DEFAULT 0, + `thumbnail` int(10) unsigned DEFAULT 0, + `tx_kesearch_tags` text DEFAULT NULL, + `tx_kesearch_abstract` text DEFAULT NULL, + `tx_kesearch_resultimage` int(10) unsigned NOT NULL DEFAULT 0, + PRIMARY KEY (`uid`), + KEY `determineSiteRoot` (`is_siteroot`), + KEY `language_identifier` (`l10n_parent`,`sys_language_uid`), + KEY `slug` (`slug`(127)), + KEY `parent` (`pid`,`deleted`,`hidden`), + KEY `translation_source` (`l10n_source`), + KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `pages` +-- + +LOCK TABLES `pages` WRITE; +/*!40000 ALTER TABLE `pages` DISABLE KEYS */; +INSERT INTO `pages` VALUES (1,0,1676910572,1676910413,1,0,0,0,0,'',256,NULL,0,0,0,0,NULL,0,'{\"doktype\":\"\",\"title\":\"\",\"slug\":\"\",\"nav_title\":\"\",\"subtitle\":\"\",\"nav_icon_set\":\"\",\"nav_icon\":\"\",\"seo_title\":\"\",\"description\":\"\",\"no_index\":\"\",\"no_follow\":\"\",\"canonical_link\":\"\",\"sitemap_changefreq\":\"\",\"sitemap_priority\":\"\",\"og_title\":\"\",\"og_description\":\"\",\"og_image\":\"\",\"twitter_title\":\"\",\"twitter_description\":\"\",\"twitter_image\":\"\",\"twitter_card\":\"\",\"abstract\":\"\",\"keywords\":\"\",\"author\":\"\",\"author_email\":\"\",\"lastUpdated\":\"\",\"layout\":\"\",\"newUntil\":\"\",\"backend_layout\":\"\",\"backend_layout_next_level\":\"\",\"thumbnail\":\"\",\"content_from_pid\":\"\",\"target\":\"\",\"cache_timeout\":\"\",\"cache_tags\":\"\",\"is_siteroot\":\"\",\"php_tree_stop\":\"\",\"module\":\"\",\"media\":\"\",\"tsconfig_includes\":\"\",\"TSconfig\":\"\",\"l18n_cfg\":\"\",\"hidden\":\"\",\"nav_hide\":\"\",\"starttime\":\"\",\"endtime\":\"\",\"extendToSubpages\":\"\",\"fe_group\":\"\",\"fe_login_mode\":\"\",\"editlock\":\"\",\"categories\":\"\",\"rowDescription\":\"\",\"no_search\":\"\",\"tx_kesearch_tags\":\"\",\"tx_kesearch_abstract\":\"\",\"tx_kesearch_resultimage\":\"\"}',0,0,0,0,1,1,31,31,0,'example.com','/',1,NULL,1,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,1676910572,NULL,'',0,'','','',0,0,0,0,0,0,'pagets__special_start','pagets__default',NULL,0,'',0,0,'',NULL,0,'',NULL,0,'summary','',0.5,'','','',0,0,NULL,NULL,0); +/*!40000 ALTER TABLE `pages` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_be_shortcuts` +-- + +DROP TABLE IF EXISTS `sys_be_shortcuts`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `sys_be_shortcuts` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `userid` int(10) unsigned NOT NULL DEFAULT 0, + `route` varchar(255) NOT NULL DEFAULT '', + `arguments` text DEFAULT NULL, + `description` varchar(255) NOT NULL DEFAULT '', + `sorting` int(11) NOT NULL DEFAULT 0, + `sc_group` smallint(6) NOT NULL DEFAULT 0, + PRIMARY KEY (`uid`), + KEY `event` (`userid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_be_shortcuts` +-- + +LOCK TABLES `sys_be_shortcuts` WRITE; +/*!40000 ALTER TABLE `sys_be_shortcuts` DISABLE KEYS */; +/*!40000 ALTER TABLE `sys_be_shortcuts` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_category` +-- + +DROP TABLE IF EXISTS `sys_category`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `sys_category` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pid` int(11) NOT NULL DEFAULT 0, + `tstamp` int(10) unsigned NOT NULL DEFAULT 0, + `crdate` int(10) unsigned NOT NULL DEFAULT 0, + `cruser_id` int(10) unsigned NOT NULL DEFAULT 0, + `deleted` smallint(5) unsigned NOT NULL DEFAULT 0, + `hidden` smallint(5) unsigned NOT NULL DEFAULT 0, + `starttime` int(10) unsigned NOT NULL DEFAULT 0, + `endtime` int(10) unsigned NOT NULL DEFAULT 0, + `sorting` int(11) NOT NULL DEFAULT 0, + `description` text DEFAULT NULL, + `sys_language_uid` int(11) NOT NULL DEFAULT 0, + `l10n_parent` int(10) unsigned NOT NULL DEFAULT 0, + `l10n_state` text DEFAULT NULL, + `t3_origuid` int(10) unsigned NOT NULL DEFAULT 0, + `l10n_diffsource` mediumblob DEFAULT NULL, + `t3ver_oid` int(10) unsigned NOT NULL DEFAULT 0, + `t3ver_wsid` int(10) unsigned NOT NULL DEFAULT 0, + `t3ver_state` smallint(6) NOT NULL DEFAULT 0, + `t3ver_stage` int(11) NOT NULL DEFAULT 0, + `title` tinytext NOT NULL, + `items` int(11) NOT NULL DEFAULT 0, + `parent` int(10) unsigned NOT NULL DEFAULT 0, + `fe_group` varchar(100) NOT NULL DEFAULT '0', + `images` int(10) unsigned DEFAULT 0, + `single_pid` int(10) unsigned NOT NULL DEFAULT 0, + `shortcut` int(11) NOT NULL DEFAULT 0, + `import_id` varchar(100) NOT NULL DEFAULT '', + `import_source` varchar(100) NOT NULL DEFAULT '', + `seo_title` varchar(255) NOT NULL DEFAULT '', + `seo_description` text DEFAULT NULL, + `seo_headline` varchar(255) NOT NULL DEFAULT '', + `seo_text` text DEFAULT NULL, + `slug` varchar(2048) DEFAULT NULL, + `tx_kesearch_filter` text DEFAULT NULL, + `tx_kesearch_filtersubcat` text DEFAULT NULL, + PRIMARY KEY (`uid`), + KEY `category_parent` (`parent`), + KEY `category_list` (`pid`,`deleted`,`sys_language_uid`), + KEY `parent` (`pid`,`deleted`,`hidden`), + KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`), + KEY `import` (`import_id`,`import_source`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_category` +-- + +LOCK TABLES `sys_category` WRITE; +/*!40000 ALTER TABLE `sys_category` DISABLE KEYS */; +/*!40000 ALTER TABLE `sys_category` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_category_record_mm` +-- + +DROP TABLE IF EXISTS `sys_category_record_mm`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `sys_category_record_mm` ( + `uid_local` int(10) unsigned NOT NULL DEFAULT 0, + `uid_foreign` int(10) unsigned NOT NULL DEFAULT 0, + `sorting` int(10) unsigned NOT NULL DEFAULT 0, + `sorting_foreign` int(10) unsigned NOT NULL DEFAULT 0, + `tablenames` varchar(255) NOT NULL DEFAULT '', + `fieldname` varchar(255) NOT NULL DEFAULT '', + KEY `uid_local` (`uid_local`), + KEY `uid_foreign` (`uid_foreign`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_category_record_mm` +-- + +LOCK TABLES `sys_category_record_mm` WRITE; +/*!40000 ALTER TABLE `sys_category_record_mm` DISABLE KEYS */; +/*!40000 ALTER TABLE `sys_category_record_mm` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_file` +-- + +DROP TABLE IF EXISTS `sys_file`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `sys_file` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pid` int(10) unsigned NOT NULL DEFAULT 0, + `tstamp` int(10) unsigned NOT NULL DEFAULT 0, + `last_indexed` int(11) NOT NULL DEFAULT 0, + `missing` smallint(6) NOT NULL DEFAULT 0, + `storage` int(11) NOT NULL DEFAULT 0, + `type` varchar(10) NOT NULL DEFAULT '', + `metadata` int(11) NOT NULL DEFAULT 0, + `identifier` text DEFAULT NULL, + `identifier_hash` varchar(40) NOT NULL DEFAULT '', + `folder_hash` varchar(40) NOT NULL DEFAULT '', + `extension` varchar(255) NOT NULL DEFAULT '', + `mime_type` varchar(255) NOT NULL DEFAULT '', + `name` tinytext DEFAULT NULL, + `sha1` varchar(40) NOT NULL DEFAULT '', + `size` bigint(20) unsigned NOT NULL DEFAULT 0, + `creation_date` int(11) NOT NULL DEFAULT 0, + `modification_date` int(11) NOT NULL DEFAULT 0, + PRIMARY KEY (`uid`), + KEY `sel01` (`storage`,`identifier_hash`), + KEY `folder` (`storage`,`folder_hash`), + KEY `tstamp` (`tstamp`), + KEY `lastindex` (`last_indexed`), + KEY `sha1` (`sha1`), + KEY `parent` (`pid`) +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_file` +-- + +LOCK TABLES `sys_file` WRITE; +/*!40000 ALTER TABLE `sys_file` DISABLE KEYS */; +INSERT INTO `sys_file` VALUES (1,0,1676911371,0,0,0,'2',0,'/typo3conf/ext/bootstrap_package/Resources/Public/Images/BootstrapPackage.svg','53b7aaf32363271515e80e6c7b25293292185218','27aadec2782a38a84423e8476091a41d1dbdbc06','svg','image/svg+xml','BootstrapPackage.svg','a6fb0cc7b50579d6255f16171147695a55b93c27',3843,1676910050,1670944995),(2,0,1676911371,0,0,0,'2',0,'/typo3conf/ext/bootstrap_package/Resources/Public/Images/BootstrapPackageInverted.svg','5b24af7f7f2c99d8a6188015bc8298396b952ab7','27aadec2782a38a84423e8476091a41d1dbdbc06','svg','image/svg+xml','BootstrapPackageInverted.svg','493f5cd69ede03cf7d436e92481422145674b907',3784,1676910050,1670944995); +/*!40000 ALTER TABLE `sys_file` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_file_collection` +-- + +DROP TABLE IF EXISTS `sys_file_collection`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `sys_file_collection` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pid` int(11) NOT NULL DEFAULT 0, + `tstamp` int(10) unsigned NOT NULL DEFAULT 0, + `crdate` int(10) unsigned NOT NULL DEFAULT 0, + `cruser_id` int(10) unsigned NOT NULL DEFAULT 0, + `deleted` smallint(5) unsigned NOT NULL DEFAULT 0, + `hidden` smallint(5) unsigned NOT NULL DEFAULT 0, + `starttime` int(10) unsigned NOT NULL DEFAULT 0, + `endtime` int(10) unsigned NOT NULL DEFAULT 0, + `description` text DEFAULT NULL, + `sys_language_uid` int(11) NOT NULL DEFAULT 0, + `l10n_parent` int(10) unsigned NOT NULL DEFAULT 0, + `l10n_state` text DEFAULT NULL, + `t3_origuid` int(10) unsigned NOT NULL DEFAULT 0, + `l10n_diffsource` mediumblob DEFAULT NULL, + `t3ver_oid` int(10) unsigned NOT NULL DEFAULT 0, + `t3ver_wsid` int(10) unsigned NOT NULL DEFAULT 0, + `t3ver_state` smallint(6) NOT NULL DEFAULT 0, + `t3ver_stage` int(11) NOT NULL DEFAULT 0, + `title` tinytext DEFAULT NULL, + `type` varchar(30) NOT NULL DEFAULT 'static', + `files` int(11) NOT NULL DEFAULT 0, + `storage` int(11) NOT NULL DEFAULT 0, + `folder` text DEFAULT NULL, + `recursive` smallint(6) NOT NULL DEFAULT 0, + `category` int(10) unsigned NOT NULL DEFAULT 0, + PRIMARY KEY (`uid`), + KEY `parent` (`pid`,`deleted`,`hidden`), + KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_file_collection` +-- + +LOCK TABLES `sys_file_collection` WRITE; +/*!40000 ALTER TABLE `sys_file_collection` DISABLE KEYS */; +/*!40000 ALTER TABLE `sys_file_collection` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_file_metadata` +-- + +DROP TABLE IF EXISTS `sys_file_metadata`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `sys_file_metadata` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pid` int(11) NOT NULL DEFAULT 0, + `tstamp` int(10) unsigned NOT NULL DEFAULT 0, + `crdate` int(10) unsigned NOT NULL DEFAULT 0, + `cruser_id` int(10) unsigned NOT NULL DEFAULT 0, + `sys_language_uid` int(11) NOT NULL DEFAULT 0, + `l10n_parent` int(10) unsigned NOT NULL DEFAULT 0, + `l10n_state` text DEFAULT NULL, + `t3_origuid` int(10) unsigned NOT NULL DEFAULT 0, + `l10n_diffsource` mediumblob DEFAULT NULL, + `t3ver_oid` int(10) unsigned NOT NULL DEFAULT 0, + `t3ver_wsid` int(10) unsigned NOT NULL DEFAULT 0, + `t3ver_state` smallint(6) NOT NULL DEFAULT 0, + `t3ver_stage` int(11) NOT NULL DEFAULT 0, + `file` int(11) NOT NULL DEFAULT 0, + `title` tinytext DEFAULT NULL, + `width` int(11) NOT NULL DEFAULT 0, + `height` int(11) NOT NULL DEFAULT 0, + `description` text DEFAULT NULL, + `alternative` text DEFAULT NULL, + `categories` int(10) unsigned NOT NULL DEFAULT 0, + `visible` int(10) unsigned DEFAULT 1, + `status` varchar(24) DEFAULT '', + `keywords` text DEFAULT NULL, + `caption` text DEFAULT NULL, + `creator_tool` varchar(255) DEFAULT '', + `download_name` varchar(255) DEFAULT '', + `creator` varchar(255) DEFAULT '', + `publisher` varchar(45) DEFAULT '', + `source` varchar(255) DEFAULT '', + `copyright` text DEFAULT NULL, + `location_country` varchar(45) DEFAULT '', + `location_region` varchar(45) DEFAULT '', + `location_city` varchar(45) DEFAULT '', + `latitude` decimal(24,14) DEFAULT 0.00000000000000, + `longitude` decimal(24,14) DEFAULT 0.00000000000000, + `ranking` int(10) unsigned DEFAULT 0, + `content_creation_date` int(10) unsigned DEFAULT 0, + `content_modification_date` int(10) unsigned DEFAULT 0, + `note` text DEFAULT NULL, + `unit` varchar(3) DEFAULT '', + `duration` double DEFAULT 0, + `color_space` varchar(4) DEFAULT '', + `pages` int(10) unsigned DEFAULT 0, + `language` varchar(12) DEFAULT '', + `fe_groups` tinytext DEFAULT NULL, + `tx_kesearch_no_search` smallint(6) NOT NULL DEFAULT 0, + PRIMARY KEY (`uid`), + KEY `file` (`file`), + KEY `fal_filelist` (`l10n_parent`,`sys_language_uid`), + KEY `parent` (`pid`), + KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`) +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_file_metadata` +-- + +LOCK TABLES `sys_file_metadata` WRITE; +/*!40000 ALTER TABLE `sys_file_metadata` DISABLE KEYS */; +INSERT INTO `sys_file_metadata` VALUES (1,0,1676911371,1676911371,1,0,0,NULL,0,'',0,0,0,0,1,NULL,244,68,NULL,NULL,0,1,'',NULL,NULL,'','','','','',NULL,'','','',0.00000000000000,0.00000000000000,0,0,0,NULL,'',0,'',0,'',NULL,0),(2,0,1676911371,1676911371,1,0,0,NULL,0,'',0,0,0,0,2,NULL,244,68,NULL,NULL,0,1,'',NULL,NULL,'','','','','',NULL,'','','',0.00000000000000,0.00000000000000,0,0,0,NULL,'',0,'',0,'',NULL,0); +/*!40000 ALTER TABLE `sys_file_metadata` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_file_processedfile` +-- + +DROP TABLE IF EXISTS `sys_file_processedfile`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `sys_file_processedfile` ( + `uid` int(11) NOT NULL AUTO_INCREMENT, + `tstamp` int(11) NOT NULL DEFAULT 0, + `crdate` int(11) NOT NULL DEFAULT 0, + `storage` int(11) NOT NULL DEFAULT 0, + `original` int(11) NOT NULL DEFAULT 0, + `identifier` varchar(512) NOT NULL DEFAULT '', + `name` tinytext DEFAULT NULL, + `processing_url` text DEFAULT NULL, + `configuration` blob DEFAULT NULL, + `configurationsha1` varchar(40) NOT NULL DEFAULT '', + `originalfilesha1` varchar(40) NOT NULL DEFAULT '', + `task_type` varchar(200) NOT NULL DEFAULT '', + `checksum` varchar(32) NOT NULL DEFAULT '', + `width` int(11) DEFAULT 0, + `height` int(11) DEFAULT 0, + PRIMARY KEY (`uid`), + KEY `combined_1` (`original`,`task_type`(100),`configurationsha1`), + KEY `identifier` (`storage`,`identifier`(180)) +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_file_processedfile` +-- + +LOCK TABLES `sys_file_processedfile` WRITE; +/*!40000 ALTER TABLE `sys_file_processedfile` DISABLE KEYS */; +INSERT INTO `sys_file_processedfile` VALUES (1,1676911371,1676911371,0,1,'',NULL,'','a:7:{s:5:\"width\";N;s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";N;s:9:\"maxHeight\";N;s:4:\"crop\";N;}','24f48d5b4de7d99b7144e6559156976855e74b5d','a6fb0cc7b50579d6255f16171147695a55b93c27','Image.CropScaleMask','1250535e51',244,68),(2,1676911371,1676911371,0,2,'',NULL,'','a:7:{s:5:\"width\";N;s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";N;s:9:\"maxHeight\";N;s:4:\"crop\";N;}','24f48d5b4de7d99b7144e6559156976855e74b5d','493f5cd69ede03cf7d436e92481422145674b907','Image.CropScaleMask','a4049a3f3f',244,68); +/*!40000 ALTER TABLE `sys_file_processedfile` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_file_reference` +-- + +DROP TABLE IF EXISTS `sys_file_reference`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `sys_file_reference` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pid` int(11) NOT NULL DEFAULT 0, + `tstamp` int(10) unsigned NOT NULL DEFAULT 0, + `crdate` int(10) unsigned NOT NULL DEFAULT 0, + `cruser_id` int(10) unsigned NOT NULL DEFAULT 0, + `deleted` smallint(5) unsigned NOT NULL DEFAULT 0, + `hidden` smallint(5) unsigned NOT NULL DEFAULT 0, + `sys_language_uid` int(11) NOT NULL DEFAULT 0, + `l10n_parent` int(10) unsigned NOT NULL DEFAULT 0, + `l10n_state` text DEFAULT NULL, + `l10n_diffsource` mediumblob DEFAULT NULL, + `t3ver_oid` int(10) unsigned NOT NULL DEFAULT 0, + `t3ver_wsid` int(10) unsigned NOT NULL DEFAULT 0, + `t3ver_state` smallint(6) NOT NULL DEFAULT 0, + `t3ver_stage` int(11) NOT NULL DEFAULT 0, + `uid_local` int(11) NOT NULL DEFAULT 0, + `uid_foreign` int(11) NOT NULL DEFAULT 0, + `tablenames` varchar(64) NOT NULL DEFAULT '', + `fieldname` varchar(64) NOT NULL DEFAULT '', + `sorting_foreign` int(11) NOT NULL DEFAULT 0, + `table_local` varchar(64) NOT NULL DEFAULT '', + `title` tinytext DEFAULT NULL, + `description` text DEFAULT NULL, + `alternative` text DEFAULT NULL, + `link` varchar(1024) NOT NULL DEFAULT '', + `crop` varchar(4000) NOT NULL DEFAULT '', + `autoplay` smallint(6) NOT NULL DEFAULT 0, + `showinpreview` smallint(6) NOT NULL DEFAULT 0, + PRIMARY KEY (`uid`), + KEY `tablenames_fieldname` (`tablenames`(32),`fieldname`(12)), + KEY `deleted` (`deleted`), + KEY `uid_local` (`uid_local`), + KEY `uid_foreign` (`uid_foreign`), + KEY `combined_1` (`l10n_parent`,`t3ver_oid`,`t3ver_wsid`,`t3ver_state`,`deleted`), + KEY `parent` (`pid`,`deleted`,`hidden`), + KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_file_reference` +-- + +LOCK TABLES `sys_file_reference` WRITE; +/*!40000 ALTER TABLE `sys_file_reference` DISABLE KEYS */; +/*!40000 ALTER TABLE `sys_file_reference` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_file_storage` +-- + +DROP TABLE IF EXISTS `sys_file_storage`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `sys_file_storage` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pid` int(10) unsigned NOT NULL DEFAULT 0, + `tstamp` int(10) unsigned NOT NULL DEFAULT 0, + `crdate` int(10) unsigned NOT NULL DEFAULT 0, + `cruser_id` int(10) unsigned NOT NULL DEFAULT 0, + `deleted` smallint(5) unsigned NOT NULL DEFAULT 0, + `description` text DEFAULT NULL, + `name` varchar(255) NOT NULL DEFAULT '', + `driver` tinytext DEFAULT NULL, + `configuration` text DEFAULT NULL, + `is_default` smallint(6) NOT NULL DEFAULT 0, + `is_browsable` smallint(6) NOT NULL DEFAULT 0, + `is_public` smallint(6) NOT NULL DEFAULT 0, + `is_writable` smallint(6) NOT NULL DEFAULT 0, + `is_online` smallint(6) NOT NULL DEFAULT 1, + `auto_extract_metadata` smallint(6) NOT NULL DEFAULT 1, + `processingfolder` tinytext DEFAULT NULL, + PRIMARY KEY (`uid`), + KEY `parent` (`pid`,`deleted`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_file_storage` +-- + +LOCK TABLES `sys_file_storage` WRITE; +/*!40000 ALTER TABLE `sys_file_storage` DISABLE KEYS */; +INSERT INTO `sys_file_storage` VALUES (1,0,1676910451,1676910451,0,0,'This is the local fileadmin/ directory. This storage mount has been created automatically by TYPO3.','fileadmin','Local','\n\n \n \n \n \n fileadmin/\n \n \n relative\n \n \n 1\n \n \n \n \n',1,1,1,1,1,1,NULL); +/*!40000 ALTER TABLE `sys_file_storage` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_filemounts` +-- + +DROP TABLE IF EXISTS `sys_filemounts`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `sys_filemounts` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pid` int(10) unsigned NOT NULL DEFAULT 0, + `tstamp` int(10) unsigned NOT NULL DEFAULT 0, + `deleted` smallint(5) unsigned NOT NULL DEFAULT 0, + `hidden` smallint(5) unsigned NOT NULL DEFAULT 0, + `sorting` int(11) NOT NULL DEFAULT 0, + `description` text DEFAULT NULL, + `title` varchar(255) NOT NULL DEFAULT '', + `path` varchar(255) NOT NULL DEFAULT '', + `base` int(10) unsigned NOT NULL DEFAULT 0, + `read_only` smallint(5) unsigned NOT NULL DEFAULT 0, + PRIMARY KEY (`uid`), + KEY `parent` (`pid`,`deleted`,`hidden`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_filemounts` +-- + +LOCK TABLES `sys_filemounts` WRITE; +/*!40000 ALTER TABLE `sys_filemounts` DISABLE KEYS */; +/*!40000 ALTER TABLE `sys_filemounts` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_history` +-- + +DROP TABLE IF EXISTS `sys_history`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `sys_history` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `tstamp` int(10) unsigned NOT NULL DEFAULT 0, + `actiontype` smallint(6) NOT NULL DEFAULT 0, + `usertype` varchar(2) NOT NULL DEFAULT 'BE', + `userid` int(10) unsigned DEFAULT NULL, + `originaluserid` int(10) unsigned DEFAULT NULL, + `recuid` int(11) NOT NULL DEFAULT 0, + `tablename` varchar(255) NOT NULL DEFAULT '', + `history_data` mediumtext DEFAULT NULL, + `workspace` int(11) DEFAULT 0, + `correlation_id` varchar(255) NOT NULL DEFAULT '', + PRIMARY KEY (`uid`), + KEY `recordident_1` (`tablename`(100),`recuid`), + KEY `recordident_2` (`tablename`(100),`tstamp`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_history` +-- + +LOCK TABLES `sys_history` WRITE; +/*!40000 ALTER TABLE `sys_history` DISABLE KEYS */; +/*!40000 ALTER TABLE `sys_history` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_language` +-- + +DROP TABLE IF EXISTS `sys_language`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `sys_language` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pid` int(10) unsigned NOT NULL DEFAULT 0, + `tstamp` int(10) unsigned NOT NULL DEFAULT 0, + `hidden` smallint(5) unsigned NOT NULL DEFAULT 0, + `sorting` int(11) NOT NULL DEFAULT 0, + `title` varchar(80) NOT NULL DEFAULT '', + `flag` varchar(20) NOT NULL DEFAULT '', + `language_isocode` varchar(2) NOT NULL DEFAULT '', + `nav_title` varchar(255) NOT NULL DEFAULT '', + `locale` varchar(20) NOT NULL DEFAULT '', + `hreflang` varchar(20) NOT NULL DEFAULT '', + `direction` varchar(3) NOT NULL DEFAULT '', + PRIMARY KEY (`uid`), + KEY `parent` (`pid`,`hidden`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_language` +-- + +LOCK TABLES `sys_language` WRITE; +/*!40000 ALTER TABLE `sys_language` DISABLE KEYS */; +/*!40000 ALTER TABLE `sys_language` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_lockedrecords` +-- + +DROP TABLE IF EXISTS `sys_lockedrecords`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `sys_lockedrecords` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `userid` int(10) unsigned NOT NULL DEFAULT 0, + `tstamp` int(10) unsigned NOT NULL DEFAULT 0, + `record_table` varchar(255) NOT NULL DEFAULT '', + `record_uid` int(11) NOT NULL DEFAULT 0, + `record_pid` int(11) NOT NULL DEFAULT 0, + `username` varchar(50) NOT NULL DEFAULT '', + `feuserid` int(10) unsigned NOT NULL DEFAULT 0, + PRIMARY KEY (`uid`), + KEY `event` (`userid`,`tstamp`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_lockedrecords` +-- + +LOCK TABLES `sys_lockedrecords` WRITE; +/*!40000 ALTER TABLE `sys_lockedrecords` DISABLE KEYS */; +/*!40000 ALTER TABLE `sys_lockedrecords` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_log` +-- + +DROP TABLE IF EXISTS `sys_log`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `sys_log` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pid` int(10) unsigned NOT NULL DEFAULT 0, + `tstamp` int(10) unsigned NOT NULL DEFAULT 0, + `userid` int(10) unsigned NOT NULL DEFAULT 0, + `action` smallint(5) unsigned NOT NULL DEFAULT 0, + `recuid` int(10) unsigned NOT NULL DEFAULT 0, + `tablename` varchar(255) NOT NULL DEFAULT '', + `recpid` int(11) NOT NULL DEFAULT 0, + `error` smallint(5) unsigned NOT NULL DEFAULT 0, + `details` text DEFAULT NULL, + `type` smallint(5) unsigned NOT NULL DEFAULT 0, + `channel` varchar(20) NOT NULL DEFAULT 'default', + `details_nr` smallint(6) NOT NULL DEFAULT 0, + `IP` varchar(39) NOT NULL DEFAULT '', + `log_data` text DEFAULT NULL, + `event_pid` int(11) NOT NULL DEFAULT -1, + `workspace` int(11) NOT NULL DEFAULT 0, + `NEWid` varchar(30) NOT NULL DEFAULT '', + `request_id` varchar(13) NOT NULL DEFAULT '', + `time_micro` double NOT NULL DEFAULT 0, + `component` varchar(255) NOT NULL DEFAULT '', + `level` varchar(10) NOT NULL DEFAULT 'info', + `message` text DEFAULT NULL, + `data` text DEFAULT NULL, + PRIMARY KEY (`uid`), + KEY `event` (`userid`,`event_pid`), + KEY `recuidIdx` (`recuid`), + KEY `user_auth` (`type`,`action`,`tstamp`), + KEY `request` (`request_id`), + KEY `combined_1` (`tstamp`,`type`,`userid`), + KEY `errorcount` (`tstamp`,`error`), + KEY `parent` (`pid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_log` +-- + +LOCK TABLES `sys_log` WRITE; +/*!40000 ALTER TABLE `sys_log` DISABLE KEYS */; +/*!40000 ALTER TABLE `sys_log` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_news` +-- + +DROP TABLE IF EXISTS `sys_news`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `sys_news` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pid` int(10) unsigned NOT NULL DEFAULT 0, + `tstamp` int(10) unsigned NOT NULL DEFAULT 0, + `crdate` int(10) unsigned NOT NULL DEFAULT 0, + `cruser_id` int(10) unsigned NOT NULL DEFAULT 0, + `deleted` smallint(5) unsigned NOT NULL DEFAULT 0, + `hidden` smallint(5) unsigned NOT NULL DEFAULT 0, + `starttime` int(10) unsigned NOT NULL DEFAULT 0, + `endtime` int(10) unsigned NOT NULL DEFAULT 0, + `title` varchar(255) NOT NULL DEFAULT '', + `content` mediumtext DEFAULT NULL, + PRIMARY KEY (`uid`), + KEY `parent` (`pid`,`deleted`,`hidden`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_news` +-- + +LOCK TABLES `sys_news` WRITE; +/*!40000 ALTER TABLE `sys_news` DISABLE KEYS */; +/*!40000 ALTER TABLE `sys_news` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_note` +-- + +DROP TABLE IF EXISTS `sys_note`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `sys_note` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pid` int(10) unsigned NOT NULL DEFAULT 0, + `tstamp` int(10) unsigned NOT NULL DEFAULT 0, + `crdate` int(10) unsigned NOT NULL DEFAULT 0, + `cruser` int(10) unsigned NOT NULL DEFAULT 0, + `deleted` smallint(5) unsigned NOT NULL DEFAULT 0, + `sorting` int(11) NOT NULL DEFAULT 0, + `subject` varchar(255) NOT NULL DEFAULT '', + `message` text DEFAULT NULL, + `personal` smallint(5) unsigned NOT NULL DEFAULT 0, + `category` smallint(5) unsigned NOT NULL DEFAULT 0, + `position` int(11) NOT NULL DEFAULT 0, + PRIMARY KEY (`uid`), + KEY `parent` (`pid`,`deleted`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_note` +-- + +LOCK TABLES `sys_note` WRITE; +/*!40000 ALTER TABLE `sys_note` DISABLE KEYS */; +/*!40000 ALTER TABLE `sys_note` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_redirect` +-- + +DROP TABLE IF EXISTS `sys_redirect`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `sys_redirect` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pid` int(10) unsigned NOT NULL DEFAULT 0, + `updatedon` int(10) unsigned NOT NULL DEFAULT 0, + `createdon` int(10) unsigned NOT NULL DEFAULT 0, + `createdby` int(10) unsigned NOT NULL DEFAULT 0, + `deleted` smallint(5) unsigned NOT NULL DEFAULT 0, + `disabled` smallint(5) unsigned NOT NULL DEFAULT 0, + `starttime` int(10) unsigned NOT NULL DEFAULT 0, + `endtime` int(10) unsigned NOT NULL DEFAULT 0, + `source_host` varchar(255) NOT NULL DEFAULT '', + `source_path` varchar(2048) NOT NULL DEFAULT '', + `is_regexp` smallint(5) unsigned NOT NULL DEFAULT 0, + `protected` smallint(5) unsigned NOT NULL DEFAULT 0, + `force_https` smallint(5) unsigned NOT NULL DEFAULT 0, + `respect_query_parameters` smallint(5) unsigned NOT NULL DEFAULT 0, + `keep_query_parameters` smallint(5) unsigned NOT NULL DEFAULT 0, + `target` varchar(2048) NOT NULL DEFAULT '', + `target_statuscode` int(11) NOT NULL DEFAULT 307, + `hitcount` int(11) NOT NULL DEFAULT 0, + `lasthiton` int(11) NOT NULL DEFAULT 0, + `disable_hitcount` smallint(5) unsigned NOT NULL DEFAULT 0, + PRIMARY KEY (`uid`), + KEY `index_source` (`source_host`(80),`source_path`(80)), + KEY `parent` (`pid`,`deleted`,`disabled`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_redirect` +-- + +LOCK TABLES `sys_redirect` WRITE; +/*!40000 ALTER TABLE `sys_redirect` DISABLE KEYS */; +/*!40000 ALTER TABLE `sys_redirect` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_refindex` +-- + +DROP TABLE IF EXISTS `sys_refindex`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `sys_refindex` ( + `hash` varchar(32) NOT NULL DEFAULT '', + `tablename` varchar(255) NOT NULL DEFAULT '', + `recuid` int(11) NOT NULL DEFAULT 0, + `field` varchar(64) NOT NULL DEFAULT '', + `flexpointer` varchar(255) NOT NULL DEFAULT '', + `softref_key` varchar(30) NOT NULL DEFAULT '', + `softref_id` varchar(40) NOT NULL DEFAULT '', + `sorting` int(11) NOT NULL DEFAULT 0, + `workspace` int(11) NOT NULL DEFAULT 0, + `ref_table` varchar(255) NOT NULL DEFAULT '', + `ref_uid` int(11) NOT NULL DEFAULT 0, + `ref_string` varchar(1024) NOT NULL DEFAULT '', + PRIMARY KEY (`hash`), + KEY `lookup_rec` (`tablename`(100),`recuid`), + KEY `lookup_uid` (`ref_table`(100),`ref_uid`), + KEY `lookup_string` (`ref_string`(191)) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_refindex` +-- + +LOCK TABLES `sys_refindex` WRITE; +/*!40000 ALTER TABLE `sys_refindex` DISABLE KEYS */; +/*!40000 ALTER TABLE `sys_refindex` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_registry` +-- + +DROP TABLE IF EXISTS `sys_registry`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `sys_registry` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `entry_namespace` varchar(128) NOT NULL DEFAULT '', + `entry_key` varchar(128) NOT NULL DEFAULT '', + `entry_value` mediumblob DEFAULT NULL, + PRIMARY KEY (`uid`), + UNIQUE KEY `entry_identifier` (`entry_namespace`,`entry_key`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_registry` +-- + +LOCK TABLES `sys_registry` WRITE; +/*!40000 ALTER TABLE `sys_registry` DISABLE KEYS */; +INSERT INTO `sys_registry` VALUES (1,'core','formProtectionSessionToken:1','s:64:\"aaa8ecbdff951f7b8c9d68b3417964983343c8217311f720ca40eda8904fb3b8\";'); +/*!40000 ALTER TABLE `sys_registry` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_template` +-- + +DROP TABLE IF EXISTS `sys_template`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `sys_template` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pid` int(11) NOT NULL DEFAULT 0, + `tstamp` int(10) unsigned NOT NULL DEFAULT 0, + `crdate` int(10) unsigned NOT NULL DEFAULT 0, + `cruser_id` int(10) unsigned NOT NULL DEFAULT 0, + `deleted` smallint(5) unsigned NOT NULL DEFAULT 0, + `hidden` smallint(5) unsigned NOT NULL DEFAULT 0, + `starttime` int(10) unsigned NOT NULL DEFAULT 0, + `endtime` int(10) unsigned NOT NULL DEFAULT 0, + `sorting` int(11) NOT NULL DEFAULT 0, + `description` text DEFAULT NULL, + `t3_origuid` int(10) unsigned NOT NULL DEFAULT 0, + `t3ver_oid` int(10) unsigned NOT NULL DEFAULT 0, + `t3ver_wsid` int(10) unsigned NOT NULL DEFAULT 0, + `t3ver_state` smallint(6) NOT NULL DEFAULT 0, + `t3ver_stage` int(11) NOT NULL DEFAULT 0, + `title` varchar(255) NOT NULL DEFAULT '', + `root` smallint(5) unsigned NOT NULL DEFAULT 0, + `clear` smallint(5) unsigned NOT NULL DEFAULT 0, + `include_static_file` text DEFAULT NULL, + `constants` text DEFAULT NULL, + `config` text DEFAULT NULL, + `basedOn` tinytext DEFAULT NULL, + `includeStaticAfterBasedOn` smallint(5) unsigned NOT NULL DEFAULT 0, + `static_file_mode` smallint(5) unsigned NOT NULL DEFAULT 0, + PRIMARY KEY (`uid`), + KEY `roottemplate` (`deleted`,`hidden`,`root`), + KEY `parent` (`pid`,`deleted`,`hidden`), + KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_template` +-- + +LOCK TABLES `sys_template` WRITE; +/*!40000 ALTER TABLE `sys_template` DISABLE KEYS */; +INSERT INTO `sys_template` VALUES (1,1,1676911367,1676911335,1,0,0,0,0,256,NULL,0,0,0,0,0,'example.com',1,3,'EXT:bootstrap_package/Configuration/TypoScript',NULL,'','',0,0); +/*!40000 ALTER TABLE `sys_template` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tt_content` +-- + +DROP TABLE IF EXISTS `tt_content`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tt_content` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `rowDescription` text DEFAULT NULL, + `pid` int(11) NOT NULL DEFAULT 0, + `tstamp` int(10) unsigned NOT NULL DEFAULT 0, + `crdate` int(10) unsigned NOT NULL DEFAULT 0, + `cruser_id` int(10) unsigned NOT NULL DEFAULT 0, + `deleted` smallint(5) unsigned NOT NULL DEFAULT 0, + `hidden` smallint(5) unsigned NOT NULL DEFAULT 0, + `starttime` int(10) unsigned NOT NULL DEFAULT 0, + `endtime` int(10) unsigned NOT NULL DEFAULT 0, + `fe_group` varchar(255) NOT NULL DEFAULT '0', + `sorting` int(11) NOT NULL DEFAULT 0, + `editlock` smallint(5) unsigned NOT NULL DEFAULT 0, + `sys_language_uid` int(11) NOT NULL DEFAULT 0, + `l18n_parent` int(10) unsigned NOT NULL DEFAULT 0, + `l10n_source` int(10) unsigned NOT NULL DEFAULT 0, + `l10n_state` text DEFAULT NULL, + `t3_origuid` int(10) unsigned NOT NULL DEFAULT 0, + `l18n_diffsource` mediumblob DEFAULT NULL, + `t3ver_oid` int(10) unsigned NOT NULL DEFAULT 0, + `t3ver_wsid` int(10) unsigned NOT NULL DEFAULT 0, + `t3ver_state` smallint(6) NOT NULL DEFAULT 0, + `t3ver_stage` int(11) NOT NULL DEFAULT 0, + `CType` varchar(255) NOT NULL DEFAULT '', + `header` varchar(255) NOT NULL DEFAULT '', + `header_position` varchar(255) NOT NULL DEFAULT '', + `bodytext` mediumtext DEFAULT NULL, + `bullets_type` smallint(5) unsigned NOT NULL DEFAULT 0, + `uploads_description` smallint(5) unsigned NOT NULL DEFAULT 0, + `uploads_type` smallint(5) unsigned NOT NULL DEFAULT 0, + `assets` int(10) unsigned NOT NULL DEFAULT 0, + `image` int(10) unsigned NOT NULL DEFAULT 0, + `imagewidth` int(10) unsigned NOT NULL DEFAULT 0, + `imageorient` smallint(5) unsigned NOT NULL DEFAULT 0, + `imagecols` smallint(5) unsigned NOT NULL DEFAULT 0, + `imageborder` smallint(5) unsigned NOT NULL DEFAULT 0, + `media` int(10) unsigned NOT NULL DEFAULT 0, + `layout` int(10) unsigned NOT NULL DEFAULT 0, + `frame_class` varchar(60) NOT NULL DEFAULT 'default', + `cols` int(10) unsigned NOT NULL DEFAULT 0, + `space_before_class` varchar(60) NOT NULL DEFAULT '', + `space_after_class` varchar(60) NOT NULL DEFAULT '', + `records` text DEFAULT NULL, + `pages` text DEFAULT NULL, + `colPos` int(10) unsigned NOT NULL DEFAULT 0, + `subheader` varchar(255) NOT NULL DEFAULT '', + `header_link` varchar(1024) NOT NULL DEFAULT '', + `image_zoom` smallint(5) unsigned NOT NULL DEFAULT 0, + `header_layout` varchar(30) NOT NULL DEFAULT '0', + `list_type` varchar(255) NOT NULL DEFAULT '', + `sectionIndex` smallint(5) unsigned NOT NULL DEFAULT 0, + `linkToTop` smallint(5) unsigned NOT NULL DEFAULT 0, + `file_collections` text DEFAULT NULL, + `filelink_size` smallint(5) unsigned NOT NULL DEFAULT 0, + `filelink_sorting` varchar(64) NOT NULL DEFAULT '', + `filelink_sorting_direction` varchar(4) NOT NULL DEFAULT '', + `target` varchar(30) NOT NULL DEFAULT '', + `date` int(10) unsigned NOT NULL DEFAULT 0, + `recursive` smallint(5) unsigned NOT NULL DEFAULT 0, + `imageheight` int(10) unsigned NOT NULL DEFAULT 0, + `pi_flexform` mediumtext DEFAULT NULL, + `accessibility_title` varchar(30) NOT NULL DEFAULT '', + `accessibility_bypass` smallint(5) unsigned NOT NULL DEFAULT 0, + `accessibility_bypass_text` varchar(30) NOT NULL DEFAULT '', + `category_field` varchar(64) NOT NULL DEFAULT '', + `table_class` varchar(60) NOT NULL DEFAULT '', + `table_caption` varchar(255) DEFAULT NULL, + `table_delimiter` smallint(5) unsigned NOT NULL DEFAULT 0, + `table_enclosure` smallint(5) unsigned NOT NULL DEFAULT 0, + `table_header_position` smallint(5) unsigned NOT NULL DEFAULT 0, + `table_tfoot` smallint(5) unsigned NOT NULL DEFAULT 0, + `categories` int(10) unsigned NOT NULL DEFAULT 0, + `selected_categories` longtext DEFAULT NULL, + `tx_news_related_news` int(11) NOT NULL DEFAULT 0, + `teaser` text DEFAULT NULL, + `aspect_ratio` varchar(255) NOT NULL DEFAULT '1.3333333333333', + `items_per_page` int(10) unsigned DEFAULT 10, + `readmore_label` varchar(255) NOT NULL DEFAULT '', + `quote_source` varchar(255) NOT NULL DEFAULT '', + `quote_link` varchar(1024) NOT NULL DEFAULT '', + `panel_class` varchar(60) NOT NULL DEFAULT 'default', + `file_folder` text DEFAULT NULL, + `icon` varchar(255) NOT NULL DEFAULT '', + `icon_set` varchar(255) NOT NULL DEFAULT '', + `icon_file` int(10) unsigned DEFAULT 0, + `icon_position` varchar(255) NOT NULL DEFAULT '', + `icon_size` varchar(60) NOT NULL DEFAULT 'default', + `icon_type` varchar(60) NOT NULL DEFAULT 'default', + `icon_color` varchar(255) NOT NULL DEFAULT '', + `icon_background` varchar(255) NOT NULL DEFAULT '', + `external_media_source` varchar(1024) NOT NULL DEFAULT '', + `external_media_ratio` varchar(10) NOT NULL DEFAULT '', + `tx_bootstrappackage_card_group_item` int(10) unsigned DEFAULT 0, + `tx_bootstrappackage_carousel_item` int(10) unsigned DEFAULT 0, + `tx_bootstrappackage_accordion_item` int(10) unsigned DEFAULT 0, + `tx_bootstrappackage_icon_group_item` int(10) unsigned DEFAULT 0, + `tx_bootstrappackage_tab_item` int(10) unsigned DEFAULT 0, + `tx_bootstrappackage_timeline_item` int(10) unsigned DEFAULT 0, + `frame_layout` varchar(255) NOT NULL DEFAULT 'default', + `background_color_class` varchar(255) NOT NULL DEFAULT '', + `background_image` int(10) unsigned DEFAULT 0, + `background_image_options` mediumtext DEFAULT NULL, + PRIMARY KEY (`uid`), + KEY `parent` (`pid`,`sorting`), + KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`), + KEY `language` (`l18n_parent`,`sys_language_uid`), + KEY `translation_source` (`l10n_source`), + KEY `index_newscontent` (`tx_news_related_news`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tt_content` +-- + +LOCK TABLES `tt_content` WRITE; +/*!40000 ALTER TABLE `tt_content` DISABLE KEYS */; +/*!40000 ALTER TABLE `tt_content` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tx_bootstrappackage_accordion_item` +-- + +DROP TABLE IF EXISTS `tx_bootstrappackage_accordion_item`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tx_bootstrappackage_accordion_item` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pid` int(11) NOT NULL DEFAULT 0, + `tstamp` int(10) unsigned NOT NULL DEFAULT 0, + `crdate` int(10) unsigned NOT NULL DEFAULT 0, + `cruser_id` int(10) unsigned NOT NULL DEFAULT 0, + `deleted` smallint(5) unsigned NOT NULL DEFAULT 0, + `hidden` smallint(5) unsigned NOT NULL DEFAULT 0, + `starttime` int(10) unsigned NOT NULL DEFAULT 0, + `endtime` int(10) unsigned NOT NULL DEFAULT 0, + `sorting` int(11) NOT NULL DEFAULT 0, + `sys_language_uid` int(11) NOT NULL DEFAULT 0, + `l10n_parent` int(10) unsigned NOT NULL DEFAULT 0, + `l10n_diffsource` mediumblob DEFAULT NULL, + `t3ver_oid` int(10) unsigned NOT NULL DEFAULT 0, + `t3ver_wsid` int(10) unsigned NOT NULL DEFAULT 0, + `t3ver_state` smallint(6) NOT NULL DEFAULT 0, + `t3ver_stage` int(11) NOT NULL DEFAULT 0, + `t3_origuid` int(10) unsigned NOT NULL DEFAULT 0, + `l10n_state` text DEFAULT NULL, + `tt_content` int(10) unsigned DEFAULT 0, + `header` varchar(255) NOT NULL DEFAULT '', + `bodytext` text DEFAULT NULL, + `media` int(10) unsigned DEFAULT 0, + `mediaorient` varchar(60) NOT NULL DEFAULT 'left', + `imagecols` smallint(5) unsigned NOT NULL DEFAULT 1, + `image_zoom` smallint(5) unsigned NOT NULL DEFAULT 0, + `t3ver_id` int(10) unsigned NOT NULL DEFAULT 0, + `t3ver_label` varchar(255) NOT NULL DEFAULT '', + `t3ver_count` int(10) unsigned NOT NULL DEFAULT 0, + `t3ver_tstamp` int(10) unsigned NOT NULL DEFAULT 0, + `t3ver_move_id` int(10) unsigned NOT NULL DEFAULT 0, + PRIMARY KEY (`uid`), + KEY `parent` (`pid`), + KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`), + KEY `language` (`l10n_parent`,`sys_language_uid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tx_bootstrappackage_accordion_item` +-- + +LOCK TABLES `tx_bootstrappackage_accordion_item` WRITE; +/*!40000 ALTER TABLE `tx_bootstrappackage_accordion_item` DISABLE KEYS */; +/*!40000 ALTER TABLE `tx_bootstrappackage_accordion_item` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tx_bootstrappackage_card_group_item` +-- + +DROP TABLE IF EXISTS `tx_bootstrappackage_card_group_item`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tx_bootstrappackage_card_group_item` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pid` int(11) NOT NULL DEFAULT 0, + `tstamp` int(10) unsigned NOT NULL DEFAULT 0, + `crdate` int(10) unsigned NOT NULL DEFAULT 0, + `cruser_id` int(10) unsigned NOT NULL DEFAULT 0, + `deleted` smallint(5) unsigned NOT NULL DEFAULT 0, + `hidden` smallint(5) unsigned NOT NULL DEFAULT 0, + `starttime` int(10) unsigned NOT NULL DEFAULT 0, + `endtime` int(10) unsigned NOT NULL DEFAULT 0, + `sorting` int(11) NOT NULL DEFAULT 0, + `sys_language_uid` int(11) NOT NULL DEFAULT 0, + `l10n_parent` int(10) unsigned NOT NULL DEFAULT 0, + `l10n_diffsource` mediumblob DEFAULT NULL, + `t3ver_oid` int(10) unsigned NOT NULL DEFAULT 0, + `t3ver_wsid` int(10) unsigned NOT NULL DEFAULT 0, + `t3ver_state` smallint(6) NOT NULL DEFAULT 0, + `t3ver_stage` int(11) NOT NULL DEFAULT 0, + `t3_origuid` int(10) unsigned NOT NULL DEFAULT 0, + `l10n_state` text DEFAULT NULL, + `tt_content` int(10) unsigned DEFAULT 0, + `header` varchar(255) NOT NULL DEFAULT '', + `subheader` varchar(255) NOT NULL DEFAULT '', + `image` int(11) NOT NULL DEFAULT 0, + `bodytext` text DEFAULT NULL, + `link` varchar(1024) NOT NULL DEFAULT '', + `link_title` varchar(255) NOT NULL DEFAULT '', + `link_icon_set` varchar(255) NOT NULL DEFAULT '', + `link_icon_identifier` varchar(255) NOT NULL DEFAULT '', + `link_icon` int(10) unsigned DEFAULT 0, + `link_class` varchar(255) NOT NULL DEFAULT '', + `t3ver_id` int(10) unsigned NOT NULL DEFAULT 0, + `t3ver_label` varchar(255) NOT NULL DEFAULT '', + `t3ver_count` int(10) unsigned NOT NULL DEFAULT 0, + `t3ver_tstamp` int(10) unsigned NOT NULL DEFAULT 0, + `t3ver_move_id` int(10) unsigned NOT NULL DEFAULT 0, + PRIMARY KEY (`uid`), + KEY `parent` (`pid`), + KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`), + KEY `language` (`l10n_parent`,`sys_language_uid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tx_bootstrappackage_card_group_item` +-- + +LOCK TABLES `tx_bootstrappackage_card_group_item` WRITE; +/*!40000 ALTER TABLE `tx_bootstrappackage_card_group_item` DISABLE KEYS */; +/*!40000 ALTER TABLE `tx_bootstrappackage_card_group_item` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tx_bootstrappackage_carousel_item` +-- + +DROP TABLE IF EXISTS `tx_bootstrappackage_carousel_item`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tx_bootstrappackage_carousel_item` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pid` int(11) NOT NULL DEFAULT 0, + `tstamp` int(10) unsigned NOT NULL DEFAULT 0, + `crdate` int(10) unsigned NOT NULL DEFAULT 0, + `cruser_id` int(10) unsigned NOT NULL DEFAULT 0, + `deleted` smallint(5) unsigned NOT NULL DEFAULT 0, + `hidden` smallint(5) unsigned NOT NULL DEFAULT 0, + `starttime` int(10) unsigned NOT NULL DEFAULT 0, + `endtime` int(10) unsigned NOT NULL DEFAULT 0, + `sorting` int(11) NOT NULL DEFAULT 0, + `sys_language_uid` int(11) NOT NULL DEFAULT 0, + `l10n_parent` int(10) unsigned NOT NULL DEFAULT 0, + `l10n_diffsource` mediumblob DEFAULT NULL, + `t3ver_oid` int(10) unsigned NOT NULL DEFAULT 0, + `t3ver_wsid` int(10) unsigned NOT NULL DEFAULT 0, + `t3ver_state` smallint(6) NOT NULL DEFAULT 0, + `t3ver_stage` int(11) NOT NULL DEFAULT 0, + `t3_origuid` int(10) unsigned NOT NULL DEFAULT 0, + `l10n_state` text DEFAULT NULL, + `tt_content` int(10) unsigned DEFAULT 0, + `item_type` varchar(255) NOT NULL DEFAULT '', + `layout` varchar(255) NOT NULL DEFAULT '', + `header` varchar(255) NOT NULL DEFAULT '', + `header_layout` smallint(5) unsigned NOT NULL DEFAULT 1, + `header_position` varchar(255) NOT NULL DEFAULT 'center', + `header_class` varchar(255) NOT NULL DEFAULT '', + `subheader` varchar(255) NOT NULL DEFAULT '', + `subheader_layout` smallint(5) unsigned NOT NULL DEFAULT 2, + `subheader_class` varchar(255) NOT NULL DEFAULT '', + `nav_title` varchar(255) NOT NULL DEFAULT '', + `button_text` varchar(255) NOT NULL DEFAULT '', + `bodytext` text DEFAULT NULL, + `image` int(10) unsigned DEFAULT 0, + `link` varchar(1024) NOT NULL DEFAULT '', + `text_color` varchar(255) NOT NULL DEFAULT '', + `background_color` varchar(255) NOT NULL DEFAULT '', + `background_image` int(10) unsigned DEFAULT 0, + `background_image_options` mediumtext DEFAULT NULL, + `t3ver_id` int(10) unsigned NOT NULL DEFAULT 0, + `t3ver_label` varchar(255) NOT NULL DEFAULT '', + `t3ver_count` int(10) unsigned NOT NULL DEFAULT 0, + `t3ver_tstamp` int(10) unsigned NOT NULL DEFAULT 0, + `t3ver_move_id` int(10) unsigned NOT NULL DEFAULT 0, + PRIMARY KEY (`uid`), + KEY `parent` (`pid`), + KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`), + KEY `language` (`l10n_parent`,`sys_language_uid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tx_bootstrappackage_carousel_item` +-- + +LOCK TABLES `tx_bootstrappackage_carousel_item` WRITE; +/*!40000 ALTER TABLE `tx_bootstrappackage_carousel_item` DISABLE KEYS */; +/*!40000 ALTER TABLE `tx_bootstrappackage_carousel_item` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tx_bootstrappackage_icon_group_item` +-- + +DROP TABLE IF EXISTS `tx_bootstrappackage_icon_group_item`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tx_bootstrappackage_icon_group_item` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pid` int(11) NOT NULL DEFAULT 0, + `tstamp` int(10) unsigned NOT NULL DEFAULT 0, + `crdate` int(10) unsigned NOT NULL DEFAULT 0, + `cruser_id` int(10) unsigned NOT NULL DEFAULT 0, + `deleted` smallint(5) unsigned NOT NULL DEFAULT 0, + `hidden` smallint(5) unsigned NOT NULL DEFAULT 0, + `starttime` int(10) unsigned NOT NULL DEFAULT 0, + `endtime` int(10) unsigned NOT NULL DEFAULT 0, + `sorting` int(11) NOT NULL DEFAULT 0, + `sys_language_uid` int(11) NOT NULL DEFAULT 0, + `l10n_parent` int(10) unsigned NOT NULL DEFAULT 0, + `l10n_diffsource` mediumblob DEFAULT NULL, + `t3ver_oid` int(10) unsigned NOT NULL DEFAULT 0, + `t3ver_wsid` int(10) unsigned NOT NULL DEFAULT 0, + `t3ver_state` smallint(6) NOT NULL DEFAULT 0, + `t3ver_stage` int(11) NOT NULL DEFAULT 0, + `t3_origuid` int(10) unsigned NOT NULL DEFAULT 0, + `l10n_state` text DEFAULT NULL, + `tt_content` int(10) unsigned DEFAULT 0, + `header` varchar(255) NOT NULL DEFAULT '', + `subheader` varchar(255) NOT NULL DEFAULT '', + `bodytext` text DEFAULT NULL, + `link` varchar(1024) NOT NULL DEFAULT '', + `icon_set` varchar(255) NOT NULL DEFAULT '', + `icon_identifier` varchar(255) NOT NULL DEFAULT '', + `icon_file` int(10) unsigned DEFAULT 0, + `t3ver_id` int(10) unsigned NOT NULL DEFAULT 0, + `t3ver_label` varchar(255) NOT NULL DEFAULT '', + `t3ver_count` int(10) unsigned NOT NULL DEFAULT 0, + `t3ver_tstamp` int(10) unsigned NOT NULL DEFAULT 0, + `t3ver_move_id` int(10) unsigned NOT NULL DEFAULT 0, + PRIMARY KEY (`uid`), + KEY `parent` (`pid`), + KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`), + KEY `language` (`l10n_parent`,`sys_language_uid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tx_bootstrappackage_icon_group_item` +-- + +LOCK TABLES `tx_bootstrappackage_icon_group_item` WRITE; +/*!40000 ALTER TABLE `tx_bootstrappackage_icon_group_item` DISABLE KEYS */; +/*!40000 ALTER TABLE `tx_bootstrappackage_icon_group_item` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tx_bootstrappackage_tab_item` +-- + +DROP TABLE IF EXISTS `tx_bootstrappackage_tab_item`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tx_bootstrappackage_tab_item` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pid` int(11) NOT NULL DEFAULT 0, + `tstamp` int(10) unsigned NOT NULL DEFAULT 0, + `crdate` int(10) unsigned NOT NULL DEFAULT 0, + `cruser_id` int(10) unsigned NOT NULL DEFAULT 0, + `deleted` smallint(5) unsigned NOT NULL DEFAULT 0, + `hidden` smallint(5) unsigned NOT NULL DEFAULT 0, + `starttime` int(10) unsigned NOT NULL DEFAULT 0, + `endtime` int(10) unsigned NOT NULL DEFAULT 0, + `sorting` int(11) NOT NULL DEFAULT 0, + `sys_language_uid` int(11) NOT NULL DEFAULT 0, + `l10n_parent` int(10) unsigned NOT NULL DEFAULT 0, + `l10n_diffsource` mediumblob DEFAULT NULL, + `t3ver_oid` int(10) unsigned NOT NULL DEFAULT 0, + `t3ver_wsid` int(10) unsigned NOT NULL DEFAULT 0, + `t3ver_state` smallint(6) NOT NULL DEFAULT 0, + `t3ver_stage` int(11) NOT NULL DEFAULT 0, + `t3_origuid` int(10) unsigned NOT NULL DEFAULT 0, + `l10n_state` text DEFAULT NULL, + `tt_content` int(10) unsigned DEFAULT 0, + `header` varchar(255) NOT NULL DEFAULT '', + `bodytext` text DEFAULT NULL, + `media` int(10) unsigned DEFAULT 0, + `mediaorient` varchar(60) NOT NULL DEFAULT 'left', + `imagecols` smallint(5) unsigned NOT NULL DEFAULT 1, + `image_zoom` smallint(5) unsigned NOT NULL DEFAULT 0, + `t3ver_id` int(10) unsigned NOT NULL DEFAULT 0, + `t3ver_label` varchar(255) NOT NULL DEFAULT '', + `t3ver_count` int(10) unsigned NOT NULL DEFAULT 0, + `t3ver_tstamp` int(10) unsigned NOT NULL DEFAULT 0, + `t3ver_move_id` int(10) unsigned NOT NULL DEFAULT 0, + PRIMARY KEY (`uid`), + KEY `parent` (`pid`), + KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`), + KEY `language` (`l10n_parent`,`sys_language_uid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tx_bootstrappackage_tab_item` +-- + +LOCK TABLES `tx_bootstrappackage_tab_item` WRITE; +/*!40000 ALTER TABLE `tx_bootstrappackage_tab_item` DISABLE KEYS */; +/*!40000 ALTER TABLE `tx_bootstrappackage_tab_item` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tx_bootstrappackage_timeline_item` +-- + +DROP TABLE IF EXISTS `tx_bootstrappackage_timeline_item`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tx_bootstrappackage_timeline_item` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pid` int(11) NOT NULL DEFAULT 0, + `tstamp` int(10) unsigned NOT NULL DEFAULT 0, + `crdate` int(10) unsigned NOT NULL DEFAULT 0, + `cruser_id` int(10) unsigned NOT NULL DEFAULT 0, + `deleted` smallint(5) unsigned NOT NULL DEFAULT 0, + `hidden` smallint(5) unsigned NOT NULL DEFAULT 0, + `starttime` int(10) unsigned NOT NULL DEFAULT 0, + `endtime` int(10) unsigned NOT NULL DEFAULT 0, + `sys_language_uid` int(11) NOT NULL DEFAULT 0, + `l10n_parent` int(10) unsigned NOT NULL DEFAULT 0, + `l10n_diffsource` mediumblob DEFAULT NULL, + `t3ver_oid` int(10) unsigned NOT NULL DEFAULT 0, + `t3ver_wsid` int(10) unsigned NOT NULL DEFAULT 0, + `t3ver_state` smallint(6) NOT NULL DEFAULT 0, + `t3ver_stage` int(11) NOT NULL DEFAULT 0, + `t3_origuid` int(10) unsigned NOT NULL DEFAULT 0, + `l10n_state` text DEFAULT NULL, + `tt_content` int(10) unsigned DEFAULT 0, + `date` datetime DEFAULT NULL, + `header` varchar(255) NOT NULL DEFAULT '', + `bodytext` text DEFAULT NULL, + `icon_set` varchar(255) NOT NULL DEFAULT '', + `icon_identifier` varchar(255) NOT NULL DEFAULT '', + `icon_file` int(10) unsigned DEFAULT 0, + `image` int(10) unsigned DEFAULT 0, + `sorting` int(11) NOT NULL DEFAULT 0, + `t3ver_id` int(10) unsigned NOT NULL DEFAULT 0, + `t3ver_label` varchar(255) NOT NULL DEFAULT '', + `t3ver_count` int(10) unsigned NOT NULL DEFAULT 0, + `t3ver_tstamp` int(10) unsigned NOT NULL DEFAULT 0, + `t3ver_move_id` int(10) unsigned NOT NULL DEFAULT 0, + PRIMARY KEY (`uid`), + KEY `parent` (`pid`), + KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`), + KEY `language` (`l10n_parent`,`sys_language_uid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tx_bootstrappackage_timeline_item` +-- + +LOCK TABLES `tx_bootstrappackage_timeline_item` WRITE; +/*!40000 ALTER TABLE `tx_bootstrappackage_timeline_item` DISABLE KEYS */; +/*!40000 ALTER TABLE `tx_bootstrappackage_timeline_item` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tx_extensionmanager_domain_model_extension` +-- + +DROP TABLE IF EXISTS `tx_extensionmanager_domain_model_extension`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tx_extensionmanager_domain_model_extension` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pid` int(10) unsigned NOT NULL DEFAULT 0, + `extension_key` varchar(60) NOT NULL DEFAULT '', + `repository` int(11) NOT NULL DEFAULT 1, + `remote` varchar(100) NOT NULL DEFAULT 'ter', + `version` varchar(15) NOT NULL DEFAULT '', + `alldownloadcounter` int(10) unsigned NOT NULL DEFAULT 0, + `downloadcounter` int(10) unsigned NOT NULL DEFAULT 0, + `title` varchar(150) NOT NULL DEFAULT '', + `description` mediumtext DEFAULT NULL, + `state` int(11) NOT NULL DEFAULT 0, + `review_state` int(11) NOT NULL DEFAULT 0, + `category` int(11) NOT NULL DEFAULT 0, + `last_updated` int(10) unsigned NOT NULL DEFAULT 0, + `serialized_dependencies` mediumtext DEFAULT NULL, + `author_name` varchar(255) NOT NULL DEFAULT '', + `author_email` varchar(255) NOT NULL DEFAULT '', + `ownerusername` varchar(50) NOT NULL DEFAULT '', + `md5hash` varchar(35) NOT NULL DEFAULT '', + `update_comment` mediumtext DEFAULT NULL, + `authorcompany` varchar(255) NOT NULL DEFAULT '', + `integer_version` int(11) NOT NULL DEFAULT 0, + `current_version` int(11) NOT NULL DEFAULT 0, + `lastreviewedversion` int(11) NOT NULL DEFAULT 0, + `documentation_link` varchar(2048) DEFAULT NULL, + `distribution_image` varchar(255) DEFAULT NULL, + `distribution_welcome_image` varchar(255) DEFAULT NULL, + PRIMARY KEY (`uid`), + UNIQUE KEY `versionextrepo` (`extension_key`,`version`,`remote`), + KEY `index_extrepo` (`extension_key`,`remote`), + KEY `index_versionrepo` (`integer_version`,`remote`,`extension_key`), + KEY `index_currentversions` (`current_version`,`review_state`), + KEY `parent` (`pid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tx_extensionmanager_domain_model_extension` +-- + +LOCK TABLES `tx_extensionmanager_domain_model_extension` WRITE; +/*!40000 ALTER TABLE `tx_extensionmanager_domain_model_extension` DISABLE KEYS */; +/*!40000 ALTER TABLE `tx_extensionmanager_domain_model_extension` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tx_kesearch_filteroptions` +-- + +DROP TABLE IF EXISTS `tx_kesearch_filteroptions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tx_kesearch_filteroptions` ( + `uid` int(11) NOT NULL AUTO_INCREMENT, + `pid` int(11) NOT NULL DEFAULT 0, + `tstamp` int(11) NOT NULL DEFAULT 0, + `crdate` int(11) NOT NULL DEFAULT 0, + `cruser_id` int(11) NOT NULL DEFAULT 0, + `sys_language_uid` int(11) NOT NULL DEFAULT 0, + `l10n_parent` int(11) NOT NULL DEFAULT 0, + `l10n_diffsource` mediumtext DEFAULT NULL, + `deleted` smallint(6) NOT NULL DEFAULT 0, + `hidden` smallint(6) NOT NULL DEFAULT 0, + `sorting` int(11) NOT NULL DEFAULT 0, + `l10n_state` text DEFAULT NULL, + `title` tinytext DEFAULT NULL, + `tag` tinytext DEFAULT NULL, + `slug` varchar(2048) DEFAULT NULL, + `automated_tagging` text DEFAULT NULL, + `automated_tagging_exclude` text DEFAULT NULL, + PRIMARY KEY (`uid`), + KEY `parent` (`pid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tx_kesearch_filteroptions` +-- + +LOCK TABLES `tx_kesearch_filteroptions` WRITE; +/*!40000 ALTER TABLE `tx_kesearch_filteroptions` DISABLE KEYS */; +/*!40000 ALTER TABLE `tx_kesearch_filteroptions` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tx_kesearch_filters` +-- + +DROP TABLE IF EXISTS `tx_kesearch_filters`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tx_kesearch_filters` ( + `uid` int(11) NOT NULL AUTO_INCREMENT, + `pid` int(11) NOT NULL DEFAULT 0, + `tstamp` int(11) NOT NULL DEFAULT 0, + `crdate` int(11) NOT NULL DEFAULT 0, + `cruser_id` int(11) NOT NULL DEFAULT 0, + `sys_language_uid` int(11) NOT NULL DEFAULT 0, + `l10n_parent` int(11) NOT NULL DEFAULT 0, + `l10n_diffsource` mediumtext DEFAULT NULL, + `deleted` smallint(6) NOT NULL DEFAULT 0, + `hidden` smallint(6) NOT NULL DEFAULT 0, + `l10n_state` text DEFAULT NULL, + `title` tinytext DEFAULT NULL, + `options` text DEFAULT NULL, + `rendertype` varchar(90) NOT NULL DEFAULT '', + `markAllCheckboxes` smallint(6) NOT NULL DEFAULT 0, + `target_pid` int(11) NOT NULL DEFAULT 0, + `amount` int(11) NOT NULL DEFAULT 0, + `shownumberofresults` smallint(6) NOT NULL DEFAULT 0, + `alphabeticalsorting` smallint(6) NOT NULL DEFAULT 0, + PRIMARY KEY (`uid`), + KEY `parent` (`pid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tx_kesearch_filters` +-- + +LOCK TABLES `tx_kesearch_filters` WRITE; +/*!40000 ALTER TABLE `tx_kesearch_filters` DISABLE KEYS */; +/*!40000 ALTER TABLE `tx_kesearch_filters` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tx_kesearch_index` +-- + +DROP TABLE IF EXISTS `tx_kesearch_index`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tx_kesearch_index` ( + `uid` int(11) NOT NULL AUTO_INCREMENT, + `pid` int(11) NOT NULL DEFAULT 0, + `tstamp` int(11) NOT NULL DEFAULT 0, + `crdate` int(11) NOT NULL DEFAULT 0, + `cruser_id` int(11) NOT NULL DEFAULT 0, + `starttime` int(11) NOT NULL DEFAULT 0, + `endtime` int(11) NOT NULL DEFAULT 0, + `fe_group` varchar(100) NOT NULL DEFAULT '0', + `targetpid` text DEFAULT NULL, + `content` mediumtext DEFAULT NULL, + `hidden_content` mediumtext DEFAULT NULL, + `params` tinytext DEFAULT NULL, + `type` tinytext DEFAULT NULL, + `tags` text DEFAULT NULL, + `abstract` text DEFAULT NULL, + `sortdate` int(11) NOT NULL DEFAULT 0, + `orig_uid` varchar(255) NOT NULL DEFAULT '0', + `orig_pid` int(11) NOT NULL DEFAULT 0, + `title` tinytext DEFAULT NULL, + `language` int(11) NOT NULL DEFAULT 0, + `directory` tinytext DEFAULT NULL, + `hash` varchar(32) NOT NULL DEFAULT '', + PRIMARY KEY (`uid`), + KEY `parent` (`pid`), + FULLTEXT KEY `tags` (`tags`), + FULLTEXT KEY `title` (`title`), + FULLTEXT KEY `titlecontent` (`title`,`content`), + FULLTEXT KEY `titlecontenthiddencontent` (`title`,`content`,`hidden_content`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tx_kesearch_index` +-- + +LOCK TABLES `tx_kesearch_index` WRITE; +/*!40000 ALTER TABLE `tx_kesearch_index` DISABLE KEYS */; +/*!40000 ALTER TABLE `tx_kesearch_index` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tx_kesearch_indexerconfig` +-- + +DROP TABLE IF EXISTS `tx_kesearch_indexerconfig`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tx_kesearch_indexerconfig` ( + `uid` int(11) NOT NULL AUTO_INCREMENT, + `pid` int(11) NOT NULL DEFAULT 0, + `tstamp` int(11) NOT NULL DEFAULT 0, + `crdate` int(11) NOT NULL DEFAULT 0, + `cruser_id` int(11) NOT NULL DEFAULT 0, + `deleted` smallint(6) NOT NULL DEFAULT 0, + `hidden` smallint(6) NOT NULL DEFAULT 0, + `title` tinytext DEFAULT NULL, + `storagepid` text DEFAULT NULL, + `targetpid` text DEFAULT NULL, + `startingpoints_recursive` text DEFAULT NULL, + `single_pages` text DEFAULT NULL, + `sysfolder` text DEFAULT NULL, + `index_content_with_restrictions` text DEFAULT NULL, + `type` varchar(90) NOT NULL DEFAULT '', + `index_news_category_mode` smallint(6) NOT NULL DEFAULT 0, + `index_news_category_selection` text DEFAULT NULL, + `index_extnews_category_selection` text DEFAULT NULL, + `index_news_archived` smallint(6) NOT NULL DEFAULT 0, + `index_news_useHRDatesSingle` smallint(6) NOT NULL DEFAULT 0, + `index_news_useHRDatesSingleWithoutDay` smallint(6) NOT NULL DEFAULT 0, + `index_news_files_mode` smallint(6) NOT NULL DEFAULT 0, + `index_use_page_tags` smallint(6) NOT NULL DEFAULT 0, + `index_use_page_tags_for_files` smallint(6) NOT NULL DEFAULT 0, + `index_page_doctypes` varchar(255) NOT NULL DEFAULT '', + `directories` text DEFAULT NULL, + `fileext` tinytext DEFAULT NULL, + `content_fields` text DEFAULT NULL, + `file_reference_fields` text DEFAULT NULL, + `filteroption` int(11) NOT NULL DEFAULT 0, + `fal_storage` int(11) NOT NULL DEFAULT 0, + `contenttypes` text DEFAULT NULL, + PRIMARY KEY (`uid`), + KEY `parent` (`pid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tx_kesearch_indexerconfig` +-- + +LOCK TABLES `tx_kesearch_indexerconfig` WRITE; +/*!40000 ALTER TABLE `tx_kesearch_indexerconfig` DISABLE KEYS */; +/*!40000 ALTER TABLE `tx_kesearch_indexerconfig` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tx_kesearch_stat_search` +-- + +DROP TABLE IF EXISTS `tx_kesearch_stat_search`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tx_kesearch_stat_search` ( + `uid` int(11) NOT NULL AUTO_INCREMENT, + `pid` int(11) NOT NULL DEFAULT 0, + `searchphrase` text DEFAULT NULL, + `tstamp` int(11) NOT NULL DEFAULT 0, + `hits` int(11) NOT NULL DEFAULT 0, + `tagsagainst` text DEFAULT NULL, + `language` int(11) NOT NULL DEFAULT 0, + PRIMARY KEY (`uid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tx_kesearch_stat_search` +-- + +LOCK TABLES `tx_kesearch_stat_search` WRITE; +/*!40000 ALTER TABLE `tx_kesearch_stat_search` DISABLE KEYS */; +/*!40000 ALTER TABLE `tx_kesearch_stat_search` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tx_kesearch_stat_word` +-- + +DROP TABLE IF EXISTS `tx_kesearch_stat_word`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tx_kesearch_stat_word` ( + `uid` int(11) NOT NULL AUTO_INCREMENT, + `pid` int(11) NOT NULL DEFAULT 0, + `word` text DEFAULT NULL, + `tstamp` int(11) NOT NULL DEFAULT 0, + `pageid` int(11) NOT NULL DEFAULT 0, + `resultsfound` int(11) NOT NULL DEFAULT 0, + `language` int(11) NOT NULL DEFAULT 0, + PRIMARY KEY (`uid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tx_kesearch_stat_word` +-- + +LOCK TABLES `tx_kesearch_stat_word` WRITE; +/*!40000 ALTER TABLE `tx_kesearch_stat_word` DISABLE KEYS */; +/*!40000 ALTER TABLE `tx_kesearch_stat_word` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tx_news_domain_model_link` +-- + +DROP TABLE IF EXISTS `tx_news_domain_model_link`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tx_news_domain_model_link` ( + `uid` int(11) NOT NULL AUTO_INCREMENT, + `pid` int(11) NOT NULL DEFAULT 0, + `tstamp` int(11) NOT NULL DEFAULT 0, + `crdate` int(11) NOT NULL DEFAULT 0, + `cruser_id` int(11) NOT NULL DEFAULT 0, + `sys_language_uid` int(11) NOT NULL DEFAULT 0, + `l10n_parent` int(11) NOT NULL DEFAULT 0, + `l10n_diffsource` mediumtext DEFAULT NULL, + `l10n_source` int(11) NOT NULL DEFAULT 0, + `t3ver_oid` int(11) NOT NULL DEFAULT 0, + `t3_origuid` int(11) NOT NULL DEFAULT 0, + `t3ver_wsid` int(11) NOT NULL DEFAULT 0, + `t3ver_state` smallint(6) NOT NULL DEFAULT 0, + `t3ver_stage` smallint(6) NOT NULL DEFAULT 0, + `sorting` int(11) NOT NULL DEFAULT 0, + `deleted` smallint(6) NOT NULL DEFAULT 0, + `hidden` smallint(6) NOT NULL DEFAULT 0, + `description` text DEFAULT NULL, + `l10n_state` text DEFAULT NULL, + `t3ver_id` int(11) NOT NULL DEFAULT 0, + `t3ver_label` varchar(30) NOT NULL DEFAULT '', + `t3ver_count` int(11) NOT NULL DEFAULT 0, + `t3ver_tstamp` int(11) NOT NULL DEFAULT 0, + `t3ver_move_id` int(11) NOT NULL DEFAULT 0, + `parent` int(11) NOT NULL DEFAULT 0, + `title` tinytext DEFAULT NULL, + `uri` text DEFAULT NULL, + PRIMARY KEY (`uid`), + KEY `parent` (`pid`), + KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tx_news_domain_model_link` +-- + +LOCK TABLES `tx_news_domain_model_link` WRITE; +/*!40000 ALTER TABLE `tx_news_domain_model_link` DISABLE KEYS */; +/*!40000 ALTER TABLE `tx_news_domain_model_link` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tx_news_domain_model_news` +-- + +DROP TABLE IF EXISTS `tx_news_domain_model_news`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tx_news_domain_model_news` ( + `uid` int(11) NOT NULL AUTO_INCREMENT, + `pid` int(11) NOT NULL DEFAULT 0, + `tstamp` int(11) NOT NULL DEFAULT 0, + `crdate` int(11) NOT NULL DEFAULT 0, + `cruser_id` int(11) NOT NULL DEFAULT 0, + `t3ver_oid` int(11) NOT NULL DEFAULT 0, + `t3ver_wsid` int(11) NOT NULL DEFAULT 0, + `t3ver_state` smallint(6) NOT NULL DEFAULT 0, + `t3ver_stage` smallint(6) NOT NULL DEFAULT 0, + `t3_origuid` int(11) NOT NULL DEFAULT 0, + `editlock` smallint(6) NOT NULL DEFAULT 0, + `sys_language_uid` int(11) NOT NULL DEFAULT 0, + `l10n_parent` int(11) NOT NULL DEFAULT 0, + `l10n_diffsource` mediumtext DEFAULT NULL, + `l10n_source` int(11) NOT NULL DEFAULT 0, + `deleted` smallint(6) NOT NULL DEFAULT 0, + `hidden` smallint(6) NOT NULL DEFAULT 0, + `starttime` int(11) NOT NULL DEFAULT 0, + `endtime` int(11) NOT NULL DEFAULT 0, + `fe_group` varchar(100) NOT NULL DEFAULT '', + `notes` text DEFAULT NULL, + `l10n_state` text DEFAULT NULL, + `t3ver_id` int(11) NOT NULL DEFAULT 0, + `t3ver_label` varchar(30) NOT NULL DEFAULT '', + `t3ver_count` int(11) NOT NULL DEFAULT 0, + `t3ver_tstamp` int(11) NOT NULL DEFAULT 0, + `t3ver_move_id` int(11) NOT NULL DEFAULT 0, + `sorting` int(11) NOT NULL DEFAULT 0, + `title` varchar(255) NOT NULL DEFAULT '', + `teaser` text DEFAULT NULL, + `bodytext` mediumtext DEFAULT NULL, + `datetime` bigint(20) NOT NULL DEFAULT 0, + `archive` bigint(20) NOT NULL DEFAULT 0, + `author` tinytext DEFAULT NULL, + `author_email` tinytext DEFAULT NULL, + `categories` int(11) NOT NULL DEFAULT 0, + `related` int(11) NOT NULL DEFAULT 0, + `related_from` int(11) NOT NULL DEFAULT 0, + `related_files` tinytext DEFAULT NULL, + `fal_related_files` int(10) unsigned DEFAULT 0, + `related_links` int(11) NOT NULL DEFAULT 0, + `type` varchar(100) NOT NULL DEFAULT '0', + `keywords` text DEFAULT NULL, + `description` text DEFAULT NULL, + `tags` int(11) NOT NULL DEFAULT 0, + `media` text DEFAULT NULL, + `fal_media` int(10) unsigned DEFAULT 0, + `internalurl` text DEFAULT NULL, + `externalurl` text DEFAULT NULL, + `istopnews` int(11) NOT NULL DEFAULT 0, + `content_elements` int(11) NOT NULL DEFAULT 0, + `path_segment` varchar(2048) DEFAULT NULL, + `alternative_title` tinytext DEFAULT NULL, + `sitemap_changefreq` varchar(10) NOT NULL DEFAULT '', + `sitemap_priority` decimal(2,1) NOT NULL DEFAULT 0.5, + `import_id` varchar(100) NOT NULL DEFAULT '', + `import_source` varchar(100) NOT NULL DEFAULT '', + PRIMARY KEY (`uid`), + KEY `parent` (`pid`), + KEY `sys_language_uid_l10n_parent` (`sys_language_uid`,`l10n_parent`), + KEY `path_segment` (`path_segment`(185),`uid`), + KEY `import` (`import_id`,`import_source`), + KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tx_news_domain_model_news` +-- + +LOCK TABLES `tx_news_domain_model_news` WRITE; +/*!40000 ALTER TABLE `tx_news_domain_model_news` DISABLE KEYS */; +/*!40000 ALTER TABLE `tx_news_domain_model_news` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tx_news_domain_model_news_related_mm` +-- + +DROP TABLE IF EXISTS `tx_news_domain_model_news_related_mm`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tx_news_domain_model_news_related_mm` ( + `uid_local` int(11) NOT NULL DEFAULT 0, + `uid_foreign` int(11) NOT NULL DEFAULT 0, + `sorting` int(11) NOT NULL DEFAULT 0, + `sorting_foreign` int(11) NOT NULL DEFAULT 0, + KEY `uid_local` (`uid_local`), + KEY `uid_foreign` (`uid_foreign`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tx_news_domain_model_news_related_mm` +-- + +LOCK TABLES `tx_news_domain_model_news_related_mm` WRITE; +/*!40000 ALTER TABLE `tx_news_domain_model_news_related_mm` DISABLE KEYS */; +/*!40000 ALTER TABLE `tx_news_domain_model_news_related_mm` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tx_news_domain_model_news_tag_mm` +-- + +DROP TABLE IF EXISTS `tx_news_domain_model_news_tag_mm`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tx_news_domain_model_news_tag_mm` ( + `uid_local` int(11) NOT NULL DEFAULT 0, + `uid_foreign` int(11) NOT NULL DEFAULT 0, + `sorting` int(11) NOT NULL DEFAULT 0, + `sorting_foreign` int(10) unsigned NOT NULL DEFAULT 0, + KEY `uid_local` (`uid_local`), + KEY `uid_foreign` (`uid_foreign`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tx_news_domain_model_news_tag_mm` +-- + +LOCK TABLES `tx_news_domain_model_news_tag_mm` WRITE; +/*!40000 ALTER TABLE `tx_news_domain_model_news_tag_mm` DISABLE KEYS */; +/*!40000 ALTER TABLE `tx_news_domain_model_news_tag_mm` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tx_news_domain_model_news_ttcontent_mm` +-- + +DROP TABLE IF EXISTS `tx_news_domain_model_news_ttcontent_mm`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tx_news_domain_model_news_ttcontent_mm` ( + `uid_local` int(11) NOT NULL DEFAULT 0, + `uid_foreign` int(11) NOT NULL DEFAULT 0, + `sorting` int(11) NOT NULL DEFAULT 0, + KEY `uid_local` (`uid_local`), + KEY `uid_foreign` (`uid_foreign`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tx_news_domain_model_news_ttcontent_mm` +-- + +LOCK TABLES `tx_news_domain_model_news_ttcontent_mm` WRITE; +/*!40000 ALTER TABLE `tx_news_domain_model_news_ttcontent_mm` DISABLE KEYS */; +/*!40000 ALTER TABLE `tx_news_domain_model_news_ttcontent_mm` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tx_news_domain_model_tag` +-- + +DROP TABLE IF EXISTS `tx_news_domain_model_tag`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tx_news_domain_model_tag` ( + `uid` int(11) NOT NULL AUTO_INCREMENT, + `pid` int(11) NOT NULL DEFAULT 0, + `tstamp` int(11) NOT NULL DEFAULT 0, + `crdate` int(11) NOT NULL DEFAULT 0, + `cruser_id` int(11) NOT NULL DEFAULT 0, + `deleted` smallint(6) NOT NULL DEFAULT 0, + `hidden` smallint(6) NOT NULL DEFAULT 0, + `sys_language_uid` int(11) NOT NULL DEFAULT 0, + `l10n_parent` int(11) NOT NULL DEFAULT 0, + `l10n_diffsource` mediumtext DEFAULT NULL, + `l10n_source` int(11) NOT NULL DEFAULT 0, + `t3ver_oid` int(11) NOT NULL DEFAULT 0, + `t3ver_wsid` int(11) NOT NULL DEFAULT 0, + `t3ver_state` smallint(6) NOT NULL DEFAULT 0, + `t3ver_stage` smallint(6) NOT NULL DEFAULT 0, + `notes` text DEFAULT NULL, + `l10n_state` text DEFAULT NULL, + `sorting` int(11) NOT NULL DEFAULT 0, + `t3ver_id` int(11) NOT NULL DEFAULT 0, + `t3_origuid` int(11) NOT NULL DEFAULT 0, + `t3ver_label` varchar(30) NOT NULL DEFAULT '', + `t3ver_count` int(11) NOT NULL DEFAULT 0, + `t3ver_tstamp` int(11) NOT NULL DEFAULT 0, + `t3ver_move_id` int(11) NOT NULL DEFAULT 0, + `title` tinytext DEFAULT NULL, + `slug` varchar(2048) DEFAULT NULL, + `seo_title` varchar(255) NOT NULL DEFAULT '', + `seo_description` text DEFAULT NULL, + `seo_headline` varchar(255) NOT NULL DEFAULT '', + `seo_text` text DEFAULT NULL, + PRIMARY KEY (`uid`), + KEY `parent` (`pid`), + KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tx_news_domain_model_tag` +-- + +LOCK TABLES `tx_news_domain_model_tag` WRITE; +/*!40000 ALTER TABLE `tx_news_domain_model_tag` DISABLE KEYS */; +/*!40000 ALTER TABLE `tx_news_domain_model_tag` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tx_scheduler_task` +-- + +DROP TABLE IF EXISTS `tx_scheduler_task`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tx_scheduler_task` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `crdate` int(10) unsigned NOT NULL DEFAULT 0, + `disable` smallint(5) unsigned NOT NULL DEFAULT 0, + `deleted` smallint(5) unsigned NOT NULL DEFAULT 0, + `description` text DEFAULT NULL, + `nextexecution` int(10) unsigned NOT NULL DEFAULT 0, + `lastexecution_time` int(10) unsigned NOT NULL DEFAULT 0, + `lastexecution_failure` text DEFAULT NULL, + `lastexecution_context` varchar(3) NOT NULL DEFAULT '', + `serialized_task_object` mediumblob DEFAULT NULL, + `serialized_executions` mediumblob DEFAULT NULL, + `task_group` int(10) unsigned NOT NULL DEFAULT 0, + PRIMARY KEY (`uid`), + KEY `index_nextexecution` (`nextexecution`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tx_scheduler_task` +-- + +LOCK TABLES `tx_scheduler_task` WRITE; +/*!40000 ALTER TABLE `tx_scheduler_task` DISABLE KEYS */; +/*!40000 ALTER TABLE `tx_scheduler_task` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tx_scheduler_task_group` +-- + +DROP TABLE IF EXISTS `tx_scheduler_task_group`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tx_scheduler_task_group` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pid` int(10) unsigned NOT NULL DEFAULT 0, + `tstamp` int(10) unsigned NOT NULL DEFAULT 0, + `crdate` int(10) unsigned NOT NULL DEFAULT 0, + `cruser_id` int(10) unsigned NOT NULL DEFAULT 0, + `deleted` smallint(5) unsigned NOT NULL DEFAULT 0, + `hidden` smallint(5) unsigned NOT NULL DEFAULT 0, + `sorting` int(11) NOT NULL DEFAULT 0, + `groupName` varchar(80) NOT NULL DEFAULT '', + `description` text DEFAULT NULL, + PRIMARY KEY (`uid`), + KEY `parent` (`pid`,`deleted`,`hidden`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tx_scheduler_task_group` +-- + +LOCK TABLES `tx_scheduler_task_group` WRITE; +/*!40000 ALTER TABLE `tx_scheduler_task_group` DISABLE KEYS */; +/*!40000 ALTER TABLE `tx_scheduler_task_group` ENABLE KEYS */; +UNLOCK TABLES; +/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; + +/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; +/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; +/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; +/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; +/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; + +-- Dump completed on 2023-02-20 17:45:47 diff --git a/packages/base-design/Classes/Domain/Finishers/GetResponseFinisher.php b/packages/base-design/Classes/Domain/Finishers/GetResponseFinisher.php new file mode 100644 index 0000000..4be1d8f --- /dev/null +++ b/packages/base-design/Classes/Domain/Finishers/GetResponseFinisher.php @@ -0,0 +1,121 @@ + '', + 'apiKey' => '', + 'campaignId' => '', + 'email' => '', + 'firstname' => '', + 'lastname' => '', + 'company' => '', + 'register' => false, + ]; + + /** + * Executes this finisher + * @see AbstractFinisher::execute() + * + * @throws FinisherException + */ + protected function executeInternal() + { + + $notifyEmail = $this->parseOption('notifyEmail'); + $apiKey = $this->parseOption('apiKey'); + $campaignId = $this->parseOption('campaignId'); + $email = $this->parseOption('email'); + $firstname = $this->parseOption('firstname'); + $lastname = $this->parseOption('lastname'); + $company = $this->parseOption('compandy'); + $register = $this->parseOption('register'); + + if ($register != "1") { + return; + } + + if (empty($notifyEmail)) { + throw new FinisherException('The option "notifyEmail" must be set for the GetResponseFinisher.', 1681331285); + } + if (empty($apiKey)) { + throw new FinisherException('The option "apiKey" must be set for the GetResponseFinisher.', 1681331286); + } + if (empty($campaignId)) { + throw new FinisherException('The option "campaignId" must be set for the GetResponseFinisher.', 1681331287); + } + if (empty($email)) { + throw new FinisherException('The option "email" must be set for the GetResponseFinisher.', 1681331288); + } + if (empty($firstname)) { + throw new FinisherException('The option "firstname" must be set for the GetResponseFinisher.', 1681331289); + } + if (empty($lastname)) { + throw new FinisherException('The option "lastname" must be set for the GetResponseFinisher.', 1681331290); + } + + $data = [ + "name" => $firstname.' '.$lastname, + "email" => $email, + "campaign" => [ + "campaignId" => $campaignId + ] + ]; + + + $request = GeneralUtility::makeInstance(RequestFactory::class); + $response = $request->request( + self::GET_RESPONSE_REQUEST_URL.'/contacts', + 'POST', + [ + 'headers' => [ + 'X-Auth-Token' => 'api-key '.$apiKey, + 'Content-Type' => 'application/json' + ], + 'body' => json_encode($data) + ] + ); + + if ($response->getStatusCode() == 200) { + $mail = GeneralUtility::makeInstance(MailMessage::class); + $mail + ->from(new Address('noreply@cloonar.dev')) + ->to( + new Address($notifyEmail) + ) + ->subject('Newsletter Anmeldung') + ->text('Vorname: '.$firstname.'\r\nNachname: '.$lastname.'\r\nFirma: '.$company.'\r\nEmail: '.$email) + ->send(); + } + } + + /** + * @param $string + * @return string + */ + protected static function escapeString($string) + { + $string = htmlspecialchars($string); + return (string)$string; + } +} diff --git a/packages/base-design/Configuration/Form/Setup.yaml b/packages/base-design/Configuration/Form/Setup.yaml new file mode 100644 index 0000000..3c36954 --- /dev/null +++ b/packages/base-design/Configuration/Form/Setup.yaml @@ -0,0 +1,7 @@ +TYPO3: + CMS: + Form: + persistenceManager: + allowSaveToExtensionPaths: true + allowedExtensionPaths: + 1727355960: EXT:base_design/Resources/Private/Forms/ diff --git a/packages/base-design/Configuration/TCA/Overrides/101_sys_template.php b/packages/base-design/Configuration/TCA/Overrides/101_sys_template.php new file mode 100644 index 0000000..f3bad94 --- /dev/null +++ b/packages/base-design/Configuration/TCA/Overrides/101_sys_template.php @@ -0,0 +1,20 @@ + 'LLL:EXT:bootstrap_package/Resources/Private/Language/Backend.xlf:option.default', + 'allowedAspectRatios' => [ + '16:9' => [ + 'title' => 'LLL:EXT:bootstrap_package/Resources/Private/Language/Backend.xlf:ratio.16_9', + 'value' => 16 / 9 + ], + '4:3' => [ + 'title' => 'LLL:EXT:bootstrap_package/Resources/Private/Language/Backend.xlf:ratio.4_3', + 'value' => 4 / 3 + ], + '1:1' => [ + 'title' => 'LLL:EXT:bootstrap_package/Resources/Private/Language/Backend.xlf:ratio.1_1', + 'value' => 1.0 + ], + 'NaN' => [ + 'title' => 'LLL:EXT:bootstrap_package/Resources/Private/Language/Backend.xlf:ratio.free', + 'value' => 0.0 + ], + ], + 'selectedRatio' => 'NaN', + 'cropArea' => [ + 'x' => 0.0, + 'y' => 0.0, + 'width' => 1.0, + 'height' => 1.0, + ] +]; +$xlargeCropSettings = $defaultCropSettings; +$xlargeCropSettings['title'] = 'LLL:EXT:bootstrap_package/Resources/Private/Language/Backend.xlf:option.xlarge'; +$largeCropSettings = $defaultCropSettings; +$largeCropSettings['title'] = 'LLL:EXT:bootstrap_package/Resources/Private/Language/Backend.xlf:option.large'; +$mediumCropSettings = $defaultCropSettings; +$mediumCropSettings['title'] = 'LLL:EXT:bootstrap_package/Resources/Private/Language/Backend.xlf:option.medium'; +$smallCropSettings = $defaultCropSettings; +$smallCropSettings['title'] = 'LLL:EXT:bootstrap_package/Resources/Private/Language/Backend.xlf:option.small'; +$extrasmallCropSettings = $defaultCropSettings; +$extrasmallCropSettings['title'] = 'LLL:EXT:bootstrap_package/Resources/Private/Language/Backend.xlf:option.extrasmall'; + +// Content Element Background Image +$GLOBALS['TCA']['tt_content']['columns']['background_image']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['default'] = $defaultCropSettings; +$GLOBALS['TCA']['tt_content']['columns']['background_image']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['xlarge'] = $xlargeCropSettings; +$GLOBALS['TCA']['tt_content']['columns']['background_image']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['large'] = $largeCropSettings; +$GLOBALS['TCA']['tt_content']['columns']['background_image']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['medium'] = $mediumCropSettings; +$GLOBALS['TCA']['tt_content']['columns']['background_image']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['small'] = $smallCropSettings; +$GLOBALS['TCA']['tt_content']['columns']['background_image']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['extrasmall'] = $extrasmallCropSettings; + +// Image content element +$GLOBALS['TCA']['tt_content']['types']['image']['columnsOverrides']['image']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['default'] = $defaultCropSettings; +$GLOBALS['TCA']['tt_content']['types']['image']['columnsOverrides']['image']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['xlarge'] = $xlargeCropSettings; +$GLOBALS['TCA']['tt_content']['types']['image']['columnsOverrides']['image']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['large'] = $largeCropSettings; +$GLOBALS['TCA']['tt_content']['types']['image']['columnsOverrides']['image']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['medium'] = $mediumCropSettings; +$GLOBALS['TCA']['tt_content']['types']['image']['columnsOverrides']['image']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['small'] = $smallCropSettings; +$GLOBALS['TCA']['tt_content']['types']['image']['columnsOverrides']['image']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['extrasmall'] = $extrasmallCropSettings; + +// Textpic content element +$GLOBALS['TCA']['tt_content']['types']['textpic']['columnsOverrides']['image']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['default'] = $defaultCropSettings; +$GLOBALS['TCA']['tt_content']['types']['textpic']['columnsOverrides']['image']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['xlarge'] = $xlargeCropSettings; +$GLOBALS['TCA']['tt_content']['types']['textpic']['columnsOverrides']['image']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['large'] = $largeCropSettings; +$GLOBALS['TCA']['tt_content']['types']['textpic']['columnsOverrides']['image']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['medium'] = $mediumCropSettings; +$GLOBALS['TCA']['tt_content']['types']['textpic']['columnsOverrides']['image']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['small'] = $smallCropSettings; +$GLOBALS['TCA']['tt_content']['types']['textpic']['columnsOverrides']['image']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['extrasmall'] = $extrasmallCropSettings; + +// Media content element +$GLOBALS['TCA']['tt_content']['types']['media']['columnsOverrides']['assets']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['default'] = $defaultCropSettings; +$GLOBALS['TCA']['tt_content']['types']['media']['columnsOverrides']['assets']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['xlarge'] = $xlargeCropSettings; +$GLOBALS['TCA']['tt_content']['types']['media']['columnsOverrides']['assets']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['large'] = $largeCropSettings; +$GLOBALS['TCA']['tt_content']['types']['media']['columnsOverrides']['assets']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['medium'] = $mediumCropSettings; +$GLOBALS['TCA']['tt_content']['types']['media']['columnsOverrides']['assets']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['small'] = $smallCropSettings; +$GLOBALS['TCA']['tt_content']['types']['media']['columnsOverrides']['assets']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['extrasmall'] = $extrasmallCropSettings; + +// Textmedia content element +$GLOBALS['TCA']['tt_content']['types']['textmedia']['columnsOverrides']['assets']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['default'] = $defaultCropSettings; +$GLOBALS['TCA']['tt_content']['types']['textmedia']['columnsOverrides']['assets']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['xlarge'] = $xlargeCropSettings; +$GLOBALS['TCA']['tt_content']['types']['textmedia']['columnsOverrides']['assets']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['large'] = $largeCropSettings; +$GLOBALS['TCA']['tt_content']['types']['textmedia']['columnsOverrides']['assets']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['medium'] = $mediumCropSettings; +$GLOBALS['TCA']['tt_content']['types']['textmedia']['columnsOverrides']['assets']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['small'] = $smallCropSettings; +$GLOBALS['TCA']['tt_content']['types']['textmedia']['columnsOverrides']['assets']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['extrasmall'] = $extrasmallCropSettings; + +// Card Group +$GLOBALS['TCA']['tx_bootstrappackage_card_group_item']['types']['1']['columnsOverrides']['image']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['default'] = $defaultCropSettings; +$GLOBALS['TCA']['tx_bootstrappackage_card_group_item']['types']['1']['columnsOverrides']['image']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['xlarge'] = $xlargeCropSettings; +$GLOBALS['TCA']['tx_bootstrappackage_card_group_item']['types']['1']['columnsOverrides']['image']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['large'] = $largeCropSettings; +$GLOBALS['TCA']['tx_bootstrappackage_card_group_item']['types']['1']['columnsOverrides']['image']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['medium'] = $mediumCropSettings; +$GLOBALS['TCA']['tx_bootstrappackage_card_group_item']['types']['1']['columnsOverrides']['image']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['small'] = $smallCropSettings; +$GLOBALS['TCA']['tx_bootstrappackage_card_group_item']['types']['1']['columnsOverrides']['image']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['extrasmall'] = $extrasmallCropSettings; + +// Accordion +$GLOBALS['TCA']['tx_bootstrappackage_accordion_item']['types']['1']['columnsOverrides']['media']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['default'] = $defaultCropSettings; +$GLOBALS['TCA']['tx_bootstrappackage_accordion_item']['types']['1']['columnsOverrides']['media']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['xlarge'] = $xlargeCropSettings; +$GLOBALS['TCA']['tx_bootstrappackage_accordion_item']['types']['1']['columnsOverrides']['media']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['large'] = $largeCropSettings; +$GLOBALS['TCA']['tx_bootstrappackage_accordion_item']['types']['1']['columnsOverrides']['media']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['medium'] = $mediumCropSettings; +$GLOBALS['TCA']['tx_bootstrappackage_accordion_item']['types']['1']['columnsOverrides']['media']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['small'] = $smallCropSettings; +$GLOBALS['TCA']['tx_bootstrappackage_accordion_item']['types']['1']['columnsOverrides']['media']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['extrasmall'] = $extrasmallCropSettings; + +// Carousel Background Image +$GLOBALS['TCA']['tx_bootstrappackage_carousel_item']['columns']['background_image']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['default'] = $defaultCropSettings; +$GLOBALS['TCA']['tx_bootstrappackage_carousel_item']['columns']['background_image']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['xlarge'] = $xlargeCropSettings; +$GLOBALS['TCA']['tx_bootstrappackage_carousel_item']['columns']['background_image']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['large'] = $largeCropSettings; +$GLOBALS['TCA']['tx_bootstrappackage_carousel_item']['columns']['background_image']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['medium'] = $mediumCropSettings; +$GLOBALS['TCA']['tx_bootstrappackage_carousel_item']['columns']['background_image']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['small'] = $smallCropSettings; +$GLOBALS['TCA']['tx_bootstrappackage_carousel_item']['columns']['background_image']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['extrasmall'] = $extrasmallCropSettings; + +// Carousel Image +$GLOBALS['TCA']['tx_bootstrappackage_carousel_item']['columns']['image']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['default'] = $defaultCropSettings; +$GLOBALS['TCA']['tx_bootstrappackage_carousel_item']['columns']['image']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['xlarge'] = $xlargeCropSettings; +$GLOBALS['TCA']['tx_bootstrappackage_carousel_item']['columns']['image']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['large'] = $largeCropSettings; +$GLOBALS['TCA']['tx_bootstrappackage_carousel_item']['columns']['image']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['medium'] = $mediumCropSettings; +$GLOBALS['TCA']['tx_bootstrappackage_carousel_item']['columns']['image']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['small'] = $smallCropSettings; +$GLOBALS['TCA']['tx_bootstrappackage_carousel_item']['columns']['image']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['extrasmall'] = $extrasmallCropSettings; + +// Tab +$GLOBALS['TCA']['tx_bootstrappackage_tab_item']['types']['1']['columnsOverrides']['media']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['default'] = $defaultCropSettings; +$GLOBALS['TCA']['tx_bootstrappackage_tab_item']['types']['1']['columnsOverrides']['media']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['xlarge'] = $xlargeCropSettings; +$GLOBALS['TCA']['tx_bootstrappackage_tab_item']['types']['1']['columnsOverrides']['media']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['large'] = $largeCropSettings; +$GLOBALS['TCA']['tx_bootstrappackage_tab_item']['types']['1']['columnsOverrides']['media']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['medium'] = $mediumCropSettings; +$GLOBALS['TCA']['tx_bootstrappackage_tab_item']['types']['1']['columnsOverrides']['media']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['small'] = $smallCropSettings; +$GLOBALS['TCA']['tx_bootstrappackage_tab_item']['types']['1']['columnsOverrides']['media']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['extrasmall'] = $extrasmallCropSettings; + +// Timeline +$GLOBALS['TCA']['tx_bootstrappackage_timeline_item']['types']['1']['columnsOverrides']['image']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['default'] = $defaultCropSettings; +$GLOBALS['TCA']['tx_bootstrappackage_timeline_item']['types']['1']['columnsOverrides']['image']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['xlarge'] = $xlargeCropSettings; +$GLOBALS['TCA']['tx_bootstrappackage_timeline_item']['types']['1']['columnsOverrides']['image']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['large'] = $largeCropSettings; +$GLOBALS['TCA']['tx_bootstrappackage_timeline_item']['types']['1']['columnsOverrides']['image']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['medium'] = $mediumCropSettings; +$GLOBALS['TCA']['tx_bootstrappackage_timeline_item']['types']['1']['columnsOverrides']['image']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['small'] = $smallCropSettings; +$GLOBALS['TCA']['tx_bootstrappackage_timeline_item']['types']['1']['columnsOverrides']['image']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['extrasmall'] = $extrasmallCropSettings; + +// Pages +foreach ([1, 3, 4] as $type) { + $GLOBALS['TCA']['pages']['types'][$type]['columnsOverrides']['thumbnail']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['default'] = $defaultCropSettings; + $GLOBALS['TCA']['pages']['types'][$type]['columnsOverrides']['thumbnail']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['xlarge'] = $xlargeCropSettings; + $GLOBALS['TCA']['pages']['types'][$type]['columnsOverrides']['thumbnail']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['large'] = $largeCropSettings; + $GLOBALS['TCA']['pages']['types'][$type]['columnsOverrides']['thumbnail']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['medium'] = $mediumCropSettings; + $GLOBALS['TCA']['pages']['types'][$type]['columnsOverrides']['thumbnail']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['small'] = $smallCropSettings; + $GLOBALS['TCA']['pages']['types'][$type]['columnsOverrides']['thumbnail']['config']['overrideChildTca']['columns']['crop']['config']['cropVariants']['extrasmall'] = $extrasmallCropSettings; +} diff --git a/packages/base-design/Configuration/TSconfig/News.tsconfig b/packages/base-design/Configuration/TSconfig/News.tsconfig new file mode 100644 index 0000000..c67613a --- /dev/null +++ b/packages/base-design/Configuration/TSconfig/News.tsconfig @@ -0,0 +1,4 @@ +tx_news.templateLayouts { + 1 = Zahl des Monats Layout + 2 = Startseite +} diff --git a/packages/base-design/Configuration/TypoScript/constants.typoscript b/packages/base-design/Configuration/TypoScript/constants.typoscript new file mode 100644 index 0000000..59ba92a --- /dev/null +++ b/packages/base-design/Configuration/TypoScript/constants.typoscript @@ -0,0 +1,72 @@ +config { + concatenateJs = 1 + compressJs = 1 + compressCss = 1 + concatenateCss = 1 +} + +page { + logo { + file = EXT:base_design/Resources/Public/Images/logo.png + fileInverted = EXT:base_design/Resources/Public/Images/logo.png + } + + theme { + cookieconsent { + enable = 0 + } + navigation { + type = top + } + breadcrumb { + enable = 0 + } + language { + enable = 0 + } + meta { + enable = 0 + } + copyright { + # cat=bootstrap package: copyright/169/120; type=boolean; label=Copyright: Enable to display the copyright + enable = 1 + # cat=bootstrap package: copyright/169/121; type=string; label=Copyright Text + text = © Copyright 2024 Cloonar Technologies GmbH + } + googleFont { + enable = 0 + } + } + fluidtemplate { + templateRootPath = EXT:base_design/Resources/Private/Templates/Page/ + partialRootPath = EXT:base_design/Resources/Private/Partials/Page/ + layoutRootPath = EXT:base_design/Resources/Private/Layouts/Page/ + } +} + +plugin.tx_news { + settings { + list.media.image { + maxWidth = 200c + maxHeight = 200c + } + detail.media.image.lightbox { + enabled = 0 + class = lightbox + width = 800m + height = 600m + } + } +} + +plugin.tx_indexedsearch.settings.targetPid = 10 + +plugin.bootstrap_package { + settings { + scss { + primary = #ed1847 + secondary = #ffffff + } + } +} + diff --git a/packages/base-design/Configuration/TypoScript/setup.typoscript b/packages/base-design/Configuration/TypoScript/setup.typoscript new file mode 100644 index 0000000..5fddf02 --- /dev/null +++ b/packages/base-design/Configuration/TypoScript/setup.typoscript @@ -0,0 +1,136 @@ +page { + shortcutIcon = EXT:base_design/Resources/Public/Images/favicon.png + includeCSS { + zTheme = EXT:base_design/Resources/Public/Scss/main.scss + } + includeJSFooterlibs { + ajaxnews = EXT:base_design/Resources/Public/JavaScript/newsAjaxPagination.js + search = EXT:base_design/Resources/Public/JavaScript/search.js + matomo = EXT:base_design/Resources/Public/JavaScript/matomo.js + } + 10 { + settings { + pageIds { + search = {$plugin.tx_indexedsearch.settings.targetPid} + } + } + } +} + +config { + spamProtectEmailAddresses = 2 + spamProtectEmailAddresses_atSubst = @ +} + +plugin { + tx_news { + view { + templateRootPaths { + 0 = EXT:news/Resources/Private/Templates/ + 1 = EXT:base_design/Resources/Private/Templates/News + } + partialRootPaths { + 0 = EXT:news/Resources/Private/Partials/ + 1 = EXT:base_design/Resources/Private/Partials/News + } + } + settings { + displayDummyIfNoMedia = 0 + cropMaxCharacters = 500 + responsiveimages { + news { + multiplier { + default = 0.5 + large = 0.5 + medium = 0.5 + } + gutters { + default = 40 + large = 40 + medium = 40 + } + } + variants { + default { + breakpoint = 1400 + width = 1280 + } + xlarge { + breakpoint = 1200 + width = 1100 + } + large { + breakpoint = 992 + width = 920 + } + medium { + breakpoint = 768 + width = 680 + } + small { + breakpoint = 576 + width = 500 + } + extrasmall { + breakpoint = unset + width = 374 + } + } + } + list { + media.image { + maxWidth = 150c + maxHeight = 150c + } + paginate.templatePath = EXT:news/Resources/Private/Templates/Styles/Twb/Templates/ViewHelpers/Widget/Paginate/IndexAjax.html + } + detail.media.image.lightbox { + enabled = 1 + class = lightbox + rel = lightbox-group-news + width = 800 + height = 600 + } + search { + paginate { + class = GeorgRinger\NumberedPagination\NumberedPagination + itemsPerPage = 10 + insertAbove = 1 + insertBelow = 1 + maximumNumberOfLinks = 3 + } + } + } + } + tx_form.settings.yamlConfigurations { + 1681331285 = EXT:base_design/Configuration/Yaml/Finishers/GetResponse.yaml + } + tx_kesearch_pi1 { + view { + templateRootPaths { + 9 = EXT:base_design/Resources/Private/Templates/Search/ + } + partialRootPaths { + 9 = EXT:base_design/Resources/Private/Partials/Search/ + } + } + } + tx_kesearch_pi2.view < plugin.tx_kesearch_pi1.view + tx_kesearch_pi3.view < plugin.tx_kesearch_pi1.view +} + + +############################ +#### CONTENT ELEMENTS ###### +############################ +lib.contentElement { + layoutRootPaths { + 15 = EXT:base_design/Resources/Private/Layouts/ContentElements/ + } + templateRootPaths { + 15 = EXT:base_design/Resources/Private/Templates/ContentElements/ + } + partialRootPaths { + 15 = EXT:base_design/Resources/Private/Partials/ContentElements/ + } +} diff --git a/packages/base-design/Configuration/Yaml/Finishers/GetResponse.yaml b/packages/base-design/Configuration/Yaml/Finishers/GetResponse.yaml new file mode 100644 index 0000000..22bf082 --- /dev/null +++ b/packages/base-design/Configuration/Yaml/Finishers/GetResponse.yaml @@ -0,0 +1,141 @@ +TYPO3: + CMS: + Form: + prototypes: + standard: + formElementsDefinition: + Form: + formEditor: + editors: + 900: + selectOptions: + 1681331285: + value: GetResponse + label: GetResponse Finisher + propertyCollections: + finishers: + 1681331285: + identifier: GetResponse + editors: + 100: + identifier: header + label: GetResponse + templateName: Inspector-CollectionElementHeaderEditor + 105: + identifier: 'notifyEmail' + templateName: 'Inspector-TextEditor' + label: 'Notify email' + propertyPath: 'options.notifyEmail' + propertyValidators: + 10: 'NotEmpty' + 110: + identifier: 'apiKey' + templateName: 'Inspector-TextEditor' + label: 'API Key' + propertyPath: 'options.apiKey' + propertyValidators: + 10: 'NotEmpty' + 120: + identifier: 'campaignId' + templateName: 'Inspector-TextEditor' + label: 'Campaign ID' + propertyPath: 'options.campaignId' + propertyValidators: + 10: 'NotEmpty' + 130: + identifier: 'email' + templateName: 'Inspector-TextEditor' + label: 'Subscribers email' + propertyPath: 'options.email' + enableFormelementSelectionButton: true + propertyValidators: + 10: 'NotEmpty' + 20: 'FormElementIdentifierWithinCurlyBracesInclusive' + 150: + identifier: 'firstname' + templateName: 'Inspector-TextEditor' + label: 'Subscribers firstname' + propertyPath: 'options.firstname' + enableFormelementSelectionButton: true + propertyValidators: + 10: 'NotEmpty' + 20: 'FormElementIdentifierWithinCurlyBracesInclusive' + 160: + identifier: 'lastname' + templateName: 'Inspector-TextEditor' + label: 'Subscribers lastname' + propertyPath: 'options.lastname' + enableFormelementSelectionButton: true + propertyValidators: + 10: 'NotEmpty' + 20: 'FormElementIdentifierWithinCurlyBracesInclusive' + 170: + identifier: 'company' + templateName: 'Inspector-TextEditor' + label: 'Subscribers company' + propertyPath: 'options.company' + enableFormelementSelectionButton: true + propertyValidators: + 10: 'FormElementIdentifierWithinCurlyBracesInclusive' + 180: + identifier: 'register' + templateName: 'Inspector-TextEditor' + label: 'Register boolean' + propertyPath: 'options.register' + enableFormelementSelectionButton: true + propertyValidators: + 10: 'FormElementIdentifierWithinCurlyBracesInclusive' + 9999: + indentifier: removeButton + templateName: Inspector-RemoveElementEditor + finishersDefinition: + GetResponse: + implementationClassName: 'Cloonar\BaseDesign\Domain\Finishers\GetResponseFinisher' + formEditor: + iconIdentifier: 'form-finisher' + label: 'GetResponse Finisher' + predefinedDefaults: + options: + notifyEmail: '' + apiKey: '' + campaignId: '' + email: {} + firstname: {} + lastname: {} + company: {} + register: {} + FormEngine: + label: 'GetResponse Finisher' + elements: + notifyEmail: + label: 'Notify email' + config: + type: 'text' + apiKey: + label: 'API key' + config: + type: 'text' + campaignId: + label: 'Campaign ID' + config: + type: 'text' + email: + label: 'Subscribers email' + config: + type: 'text' + firstname: + label: 'Subscribers firstname' + config: + type: 'text' + lastname: + label: 'Subscribers lastname' + config: + type: 'text' + company: + label: 'Subscribers company' + config: + type: 'text' + register: + label: 'Register Subscriber' + config: + type: 'text' diff --git a/packages/base-design/Resources/Private/Forms/newsletter.form.yaml b/packages/base-design/Resources/Private/Forms/newsletter.form.yaml new file mode 100644 index 0000000..c9f7211 --- /dev/null +++ b/packages/base-design/Resources/Private/Forms/newsletter.form.yaml @@ -0,0 +1,121 @@ + +renderingOptions: + submitButtonLabel: Anmelden +type: Form +identifier: newsletter +label: Newsletter +prototypeName: standard +finishers: + - + options: + notifyEmail: dominik.polakovics@cloonar.com + apiKey: 28a7270df8f61a296a11d3e63d5b2aaf + campaignId: 4Etb5 + email: '{email-1}' + firstname: '{text-1}' + lastname: '{text-2}' + company: '{text-3}' + register: '{checkbox-1}' + identifier: GetResponse + - + options: + message: 'Vielen Dank für Ihre Anmeldung !' + contentElementUid: '' + identifier: Confirmation +renderables: + - + renderingOptions: + previousButtonLabel: 'Previous step' + nextButtonLabel: 'Next step' + type: Page + identifier: page-1 + label: 'Newsletter Anmeldung' + renderables: + - + properties: + text: 'Melden Sie sich zu unserem Newsletter an, um top News zu erhalten!' + type: StaticText + identifier: statictext-1 + label: '' + - + type: GridRow + identifier: gridrow-1 + label: 'Grid: Row' + renderables: + - + defaultValue: '' + type: Text + identifier: text-1 + label: Vorname + properties: + fluidAdditionalAttributes: + placeholder: Vorname + required: required + gridColumnClassAutoConfiguration: + viewPorts: + xs: + numbersOfColumnsToUse: '12' + validators: + - + identifier: NotEmpty + - + defaultValue: '' + type: Text + identifier: text-2 + label: Nachname + properties: + fluidAdditionalAttributes: + placeholder: Nachname + required: required + gridColumnClassAutoConfiguration: + viewPorts: + xs: + numbersOfColumnsToUse: '12' + validators: + - + identifier: NotEmpty + - + type: GridRow + identifier: gridrow-2 + label: 'Grid: Row' + renderables: + - + defaultValue: '' + type: Email + identifier: email-1 + label: E-mail + properties: + fluidAdditionalAttributes: + placeholder: vorname.nachname@domain.com + required: required + gridColumnClassAutoConfiguration: + viewPorts: + xs: + numbersOfColumnsToUse: '12' + validators: + - + identifier: EmailAddress + - + identifier: NotEmpty + - + defaultValue: '' + type: Text + identifier: text-3 + label: Firma + properties: + fluidAdditionalAttributes: + placeholder: Firma + gridColumnClassAutoConfiguration: + viewPorts: + xs: + numbersOfColumnsToUse: '12' + - + type: Checkbox + identifier: checkbox-1 + label: 'Ich möchte den Newsletter per E-Mail erhalten. Meine Daten werden keinesfalls an Dritte weitergegeben. Meine Einwilligung kann ich jederzeit durch eine E-Mail an newsletter@cloonar.dev widerrufen. Selbstverständlich können Sie über die gespeicherten Daten Auskunft verlangen.' + properties: + fluidAdditionalAttributes: + required: required + validators: + - + identifier: NotEmpty diff --git a/packages/base-design/Resources/Private/Language/locallang_ttc.xlf b/packages/base-design/Resources/Private/Language/locallang_ttc.xlf new file mode 100644 index 0000000..539409f --- /dev/null +++ b/packages/base-design/Resources/Private/Language/locallang_ttc.xlf @@ -0,0 +1,11 @@ + + + +
+ + + None + + + + diff --git a/packages/base-design/Resources/Private/Partials/ContentElements/Media/Gallery.html b/packages/base-design/Resources/Private/Partials/ContentElements/Media/Gallery.html new file mode 100644 index 0000000..7c834b7 --- /dev/null +++ b/packages/base-design/Resources/Private/Partials/ContentElements/Media/Gallery.html @@ -0,0 +1,20 @@ + + + + {data.imagecols as integer} + {settings.gallery.columns.{imagecols}} + + + + + + + diff --git a/packages/base-design/Resources/Private/Partials/ContentElements/Media/Type/Image.html b/packages/base-design/Resources/Private/Partials/ContentElements/Media/Type/Image.html new file mode 100644 index 0000000..2eee8d7 --- /dev/null +++ b/packages/base-design/Resources/Private/Partials/ContentElements/Media/Type/Image.html @@ -0,0 +1,39 @@ + +
+ + + + + +

{file.properties.title}

+
+
+
+ + + + + + + + + + + + +
+ +
+ {file.properties.description} +
+
+
+ + diff --git a/packages/base-design/Resources/Private/Partials/News/Detail/MediaImage.html b/packages/base-design/Resources/Private/Partials/News/Detail/MediaImage.html new file mode 100644 index 0000000..a774f57 --- /dev/null +++ b/packages/base-design/Resources/Private/Partials/News/Detail/MediaImage.html @@ -0,0 +1,31 @@ + + +
+ + + + + + + + + + + + + + + + + + + +
+ +

+ {mediaElement.description} +

+
+ diff --git a/packages/base-design/Resources/Private/Partials/News/Detail/Opengraph.html b/packages/base-design/Resources/Private/Partials/News/Detail/Opengraph.html new file mode 100644 index 0000000..d899efc --- /dev/null +++ b/packages/base-design/Resources/Private/Partials/News/Detail/Opengraph.html @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/base-design/Resources/Private/Partials/News/List/Item.html b/packages/base-design/Resources/Private/Partials/News/List/Item.html new file mode 100644 index 0000000..e1cc6d3 --- /dev/null +++ b/packages/base-design/Resources/Private/Partials/News/List/Item.html @@ -0,0 +1,103 @@ + + +
+ + +
+

+ + {newsItem.title} + +

+
+ + + + +
+ + + + + + + + + + + + + +
+
+ + +
+ + + + + +
+
+
+
+ + + +
+ + + +
{newsItem.teaser -> f:format.crop(maxCharacters: '{settings.cropMaxCharacters}', respectWordBoundaries:'1') -> f:format.raw()}
+
+ +
{newsItem.bodytext -> f:format.crop(maxCharacters: '{settings.cropMaxCharacters}', respectWordBoundaries:'1') -> f:format.raw()}
+
+
+
+ + + + +
+ + + +
+ diff --git a/packages/base-design/Resources/Private/Partials/News/List/Pagination.html b/packages/base-design/Resources/Private/Partials/News/List/Pagination.html new file mode 100644 index 0000000..4ed6b30 --- /dev/null +++ b/packages/base-design/Resources/Private/Partials/News/List/Pagination.html @@ -0,0 +1,57 @@ + diff --git a/packages/base-design/Resources/Private/Partials/News/List/ZahlItem.html b/packages/base-design/Resources/Private/Partials/News/List/ZahlItem.html new file mode 100644 index 0000000..743416a --- /dev/null +++ b/packages/base-design/Resources/Private/Partials/News/List/ZahlItem.html @@ -0,0 +1,86 @@ + + +
+ + +
+

+ {newsItem.title} +

+
+ + + + +
+ + + + + + + + + + + +
+
+ + +
+ + + +
+
+
+
+ + + +
+ +
{newsItem.bodytext -> f:format.html()}
+
+
+ + + +
+ diff --git a/packages/base-design/Resources/Private/Partials/Page/DropIn/Navigation/MainAfter.html b/packages/base-design/Resources/Private/Partials/Page/DropIn/Navigation/MainAfter.html new file mode 100644 index 0000000..b8d91cb --- /dev/null +++ b/packages/base-design/Resources/Private/Partials/Page/DropIn/Navigation/MainAfter.html @@ -0,0 +1,19 @@ + +
+
+
+ +
+ +
+
+
+
diff --git a/packages/base-design/Resources/Private/Partials/Search/ResultRow.html b/packages/base-design/Resources/Private/Partials/Search/ResultRow.html new file mode 100644 index 0000000..6161e6e --- /dev/null +++ b/packages/base-design/Resources/Private/Partials/Search/ResultRow.html @@ -0,0 +1,74 @@ + + + + +
+   +
+ + {f:translate(key: 'LLL:EXT:ke_search/Resources/Private/Language/locallang_searchbox.xlf:label_resulturl')}: + {resultrow.url}
+
+ + + {f:translate(key: 'LLL:EXT:ke_search/Resources/Private/Language/locallang_searchbox.xlf:label_tags')}: + {resultrow.tags}
+
+
+ + + + + +

+ + {resultrow.number}. + + + + {resultrow.title} + + +

+ + + + + + +
+
+ + + + + +
+ + 01.01.2023 +
+
+
+
+
+ {resultrow.teaser} +
+   +
+ + + + + + + + + + + + + diff --git a/packages/base-design/Resources/Private/Partials/Search/ResultRows.html b/packages/base-design/Resources/Private/Partials/Search/ResultRows.html new file mode 100644 index 0000000..487dbe7 --- /dev/null +++ b/packages/base-design/Resources/Private/Partials/Search/ResultRows.html @@ -0,0 +1,29 @@ + + + + +
+ + +
+ +
+
+
+ + + +
+ +
+ +
+
+ +
{queryTimeText}
+
diff --git a/packages/base-design/Resources/Private/Partials/Structure/FooterContent.html b/packages/base-design/Resources/Private/Partials/Structure/FooterContent.html new file mode 100644 index 0000000..ab18776 --- /dev/null +++ b/packages/base-design/Resources/Private/Partials/Structure/FooterContent.html @@ -0,0 +1,17 @@ + + + diff --git a/packages/base-design/Resources/Private/Templates/News/News/Detail.html b/packages/base-design/Resources/Private/Templates/News/News/Detail.html new file mode 100644 index 0000000..d2eff35 --- /dev/null +++ b/packages/base-design/Resources/Private/Templates/News/News/Detail.html @@ -0,0 +1,203 @@ + + + + + + + + + + + + + + + + + + {newsItem.alternativeTitle} + + + + + {newsItem.title} + + + + + + + +
    + + + + + + +
+
+
+
+
+

{newsItem.title}

+
+ + + + + {newsItem.contentElementIdList} + + + + + + + +
+ {newsItem.bodytext} +
+
+ + + + + + + + + Care about the privacy of your readers? + Checkout https://typo3.org/extensions/repository/view/rx_shariff + and it will be used automatically! + + + + + + + + +
+ + + +
+
+ diff --git a/packages/base-design/Resources/Private/Templates/News/News/List.html b/packages/base-design/Resources/Private/Templates/News/News/List.html new file mode 100644 index 0000000..f5d4edb --- /dev/null +++ b/packages/base-design/Resources/Private/Templates/News/News/List.html @@ -0,0 +1,52 @@ + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ +
+ +
+
+
+ +
+ diff --git a/packages/base-design/Resources/Private/Templates/Page/Default.html b/packages/base-design/Resources/Private/Templates/Page/Default.html new file mode 100644 index 0000000..a7faf1a --- /dev/null +++ b/packages/base-design/Resources/Private/Templates/Page/Default.html @@ -0,0 +1,24 @@ + + + + + + + + + + + +
+ +
+ + + +
+ + + + + + diff --git a/packages/base-design/Resources/Private/Templates/Search/SearchForm.html b/packages/base-design/Resources/Private/Templates/Search/SearchForm.html new file mode 100644 index 0000000..b0fb20e --- /dev/null +++ b/packages/base-design/Resources/Private/Templates/Search/SearchForm.html @@ -0,0 +1,83 @@ + + + + + + + +
+ + + + + + + + + + + + +
+
+ + diff --git a/packages/base-design/Resources/Public/Fonts/Geogrotesque-Lt.eot b/packages/base-design/Resources/Public/Fonts/Geogrotesque-Lt.eot new file mode 100644 index 0000000..3827810 Binary files /dev/null and b/packages/base-design/Resources/Public/Fonts/Geogrotesque-Lt.eot differ diff --git a/packages/base-design/Resources/Public/Fonts/Geogrotesque-Lt.eot? b/packages/base-design/Resources/Public/Fonts/Geogrotesque-Lt.eot? new file mode 100644 index 0000000..3827810 Binary files /dev/null and b/packages/base-design/Resources/Public/Fonts/Geogrotesque-Lt.eot? differ diff --git a/packages/base-design/Resources/Public/Fonts/Geogrotesque-Lt.svg b/packages/base-design/Resources/Public/Fonts/Geogrotesque-Lt.svg new file mode 100644 index 0000000..9f20c82 --- /dev/null +++ b/packages/base-design/Resources/Public/Fonts/Geogrotesque-Lt.svg @@ -0,0 +1,4999 @@ + + + + +Created by FontForge 20170731 at Thu Dec 15 23:01:37 2016 + By Aleksey,,, +Copyright (c) 2008-2016 by Eduardo Manso. All rights reserved. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/base-design/Resources/Public/Fonts/Geogrotesque-Lt.ttf b/packages/base-design/Resources/Public/Fonts/Geogrotesque-Lt.ttf new file mode 100644 index 0000000..d9a92b1 Binary files /dev/null and b/packages/base-design/Resources/Public/Fonts/Geogrotesque-Lt.ttf differ diff --git a/packages/base-design/Resources/Public/Fonts/Geogrotesque-Lt.woff b/packages/base-design/Resources/Public/Fonts/Geogrotesque-Lt.woff new file mode 100644 index 0000000..e63090d Binary files /dev/null and b/packages/base-design/Resources/Public/Fonts/Geogrotesque-Lt.woff differ diff --git a/packages/base-design/Resources/Public/Fonts/Geogrotesque-Lt.woff2 b/packages/base-design/Resources/Public/Fonts/Geogrotesque-Lt.woff2 new file mode 100644 index 0000000..657d9ba Binary files /dev/null and b/packages/base-design/Resources/Public/Fonts/Geogrotesque-Lt.woff2 differ diff --git a/packages/base-design/Resources/Public/Fonts/Geogrotesque-Lt.woff2.1 b/packages/base-design/Resources/Public/Fonts/Geogrotesque-Lt.woff2.1 new file mode 100644 index 0000000..657d9ba Binary files /dev/null and b/packages/base-design/Resources/Public/Fonts/Geogrotesque-Lt.woff2.1 differ diff --git a/packages/base-design/Resources/Public/Fonts/Geogrotesque-LtIt.eot b/packages/base-design/Resources/Public/Fonts/Geogrotesque-LtIt.eot new file mode 100644 index 0000000..ec3b5d4 Binary files /dev/null and b/packages/base-design/Resources/Public/Fonts/Geogrotesque-LtIt.eot differ diff --git a/packages/base-design/Resources/Public/Fonts/Geogrotesque-LtIt.eot? b/packages/base-design/Resources/Public/Fonts/Geogrotesque-LtIt.eot? new file mode 100644 index 0000000..ec3b5d4 Binary files /dev/null and b/packages/base-design/Resources/Public/Fonts/Geogrotesque-LtIt.eot? differ diff --git a/packages/base-design/Resources/Public/Fonts/Geogrotesque-LtIt.eot?.1 b/packages/base-design/Resources/Public/Fonts/Geogrotesque-LtIt.eot?.1 new file mode 100644 index 0000000..ec3b5d4 Binary files /dev/null and b/packages/base-design/Resources/Public/Fonts/Geogrotesque-LtIt.eot?.1 differ diff --git a/packages/base-design/Resources/Public/Fonts/Geogrotesque-LtIt.svg b/packages/base-design/Resources/Public/Fonts/Geogrotesque-LtIt.svg new file mode 100644 index 0000000..ac02447 --- /dev/null +++ b/packages/base-design/Resources/Public/Fonts/Geogrotesque-LtIt.svg @@ -0,0 +1,5205 @@ + + + + +Created by FontForge 20170731 at Thu Dec 15 23:00:59 2016 + By Aleksey,,, +Copyright (c) 2008-2016 by Eduardo Manso. All rights reserved. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/base-design/Resources/Public/Fonts/Geogrotesque-LtIt.ttf b/packages/base-design/Resources/Public/Fonts/Geogrotesque-LtIt.ttf new file mode 100644 index 0000000..c2423b9 Binary files /dev/null and b/packages/base-design/Resources/Public/Fonts/Geogrotesque-LtIt.ttf differ diff --git a/packages/base-design/Resources/Public/Fonts/Geogrotesque-LtIt.woff b/packages/base-design/Resources/Public/Fonts/Geogrotesque-LtIt.woff new file mode 100644 index 0000000..8044d43 Binary files /dev/null and b/packages/base-design/Resources/Public/Fonts/Geogrotesque-LtIt.woff differ diff --git a/packages/base-design/Resources/Public/Fonts/Geogrotesque-LtIt.woff2 b/packages/base-design/Resources/Public/Fonts/Geogrotesque-LtIt.woff2 new file mode 100644 index 0000000..1060547 Binary files /dev/null and b/packages/base-design/Resources/Public/Fonts/Geogrotesque-LtIt.woff2 differ diff --git a/packages/base-design/Resources/Public/Fonts/Geogrotesque-Md.eot b/packages/base-design/Resources/Public/Fonts/Geogrotesque-Md.eot new file mode 100644 index 0000000..88a866d Binary files /dev/null and b/packages/base-design/Resources/Public/Fonts/Geogrotesque-Md.eot differ diff --git a/packages/base-design/Resources/Public/Fonts/Geogrotesque-Md.svg b/packages/base-design/Resources/Public/Fonts/Geogrotesque-Md.svg new file mode 100644 index 0000000..9bbc346 --- /dev/null +++ b/packages/base-design/Resources/Public/Fonts/Geogrotesque-Md.svg @@ -0,0 +1,4222 @@ + + + + +Created by FontForge 20170731 at Thu Dec 15 22:58:58 2016 + By Aleksey,,, +Copyright (c) 2008-2016 by Eduardo Manso. All rights reserved. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/base-design/Resources/Public/Fonts/Geogrotesque-Md.ttf b/packages/base-design/Resources/Public/Fonts/Geogrotesque-Md.ttf new file mode 100644 index 0000000..967ae85 Binary files /dev/null and b/packages/base-design/Resources/Public/Fonts/Geogrotesque-Md.ttf differ diff --git a/packages/base-design/Resources/Public/Fonts/Geogrotesque-Md.woff b/packages/base-design/Resources/Public/Fonts/Geogrotesque-Md.woff new file mode 100644 index 0000000..41ae3fc Binary files /dev/null and b/packages/base-design/Resources/Public/Fonts/Geogrotesque-Md.woff differ diff --git a/packages/base-design/Resources/Public/Fonts/Geogrotesque-Md.woff2 b/packages/base-design/Resources/Public/Fonts/Geogrotesque-Md.woff2 new file mode 100644 index 0000000..45047d9 Binary files /dev/null and b/packages/base-design/Resources/Public/Fonts/Geogrotesque-Md.woff2 differ diff --git a/packages/base-design/Resources/Public/Fonts/Geogrotesque-Md.woff2.1 b/packages/base-design/Resources/Public/Fonts/Geogrotesque-Md.woff2.1 new file mode 100644 index 0000000..45047d9 Binary files /dev/null and b/packages/base-design/Resources/Public/Fonts/Geogrotesque-Md.woff2.1 differ diff --git a/packages/base-design/Resources/Public/Fonts/Geogrotesque-SmBd.eot b/packages/base-design/Resources/Public/Fonts/Geogrotesque-SmBd.eot new file mode 100644 index 0000000..83446e0 Binary files /dev/null and b/packages/base-design/Resources/Public/Fonts/Geogrotesque-SmBd.eot differ diff --git a/packages/base-design/Resources/Public/Fonts/Geogrotesque-SmBd.svg b/packages/base-design/Resources/Public/Fonts/Geogrotesque-SmBd.svg new file mode 100644 index 0000000..d35ee84 --- /dev/null +++ b/packages/base-design/Resources/Public/Fonts/Geogrotesque-SmBd.svg @@ -0,0 +1,5036 @@ + + + + +Created by FontForge 20170731 at Thu Dec 15 23:04:06 2016 + By Aleksey,,, +Copyright (c) 2008-2016 by Eduardo Manso. All rights reserved. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/base-design/Resources/Public/Fonts/Geogrotesque-SmBd.ttf b/packages/base-design/Resources/Public/Fonts/Geogrotesque-SmBd.ttf new file mode 100644 index 0000000..22d94d5 Binary files /dev/null and b/packages/base-design/Resources/Public/Fonts/Geogrotesque-SmBd.ttf differ diff --git a/packages/base-design/Resources/Public/Fonts/Geogrotesque-SmBd.woff b/packages/base-design/Resources/Public/Fonts/Geogrotesque-SmBd.woff new file mode 100644 index 0000000..613c999 Binary files /dev/null and b/packages/base-design/Resources/Public/Fonts/Geogrotesque-SmBd.woff differ diff --git a/packages/base-design/Resources/Public/Fonts/Geogrotesque-SmBd.woff2 b/packages/base-design/Resources/Public/Fonts/Geogrotesque-SmBd.woff2 new file mode 100644 index 0000000..fdc6d10 Binary files /dev/null and b/packages/base-design/Resources/Public/Fonts/Geogrotesque-SmBd.woff2 differ diff --git a/packages/base-design/Resources/Public/Fonts/Geogrotesque-SmBdIt.eot b/packages/base-design/Resources/Public/Fonts/Geogrotesque-SmBdIt.eot new file mode 100644 index 0000000..0be6eba Binary files /dev/null and b/packages/base-design/Resources/Public/Fonts/Geogrotesque-SmBdIt.eot differ diff --git a/packages/base-design/Resources/Public/Fonts/Geogrotesque-SmBdIt.svg b/packages/base-design/Resources/Public/Fonts/Geogrotesque-SmBdIt.svg new file mode 100644 index 0000000..396e267 --- /dev/null +++ b/packages/base-design/Resources/Public/Fonts/Geogrotesque-SmBdIt.svg @@ -0,0 +1,5222 @@ + + + + +Created by FontForge 20170731 at Thu Dec 15 23:03:29 2016 + By Aleksey,,, +Copyright (c) 2008-2016 by Eduardo Manso. All rights reserved. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/base-design/Resources/Public/Fonts/Geogrotesque-SmBdIt.ttf b/packages/base-design/Resources/Public/Fonts/Geogrotesque-SmBdIt.ttf new file mode 100644 index 0000000..f259f14 Binary files /dev/null and b/packages/base-design/Resources/Public/Fonts/Geogrotesque-SmBdIt.ttf differ diff --git a/packages/base-design/Resources/Public/Fonts/Geogrotesque-SmBdIt.woff b/packages/base-design/Resources/Public/Fonts/Geogrotesque-SmBdIt.woff new file mode 100644 index 0000000..9d4a54b Binary files /dev/null and b/packages/base-design/Resources/Public/Fonts/Geogrotesque-SmBdIt.woff differ diff --git a/packages/base-design/Resources/Public/Fonts/Geogrotesque-SmBdIt.woff2 b/packages/base-design/Resources/Public/Fonts/Geogrotesque-SmBdIt.woff2 new file mode 100644 index 0000000..a6486aa Binary files /dev/null and b/packages/base-design/Resources/Public/Fonts/Geogrotesque-SmBdIt.woff2 differ diff --git a/packages/base-design/Resources/Public/Images/favicon.png b/packages/base-design/Resources/Public/Images/favicon.png new file mode 100644 index 0000000..599fa71 Binary files /dev/null and b/packages/base-design/Resources/Public/Images/favicon.png differ diff --git a/packages/base-design/Resources/Public/Images/logo.png b/packages/base-design/Resources/Public/Images/logo.png new file mode 100644 index 0000000..ae20aad Binary files /dev/null and b/packages/base-design/Resources/Public/Images/logo.png differ diff --git a/packages/base-design/Resources/Public/JavaScript/Dist/bootstrap-datepicker.min.js b/packages/base-design/Resources/Public/JavaScript/Dist/bootstrap-datepicker.min.js new file mode 100644 index 0000000..42803b2 --- /dev/null +++ b/packages/base-design/Resources/Public/JavaScript/Dist/bootstrap-datepicker.min.js @@ -0,0 +1,12 @@ +/*! + * Datepicker for Bootstrap v1.9.0 (https://github.com/uxsolutions/bootstrap-datepicker) + * + * Licensed under the Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) + */ + +!function(a) { "function" == typeof define && define.amd ? define(["jquery"], a) : a("object" == typeof exports ? require("jquery") : jQuery) }(function(a, b) { + function c() { return new Date(Date.UTC.apply(Date, arguments)) } function d() { var a = new Date; return c(a.getFullYear(), a.getMonth(), a.getDate()) } function e(a, b) { return a.getUTCFullYear() === b.getUTCFullYear() && a.getUTCMonth() === b.getUTCMonth() && a.getUTCDate() === b.getUTCDate() } function f(c, d) { return function() { return d !== b && a.fn.datepicker.deprecated(d), this[c].apply(this, arguments) } } function g(a) { return a && !isNaN(a.getTime()) } function h(b, c) { function d(a, b) { return b.toLowerCase() } var e, f = a(b).data(), g = {}, h = new RegExp("^" + c.toLowerCase() + "([A-Z])"); c = new RegExp("^" + c.toLowerCase()); for (var i in f) c.test(i) && (e = i.replace(h, d), g[e] = f[i]); return g } function i(b) { var c = {}; if (q[b] || (b = b.split("-")[0], q[b])) { var d = q[b]; return a.each(p, function(a, b) { b in d && (c[b] = d[b]) }), c } } var j = function() { var b = { get: function(a) { return this.slice(a)[0] }, contains: function(a) { for (var b = a && a.valueOf(), c = 0, d = this.length; c < d; c++)if (0 <= this[c].valueOf() - b && this[c].valueOf() - b < 864e5) return c; return -1 }, remove: function(a) { this.splice(a, 1) }, replace: function(b) { b && (a.isArray(b) || (b = [b]), this.clear(), this.push.apply(this, b)) }, clear: function() { this.length = 0 }, copy: function() { var a = new j; return a.replace(this), a } }; return function() { var c = []; return c.push.apply(c, arguments), a.extend(c, b), c } }(), k = function(b, c) { a.data(b, "datepicker", this), this._events = [], this._secondaryEvents = [], this._process_options(c), this.dates = new j, this.viewDate = this.o.defaultViewDate, this.focusDate = null, this.element = a(b), this.isInput = this.element.is("input"), this.inputField = this.isInput ? this.element : this.element.find("input"), this.component = !!this.element.hasClass("date") && this.element.find(".add-on, .input-group-addon, .input-group-append, .input-group-prepend, .btn"), this.component && 0 === this.component.length && (this.component = !1), this.isInline = !this.component && this.element.is("div"), this.picker = a(r.template), this._check_template(this.o.templates.leftArrow) && this.picker.find(".prev").html(this.o.templates.leftArrow), this._check_template(this.o.templates.rightArrow) && this.picker.find(".next").html(this.o.templates.rightArrow), this._buildEvents(), this._attachEvents(), this.isInline ? this.picker.addClass("datepicker-inline").appendTo(this.element) : this.picker.addClass("datepicker-dropdown dropdown-menu"), this.o.rtl && this.picker.addClass("datepicker-rtl"), this.o.calendarWeeks && this.picker.find(".datepicker-days .datepicker-switch, thead .datepicker-title, tfoot .today, tfoot .clear").attr("colspan", function(a, b) { return Number(b) + 1 }), this._process_options({ startDate: this._o.startDate, endDate: this._o.endDate, daysOfWeekDisabled: this.o.daysOfWeekDisabled, daysOfWeekHighlighted: this.o.daysOfWeekHighlighted, datesDisabled: this.o.datesDisabled }), this._allow_update = !1, this.setViewMode(this.o.startView), this._allow_update = !0, this.fillDow(), this.fillMonths(), this.update(), this.isInline && this.show() }; k.prototype = { constructor: k, _resolveViewName: function(b) { return a.each(r.viewModes, function(c, d) { if (b === c || -1 !== a.inArray(b, d.names)) return b = c, !1 }), b }, _resolveDaysOfWeek: function(b) { return a.isArray(b) || (b = b.split(/[,\s]*/)), a.map(b, Number) }, _check_template: function(c) { try { if (c === b || "" === c) return !1; if ((c.match(/[<>]/g) || []).length <= 0) return !0; return a(c).length > 0 } catch (a) { return !1 } }, _process_options: function(b) { this._o = a.extend({}, this._o, b); var e = this.o = a.extend({}, this._o), f = e.language; q[f] || (f = f.split("-")[0], q[f] || (f = o.language)), e.language = f, e.startView = this._resolveViewName(e.startView), e.minViewMode = this._resolveViewName(e.minViewMode), e.maxViewMode = this._resolveViewName(e.maxViewMode), e.startView = Math.max(this.o.minViewMode, Math.min(this.o.maxViewMode, e.startView)), !0 !== e.multidate && (e.multidate = Number(e.multidate) || !1, !1 !== e.multidate && (e.multidate = Math.max(0, e.multidate))), e.multidateSeparator = String(e.multidateSeparator), e.weekStart %= 7, e.weekEnd = (e.weekStart + 6) % 7; var g = r.parseFormat(e.format); e.startDate !== -1 / 0 && (e.startDate ? e.startDate instanceof Date ? e.startDate = this._local_to_utc(this._zero_time(e.startDate)) : e.startDate = r.parseDate(e.startDate, g, e.language, e.assumeNearbyYear) : e.startDate = -1 / 0), e.endDate !== 1 / 0 && (e.endDate ? e.endDate instanceof Date ? e.endDate = this._local_to_utc(this._zero_time(e.endDate)) : e.endDate = r.parseDate(e.endDate, g, e.language, e.assumeNearbyYear) : e.endDate = 1 / 0), e.daysOfWeekDisabled = this._resolveDaysOfWeek(e.daysOfWeekDisabled || []), e.daysOfWeekHighlighted = this._resolveDaysOfWeek(e.daysOfWeekHighlighted || []), e.datesDisabled = e.datesDisabled || [], a.isArray(e.datesDisabled) || (e.datesDisabled = e.datesDisabled.split(",")), e.datesDisabled = a.map(e.datesDisabled, function(a) { return r.parseDate(a, g, e.language, e.assumeNearbyYear) }); var h = String(e.orientation).toLowerCase().split(/\s+/g), i = e.orientation.toLowerCase(); if (h = a.grep(h, function(a) { return /^auto|left|right|top|bottom$/.test(a) }), e.orientation = { x: "auto", y: "auto" }, i && "auto" !== i) if (1 === h.length) switch (h[0]) { case "top": case "bottom": e.orientation.y = h[0]; break; case "left": case "right": e.orientation.x = h[0] } else i = a.grep(h, function(a) { return /^left|right$/.test(a) }), e.orientation.x = i[0] || "auto", i = a.grep(h, function(a) { return /^top|bottom$/.test(a) }), e.orientation.y = i[0] || "auto"; else; if (e.defaultViewDate instanceof Date || "string" == typeof e.defaultViewDate) e.defaultViewDate = r.parseDate(e.defaultViewDate, g, e.language, e.assumeNearbyYear); else if (e.defaultViewDate) { var j = e.defaultViewDate.year || (new Date).getFullYear(), k = e.defaultViewDate.month || 0, l = e.defaultViewDate.day || 1; e.defaultViewDate = c(j, k, l) } else e.defaultViewDate = d() }, _applyEvents: function(a) { for (var c, d, e, f = 0; f < a.length; f++)c = a[f][0], 2 === a[f].length ? (d = b, e = a[f][1]) : 3 === a[f].length && (d = a[f][1], e = a[f][2]), c.on(e, d) }, _unapplyEvents: function(a) { for (var c, d, e, f = 0; f < a.length; f++)c = a[f][0], 2 === a[f].length ? (e = b, d = a[f][1]) : 3 === a[f].length && (e = a[f][1], d = a[f][2]), c.off(d, e) }, _buildEvents: function() { var b = { keyup: a.proxy(function(b) { -1 === a.inArray(b.keyCode, [27, 37, 39, 38, 40, 32, 13, 9]) && this.update() }, this), keydown: a.proxy(this.keydown, this), paste: a.proxy(this.paste, this) }; !0 === this.o.showOnFocus && (b.focus = a.proxy(this.show, this)), this.isInput ? this._events = [[this.element, b]] : this.component && this.inputField.length ? this._events = [[this.inputField, b], [this.component, { click: a.proxy(this.show, this) }]] : this._events = [[this.element, { click: a.proxy(this.show, this), keydown: a.proxy(this.keydown, this) }]], this._events.push([this.element, "*", { blur: a.proxy(function(a) { this._focused_from = a.target }, this) }], [this.element, { blur: a.proxy(function(a) { this._focused_from = a.target }, this) }]), this.o.immediateUpdates && this._events.push([this.element, { "changeYear changeMonth": a.proxy(function(a) { this.update(a.date) }, this) }]), this._secondaryEvents = [[this.picker, { click: a.proxy(this.click, this) }], [this.picker, ".prev, .next", { click: a.proxy(this.navArrowsClick, this) }], [this.picker, ".day:not(.disabled)", { click: a.proxy(this.dayCellClick, this) }], [a(window), { resize: a.proxy(this.place, this) }], [a(document), { "mousedown touchstart": a.proxy(function(a) { this.element.is(a.target) || this.element.find(a.target).length || this.picker.is(a.target) || this.picker.find(a.target).length || this.isInline || this.hide() }, this) }]] }, _attachEvents: function() { this._detachEvents(), this._applyEvents(this._events) }, _detachEvents: function() { this._unapplyEvents(this._events) }, _attachSecondaryEvents: function() { this._detachSecondaryEvents(), this._applyEvents(this._secondaryEvents) }, _detachSecondaryEvents: function() { this._unapplyEvents(this._secondaryEvents) }, _trigger: function(b, c) { var d = c || this.dates.get(-1), e = this._utc_to_local(d); this.element.trigger({ type: b, date: e, viewMode: this.viewMode, dates: a.map(this.dates, this._utc_to_local), format: a.proxy(function(a, b) { 0 === arguments.length ? (a = this.dates.length - 1, b = this.o.format) : "string" == typeof a && (b = a, a = this.dates.length - 1), b = b || this.o.format; var c = this.dates.get(a); return r.formatDate(c, b, this.o.language) }, this) }) }, show: function() { if (!(this.inputField.is(":disabled") || this.inputField.prop("readonly") && !1 === this.o.enableOnReadonly)) return this.isInline || this.picker.appendTo(this.o.container), this.place(), this.picker.show(), this._attachSecondaryEvents(), this._trigger("show"), (window.navigator.msMaxTouchPoints || "ontouchstart" in document) && this.o.disableTouchKeyboard && a(this.element).blur(), this }, hide: function() { return this.isInline || !this.picker.is(":visible") ? this : (this.focusDate = null, this.picker.hide().detach(), this._detachSecondaryEvents(), this.setViewMode(this.o.startView), this.o.forceParse && this.inputField.val() && this.setValue(), this._trigger("hide"), this) }, destroy: function() { return this.hide(), this._detachEvents(), this._detachSecondaryEvents(), this.picker.remove(), delete this.element.data().datepicker, this.isInput || delete this.element.data().date, this }, paste: function(b) { var c; if (b.originalEvent.clipboardData && b.originalEvent.clipboardData.types && -1 !== a.inArray("text/plain", b.originalEvent.clipboardData.types)) c = b.originalEvent.clipboardData.getData("text/plain"); else { if (!window.clipboardData) return; c = window.clipboardData.getData("Text") } this.setDate(c), this.update(), b.preventDefault() }, _utc_to_local: function(a) { if (!a) return a; var b = new Date(a.getTime() + 6e4 * a.getTimezoneOffset()); return b.getTimezoneOffset() !== a.getTimezoneOffset() && (b = new Date(a.getTime() + 6e4 * b.getTimezoneOffset())), b }, _local_to_utc: function(a) { return a && new Date(a.getTime() - 6e4 * a.getTimezoneOffset()) }, _zero_time: function(a) { return a && new Date(a.getFullYear(), a.getMonth(), a.getDate()) }, _zero_utc_time: function(a) { return a && c(a.getUTCFullYear(), a.getUTCMonth(), a.getUTCDate()) }, getDates: function() { return a.map(this.dates, this._utc_to_local) }, getUTCDates: function() { return a.map(this.dates, function(a) { return new Date(a) }) }, getDate: function() { return this._utc_to_local(this.getUTCDate()) }, getUTCDate: function() { var a = this.dates.get(-1); return a !== b ? new Date(a) : null }, clearDates: function() { this.inputField.val(""), this.update(), this._trigger("changeDate"), this.o.autoclose && this.hide() }, setDates: function() { var b = a.isArray(arguments[0]) ? arguments[0] : arguments; return this.update.apply(this, b), this._trigger("changeDate"), this.setValue(), this }, setUTCDates: function() { var b = a.isArray(arguments[0]) ? arguments[0] : arguments; return this.setDates.apply(this, a.map(b, this._utc_to_local)), this }, setDate: f("setDates"), setUTCDate: f("setUTCDates"), remove: f("destroy", "Method `remove` is deprecated and will be removed in version 2.0. Use `destroy` instead"), setValue: function() { var a = this.getFormattedDate(); return this.inputField.val(a), this }, getFormattedDate: function(c) { c === b && (c = this.o.format); var d = this.o.language; return a.map(this.dates, function(a) { return r.formatDate(a, c, d) }).join(this.o.multidateSeparator) }, getStartDate: function() { return this.o.startDate }, setStartDate: function(a) { return this._process_options({ startDate: a }), this.update(), this.updateNavArrows(), this }, getEndDate: function() { return this.o.endDate }, setEndDate: function(a) { return this._process_options({ endDate: a }), this.update(), this.updateNavArrows(), this }, setDaysOfWeekDisabled: function(a) { return this._process_options({ daysOfWeekDisabled: a }), this.update(), this }, setDaysOfWeekHighlighted: function(a) { return this._process_options({ daysOfWeekHighlighted: a }), this.update(), this }, setDatesDisabled: function(a) { return this._process_options({ datesDisabled: a }), this.update(), this }, place: function() { if (this.isInline) return this; var b = this.picker.outerWidth(), c = this.picker.outerHeight(), d = a(this.o.container), e = d.width(), f = "body" === this.o.container ? a(document).scrollTop() : d.scrollTop(), g = d.offset(), h = [0]; this.element.parents().each(function() { var b = a(this).css("z-index"); "auto" !== b && 0 !== Number(b) && h.push(Number(b)) }); var i = Math.max.apply(Math, h) + this.o.zIndexOffset, j = this.component ? this.component.parent().offset() : this.element.offset(), k = this.component ? this.component.outerHeight(!0) : this.element.outerHeight(!1), l = this.component ? this.component.outerWidth(!0) : this.element.outerWidth(!1), m = j.left - g.left, n = j.top - g.top; "body" !== this.o.container && (n += f), this.picker.removeClass("datepicker-orient-top datepicker-orient-bottom datepicker-orient-right datepicker-orient-left"), "auto" !== this.o.orientation.x ? (this.picker.addClass("datepicker-orient-" + this.o.orientation.x), "right" === this.o.orientation.x && (m -= b - l)) : j.left < 0 ? (this.picker.addClass("datepicker-orient-left"), m -= j.left - 10) : m + b > e ? (this.picker.addClass("datepicker-orient-right"), m += l - b) : this.o.rtl ? this.picker.addClass("datepicker-orient-right") : this.picker.addClass("datepicker-orient-left"); var o, p = this.o.orientation.y; if ("auto" === p && (o = -f + n - c, p = o < 0 ? "bottom" : "top"), this.picker.addClass("datepicker-orient-" + p), "top" === p ? n -= c + parseInt(this.picker.css("padding-top")) : n += k, this.o.rtl) { var q = e - (m + l); this.picker.css({ top: n, right: q, zIndex: i }) } else this.picker.css({ top: n, left: m, zIndex: i }); return this }, _allow_update: !0, update: function() { if (!this._allow_update) return this; var b = this.dates.copy(), c = [], d = !1; return arguments.length ? (a.each(arguments, a.proxy(function(a, b) { b instanceof Date && (b = this._local_to_utc(b)), c.push(b) }, this)), d = !0) : (c = this.isInput ? this.element.val() : this.element.data("date") || this.inputField.val(), c = c && this.o.multidate ? c.split(this.o.multidateSeparator) : [c], delete this.element.data().date), c = a.map(c, a.proxy(function(a) { return r.parseDate(a, this.o.format, this.o.language, this.o.assumeNearbyYear) }, this)), c = a.grep(c, a.proxy(function(a) { return !this.dateWithinRange(a) || !a }, this), !0), this.dates.replace(c), this.o.updateViewDate && (this.dates.length ? this.viewDate = new Date(this.dates.get(-1)) : this.viewDate < this.o.startDate ? this.viewDate = new Date(this.o.startDate) : this.viewDate > this.o.endDate ? this.viewDate = new Date(this.o.endDate) : this.viewDate = this.o.defaultViewDate), d ? (this.setValue(), this.element.change()) : this.dates.length && String(b) !== String(this.dates) && d && (this._trigger("changeDate"), this.element.change()), !this.dates.length && b.length && (this._trigger("clearDate"), this.element.change()), this.fill(), this }, fillDow: function() { if (this.o.showWeekDays) { var b = this.o.weekStart, c = ""; for (this.o.calendarWeeks && (c += ' '); b < this.o.weekStart + 7;)c += '"; c += "", this.picker.find(".datepicker-days thead").append(c) } }, fillMonths: function() { for (var a, b = this._utc_to_local(this.viewDate), c = "", d = 0; d < 12; d++)a = b && b.getMonth() === d ? " focused" : "", c += '' + q[this.o.language].monthsShort[d] + ""; this.picker.find(".datepicker-months td").html(c) }, setRange: function(b) { b && b.length ? this.range = a.map(b, function(a) { return a.valueOf() }) : delete this.range, this.fill() }, getClassNames: function(b) { var c = [], f = this.viewDate.getUTCFullYear(), g = this.viewDate.getUTCMonth(), h = d(); return b.getUTCFullYear() < f || b.getUTCFullYear() === f && b.getUTCMonth() < g ? c.push("old") : (b.getUTCFullYear() > f || b.getUTCFullYear() === f && b.getUTCMonth() > g) && c.push("new"), this.focusDate && b.valueOf() === this.focusDate.valueOf() && c.push("focused"), this.o.todayHighlight && e(b, h) && c.push("today"), -1 !== this.dates.contains(b) && c.push("active"), this.dateWithinRange(b) || c.push("disabled"), this.dateIsDisabled(b) && c.push("disabled", "disabled-date"), -1 !== a.inArray(b.getUTCDay(), this.o.daysOfWeekHighlighted) && c.push("highlighted"), this.range && (b > this.range[0] && b < this.range[this.range.length - 1] && c.push("range"), -1 !== a.inArray(b.valueOf(), this.range) && c.push("selected"), b.valueOf() === this.range[0] && c.push("range-start"), b.valueOf() === this.range[this.range.length - 1] && c.push("range-end")), c }, _fill_yearsView: function(c, d, e, f, g, h, i) { for (var j, k, l, m = "", n = e / 10, o = this.picker.find(c), p = Math.floor(f / e) * e, q = p + 9 * n, r = Math.floor(this.viewDate.getFullYear() / n) * n, s = a.map(this.dates, function(a) { return Math.floor(a.getUTCFullYear() / n) * n }), t = p - n; t <= q + n; t += n)j = [d], k = null, t === p - n ? j.push("old") : t === q + n && j.push("new"), -1 !== a.inArray(t, s) && j.push("active"), (t < g || t > h) && j.push("disabled"), t === r && j.push("focused"), i !== a.noop && (l = i(new Date(t, 0, 1)), l === b ? l = {} : "boolean" == typeof l ? l = { enabled: l } : "string" == typeof l && (l = { classes: l }), !1 === l.enabled && j.push("disabled"), l.classes && (j = j.concat(l.classes.split(/\s+/))), l.tooltip && (k = l.tooltip)), m += '" + t + ""; o.find(".datepicker-switch").text(p + "-" + q), o.find("td").html(m) }, fill: function() { var e, f, g = new Date(this.viewDate), h = g.getUTCFullYear(), i = g.getUTCMonth(), j = this.o.startDate !== -1 / 0 ? this.o.startDate.getUTCFullYear() : -1 / 0, k = this.o.startDate !== -1 / 0 ? this.o.startDate.getUTCMonth() : -1 / 0, l = this.o.endDate !== 1 / 0 ? this.o.endDate.getUTCFullYear() : 1 / 0, m = this.o.endDate !== 1 / 0 ? this.o.endDate.getUTCMonth() : 1 / 0, n = q[this.o.language].today || q.en.today || "", o = q[this.o.language].clear || q.en.clear || "", p = q[this.o.language].titleFormat || q.en.titleFormat, s = d(), t = (!0 === this.o.todayBtn || "linked" === this.o.todayBtn) && s >= this.o.startDate && s <= this.o.endDate && !this.weekOfDateIsDisabled(s); if (!isNaN(h) && !isNaN(i)) { this.picker.find(".datepicker-days .datepicker-switch").text(r.formatDate(g, p, this.o.language)), this.picker.find("tfoot .today").text(n).css("display", t ? "table-cell" : "none"), this.picker.find("tfoot .clear").text(o).css("display", !0 === this.o.clearBtn ? "table-cell" : "none"), this.picker.find("thead .datepicker-title").text(this.o.title).css("display", "string" == typeof this.o.title && "" !== this.o.title ? "table-cell" : "none"), this.updateNavArrows(), this.fillMonths(); var u = c(h, i, 0), v = u.getUTCDate(); u.setUTCDate(v - (u.getUTCDay() - this.o.weekStart + 7) % 7); var w = new Date(u); u.getUTCFullYear() < 100 && w.setUTCFullYear(u.getUTCFullYear()), w.setUTCDate(w.getUTCDate() + 42), w = w.valueOf(); for (var x, y, z = []; u.valueOf() < w;) { if ((x = u.getUTCDay()) === this.o.weekStart && (z.push(""), this.o.calendarWeeks)) { var A = new Date(+u + (this.o.weekStart - x - 7) % 7 * 864e5), B = new Date(Number(A) + (11 - A.getUTCDay()) % 7 * 864e5), C = new Date(Number(C = c(B.getUTCFullYear(), 0, 1)) + (11 - C.getUTCDay()) % 7 * 864e5), D = (B - C) / 864e5 / 7 + 1; z.push('' + D + "") } y = this.getClassNames(u), y.push("day"); var E = u.getUTCDate(); this.o.beforeShowDay !== a.noop && (f = this.o.beforeShowDay(this._utc_to_local(u)), f === b ? f = {} : "boolean" == typeof f ? f = { enabled: f } : "string" == typeof f && (f = { classes: f }), !1 === f.enabled && y.push("disabled"), f.classes && (y = y.concat(f.classes.split(/\s+/))), f.tooltip && (e = f.tooltip), f.content && (E = f.content)), y = a.isFunction(a.uniqueSort) ? a.uniqueSort(y) : a.unique(y), z.push('' + E + ""), e = null, x === this.o.weekEnd && z.push(""), u.setUTCDate(u.getUTCDate() + 1) } this.picker.find(".datepicker-days tbody").html(z.join("")); var F = q[this.o.language].monthsTitle || q.en.monthsTitle || "Months", G = this.picker.find(".datepicker-months").find(".datepicker-switch").text(this.o.maxViewMode < 2 ? F : h).end().find("tbody span").removeClass("active"); if (a.each(this.dates, function(a, b) { b.getUTCFullYear() === h && G.eq(b.getUTCMonth()).addClass("active") }), (h < j || h > l) && G.addClass("disabled"), h === j && G.slice(0, k).addClass("disabled"), h === l && G.slice(m + 1).addClass("disabled"), this.o.beforeShowMonth !== a.noop) { var H = this; a.each(G, function(c, d) { var e = new Date(h, c, 1), f = H.o.beforeShowMonth(e); f === b ? f = {} : "boolean" == typeof f ? f = { enabled: f } : "string" == typeof f && (f = { classes: f }), !1 !== f.enabled || a(d).hasClass("disabled") || a(d).addClass("disabled"), f.classes && a(d).addClass(f.classes), f.tooltip && a(d).prop("title", f.tooltip) }) } this._fill_yearsView(".datepicker-years", "year", 10, h, j, l, this.o.beforeShowYear), this._fill_yearsView(".datepicker-decades", "decade", 100, h, j, l, this.o.beforeShowDecade), this._fill_yearsView(".datepicker-centuries", "century", 1e3, h, j, l, this.o.beforeShowCentury) } }, updateNavArrows: function() { if (this._allow_update) { var a, b, c = new Date(this.viewDate), d = c.getUTCFullYear(), e = c.getUTCMonth(), f = this.o.startDate !== -1 / 0 ? this.o.startDate.getUTCFullYear() : -1 / 0, g = this.o.startDate !== -1 / 0 ? this.o.startDate.getUTCMonth() : -1 / 0, h = this.o.endDate !== 1 / 0 ? this.o.endDate.getUTCFullYear() : 1 / 0, i = this.o.endDate !== 1 / 0 ? this.o.endDate.getUTCMonth() : 1 / 0, j = 1; switch (this.viewMode) { case 4: j *= 10; case 3: j *= 10; case 2: j *= 10; case 1: a = Math.floor(d / j) * j <= f, b = Math.floor(d / j) * j + j > h; break; case 0: a = d <= f && e <= g, b = d >= h && e >= i }this.picker.find(".prev").toggleClass("disabled", a), this.picker.find(".next").toggleClass("disabled", b) } }, click: function(b) { b.preventDefault(), b.stopPropagation(); var e, f, g, h; e = a(b.target), e.hasClass("datepicker-switch") && this.viewMode !== this.o.maxViewMode && this.setViewMode(this.viewMode + 1), e.hasClass("today") && !e.hasClass("day") && (this.setViewMode(0), this._setDate(d(), "linked" === this.o.todayBtn ? null : "view")), e.hasClass("clear") && this.clearDates(), e.hasClass("disabled") || (e.hasClass("month") || e.hasClass("year") || e.hasClass("decade") || e.hasClass("century")) && (this.viewDate.setUTCDate(1), f = 1, 1 === this.viewMode ? (h = e.parent().find("span").index(e), g = this.viewDate.getUTCFullYear(), this.viewDate.setUTCMonth(h)) : (h = 0, g = Number(e.text()), this.viewDate.setUTCFullYear(g)), this._trigger(r.viewModes[this.viewMode - 1].e, this.viewDate), this.viewMode === this.o.minViewMode ? this._setDate(c(g, h, f)) : (this.setViewMode(this.viewMode - 1), this.fill())), this.picker.is(":visible") && this._focused_from && this._focused_from.focus(), delete this._focused_from }, dayCellClick: function(b) { var c = a(b.currentTarget), d = c.data("date"), e = new Date(d); this.o.updateViewDate && (e.getUTCFullYear() !== this.viewDate.getUTCFullYear() && this._trigger("changeYear", this.viewDate), e.getUTCMonth() !== this.viewDate.getUTCMonth() && this._trigger("changeMonth", this.viewDate)), this._setDate(e) }, navArrowsClick: function(b) { var c = a(b.currentTarget), d = c.hasClass("prev") ? -1 : 1; 0 !== this.viewMode && (d *= 12 * r.viewModes[this.viewMode].navStep), this.viewDate = this.moveMonth(this.viewDate, d), this._trigger(r.viewModes[this.viewMode].e, this.viewDate), this.fill() }, _toggle_multidate: function(a) { var b = this.dates.contains(a); if (a || this.dates.clear(), -1 !== b ? (!0 === this.o.multidate || this.o.multidate > 1 || this.o.toggleActive) && this.dates.remove(b) : !1 === this.o.multidate ? (this.dates.clear(), this.dates.push(a)) : this.dates.push(a), "number" == typeof this.o.multidate) for (; this.dates.length > this.o.multidate;)this.dates.remove(0) }, _setDate: function(a, b) { b && "date" !== b || this._toggle_multidate(a && new Date(a)), (!b && this.o.updateViewDate || "view" === b) && (this.viewDate = a && new Date(a)), this.fill(), this.setValue(), b && "view" === b || this._trigger("changeDate"), this.inputField.trigger("change"), !this.o.autoclose || b && "date" !== b || this.hide() }, moveDay: function(a, b) { var c = new Date(a); return c.setUTCDate(a.getUTCDate() + b), c }, moveWeek: function(a, b) { return this.moveDay(a, 7 * b) }, moveMonth: function(a, b) { if (!g(a)) return this.o.defaultViewDate; if (!b) return a; var c, d, e = new Date(a.valueOf()), f = e.getUTCDate(), h = e.getUTCMonth(), i = Math.abs(b); if (b = b > 0 ? 1 : -1, 1 === i) d = -1 === b ? function() { return e.getUTCMonth() === h } : function() { return e.getUTCMonth() !== c }, c = h + b, e.setUTCMonth(c), c = (c + 12) % 12; else { for (var j = 0; j < i; j++)e = this.moveMonth(e, b); c = e.getUTCMonth(), e.setUTCDate(f), d = function() { return c !== e.getUTCMonth() } } for (; d();)e.setUTCDate(--f), e.setUTCMonth(c); return e }, moveYear: function(a, b) { return this.moveMonth(a, 12 * b) }, moveAvailableDate: function(a, b, c) { do { if (a = this[c](a, b), !this.dateWithinRange(a)) return !1; c = "moveDay" } while (this.dateIsDisabled(a)); return a }, weekOfDateIsDisabled: function(b) { return -1 !== a.inArray(b.getUTCDay(), this.o.daysOfWeekDisabled) }, dateIsDisabled: function(b) { return this.weekOfDateIsDisabled(b) || a.grep(this.o.datesDisabled, function(a) { return e(b, a) }).length > 0 }, dateWithinRange: function(a) { return a >= this.o.startDate && a <= this.o.endDate }, keydown: function(a) { if (!this.picker.is(":visible")) return void (40 !== a.keyCode && 27 !== a.keyCode || (this.show(), a.stopPropagation())); var b, c, d = !1, e = this.focusDate || this.viewDate; switch (a.keyCode) { case 27: this.focusDate ? (this.focusDate = null, this.viewDate = this.dates.get(-1) || this.viewDate, this.fill()) : this.hide(), a.preventDefault(), a.stopPropagation(); break; case 37: case 38: case 39: case 40: if (!this.o.keyboardNavigation || 7 === this.o.daysOfWeekDisabled.length) break; b = 37 === a.keyCode || 38 === a.keyCode ? -1 : 1, 0 === this.viewMode ? a.ctrlKey ? (c = this.moveAvailableDate(e, b, "moveYear")) && this._trigger("changeYear", this.viewDate) : a.shiftKey ? (c = this.moveAvailableDate(e, b, "moveMonth")) && this._trigger("changeMonth", this.viewDate) : 37 === a.keyCode || 39 === a.keyCode ? c = this.moveAvailableDate(e, b, "moveDay") : this.weekOfDateIsDisabled(e) || (c = this.moveAvailableDate(e, b, "moveWeek")) : 1 === this.viewMode ? (38 !== a.keyCode && 40 !== a.keyCode || (b *= 4), c = this.moveAvailableDate(e, b, "moveMonth")) : 2 === this.viewMode && (38 !== a.keyCode && 40 !== a.keyCode || (b *= 4), c = this.moveAvailableDate(e, b, "moveYear")), c && (this.focusDate = this.viewDate = c, this.setValue(), this.fill(), a.preventDefault()); break; case 13: if (!this.o.forceParse) break; e = this.focusDate || this.dates.get(-1) || this.viewDate, this.o.keyboardNavigation && (this._toggle_multidate(e), d = !0), this.focusDate = null, this.viewDate = this.dates.get(-1) || this.viewDate, this.setValue(), this.fill(), this.picker.is(":visible") && (a.preventDefault(), a.stopPropagation(), this.o.autoclose && this.hide()); break; case 9: this.focusDate = null, this.viewDate = this.dates.get(-1) || this.viewDate, this.fill(), this.hide() }d && (this.dates.length ? this._trigger("changeDate") : this._trigger("clearDate"), this.inputField.trigger("change")) }, setViewMode: function(a) { this.viewMode = a, this.picker.children("div").hide().filter(".datepicker-" + r.viewModes[this.viewMode].clsName).show(), this.updateNavArrows(), this._trigger("changeViewMode", new Date(this.viewDate)) } }; var l = function(b, c) { a.data(b, "datepicker", this), this.element = a(b), this.inputs = a.map(c.inputs, function(a) { return a.jquery ? a[0] : a }), delete c.inputs, this.keepEmptyValues = c.keepEmptyValues, delete c.keepEmptyValues, n.call(a(this.inputs), c).on("changeDate", a.proxy(this.dateUpdated, this)), this.pickers = a.map(this.inputs, function(b) { return a.data(b, "datepicker") }), this.updateDates() }; l.prototype = { updateDates: function() { this.dates = a.map(this.pickers, function(a) { return a.getUTCDate() }), this.updateRanges() }, updateRanges: function() { var b = a.map(this.dates, function(a) { return a.valueOf() }); a.each(this.pickers, function(a, c) { c.setRange(b) }) }, clearDates: function() { a.each(this.pickers, function(a, b) { b.clearDates() }) }, dateUpdated: function(c) { if (!this.updating) { this.updating = !0; var d = a.data(c.target, "datepicker"); if (d !== b) { var e = d.getUTCDate(), f = this.keepEmptyValues, g = a.inArray(c.target, this.inputs), h = g - 1, i = g + 1, j = this.inputs.length; if (-1 !== g) { if (a.each(this.pickers, function(a, b) { b.getUTCDate() || b !== d && f || b.setUTCDate(e) }), e < this.dates[h]) for (; h >= 0 && e < this.dates[h];)this.pickers[h--].setUTCDate(e); else if (e > this.dates[i]) for (; i < j && e > this.dates[i];)this.pickers[i++].setUTCDate(e); this.updateDates(), delete this.updating } } } }, destroy: function() { a.map(this.pickers, function(a) { a.destroy() }), a(this.inputs).off("changeDate", this.dateUpdated), delete this.element.data().datepicker }, remove: f("destroy", "Method `remove` is deprecated and will be removed in version 2.0. Use `destroy` instead") }; var m = a.fn.datepicker, n = function(c) { var d = Array.apply(null, arguments); d.shift(); var e; if (this.each(function() { var b = a(this), f = b.data("datepicker"), g = "object" == typeof c && c; if (!f) { var j = h(this, "date"), m = a.extend({}, o, j, g), n = i(m.language), p = a.extend({}, o, n, j, g); b.hasClass("input-daterange") || p.inputs ? (a.extend(p, { inputs: p.inputs || b.find("input").toArray() }), f = new l(this, p)) : f = new k(this, p), b.data("datepicker", f) } "string" == typeof c && "function" == typeof f[c] && (e = f[c].apply(f, d)) }), e === b || e instanceof k || e instanceof l) return this; if (this.length > 1) throw new Error("Using only allowed for the collection of a single element (" + c + " function)"); return e }; a.fn.datepicker = n; var o = a.fn.datepicker.defaults = { assumeNearbyYear: !1, autoclose: !1, beforeShowDay: a.noop, beforeShowMonth: a.noop, beforeShowYear: a.noop, beforeShowDecade: a.noop, beforeShowCentury: a.noop, calendarWeeks: !1, clearBtn: !1, toggleActive: !1, daysOfWeekDisabled: [], daysOfWeekHighlighted: [], datesDisabled: [], endDate: 1 / 0, forceParse: !0, format: "mm/dd/yyyy", keepEmptyValues: !1, keyboardNavigation: !0, language: "en", minViewMode: 0, maxViewMode: 4, multidate: !1, multidateSeparator: ",", orientation: "auto", rtl: !1, startDate: -1 / 0, startView: 0, todayBtn: !1, todayHighlight: !1, updateViewDate: !0, weekStart: 0, disableTouchKeyboard: !1, enableOnReadonly: !0, showOnFocus: !0, zIndexOffset: 10, container: "body", immediateUpdates: !1, title: "", templates: { leftArrow: "«", rightArrow: "»" }, showWeekDays: !0 }, p = a.fn.datepicker.locale_opts = ["format", "rtl", "weekStart"]; a.fn.datepicker.Constructor = k; var q = a.fn.datepicker.dates = { en: { days: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"], daysShort: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"], daysMin: ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"], months: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"], monthsShort: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], today: "Today", clear: "Clear", titleFormat: "MM yyyy" } }, r = { + viewModes: [{ names: ["days", "month"], clsName: "days", e: "changeMonth" }, { names: ["months", "year"], clsName: "months", e: "changeYear", navStep: 1 }, { names: ["years", "decade"], clsName: "years", e: "changeDecade", navStep: 10 }, { names: ["decades", "century"], clsName: "decades", e: "changeCentury", navStep: 100 }, { names: ["centuries", "millennium"], clsName: "centuries", e: "changeMillennium", navStep: 1e3 }], validParts: /dd?|DD?|mm?|MM?|yy(?:yy)?/g, nonpunctuation: /[^ -\/:-@\u5e74\u6708\u65e5\[-`{-~\t\n\r]+/g, parseFormat: function(a) { if ("function" == typeof a.toValue && "function" == typeof a.toDisplay) return a; var b = a.replace(this.validParts, "\0").split("\0"), c = a.match(this.validParts); if (!b || !b.length || !c || 0 === c.length) throw new Error("Invalid date format."); return { separators: b, parts: c } }, parseDate: function(c, e, f, g) { function h(a, b) { return !0 === b && (b = 10), a < 100 && (a += 2e3) > (new Date).getFullYear() + b && (a -= 100), a } function i() { var a = this.slice(0, j[n].length), b = j[n].slice(0, a.length); return a.toLowerCase() === b.toLowerCase() } if (!c) return b; if (c instanceof Date) return c; if ("string" == typeof e && (e = r.parseFormat(e)), e.toValue) return e.toValue(c, e, f); var j, l, m, n, o, p = { d: "moveDay", m: "moveMonth", w: "moveWeek", y: "moveYear" }, s = { yesterday: "-1d", today: "+0d", tomorrow: "+1d" }; if (c in s && (c = s[c]), /^[\-+]\d+[dmwy]([\s,]+[\-+]\d+[dmwy])*$/i.test(c)) { for (j = c.match(/([\-+]\d+)([dmwy])/gi), c = new Date, n = 0; n < j.length; n++)l = j[n].match(/([\-+]\d+)([dmwy])/i), m = Number(l[1]), o = p[l[2].toLowerCase()], c = k.prototype[o](c, m); return k.prototype._zero_utc_time(c) } j = c && c.match(this.nonpunctuation) || []; var t, u, v = {}, w = ["yyyy", "yy", "M", "MM", "m", "mm", "d", "dd"], x = { yyyy: function(a, b) { return a.setUTCFullYear(g ? h(b, g) : b) }, m: function(a, b) { if (isNaN(a)) return a; for (b -= 1; b < 0;)b += 12; for (b %= 12, a.setUTCMonth(b); a.getUTCMonth() !== b;)a.setUTCDate(a.getUTCDate() - 1); return a }, d: function(a, b) { return a.setUTCDate(b) } }; x.yy = x.yyyy, x.M = x.MM = x.mm = x.m, x.dd = x.d, c = d(); var y = e.parts.slice(); if (j.length !== y.length && (y = a(y).filter(function(b, c) { return -1 !== a.inArray(c, w) }).toArray()), j.length === y.length) { var z; for (n = 0, z = y.length; n < z; n++) { if (t = parseInt(j[n], 10), l = y[n], isNaN(t)) switch (l) { case "MM": u = a(q[f].months).filter(i), t = a.inArray(u[0], q[f].months) + 1; break; case "M": u = a(q[f].monthsShort).filter(i), t = a.inArray(u[0], q[f].monthsShort) + 1 }v[l] = t } var A, B; for (n = 0; n < w.length; n++)(B = w[n]) in v && !isNaN(v[B]) && (A = new Date(c), x[B](A, v[B]), isNaN(A) || (c = A)) } return c }, formatDate: function(b, c, d) { if (!b) return ""; if ("string" == typeof c && (c = r.parseFormat(c)), c.toDisplay) return c.toDisplay(b, c, d); var e = { d: b.getUTCDate(), D: q[d].daysShort[b.getUTCDay()], DD: q[d].days[b.getUTCDay()], m: b.getUTCMonth() + 1, M: q[d].monthsShort[b.getUTCMonth()], MM: q[d].months[b.getUTCMonth()], yy: b.getUTCFullYear().toString().substring(2), yyyy: b.getUTCFullYear() }; e.dd = (e.d < 10 ? "0" : "") + e.d, e.mm = (e.m < 10 ? "0" : "") + e.m, b = []; for (var f = a.extend([], c.separators), g = 0, h = c.parts.length; g <= h; g++)f.length && b.push(f.shift()), b.push(e[c.parts[g]]); return b.join("") }, + headTemplate: '' + o.templates.leftArrow + '' + o.templates.rightArrow + "", contTemplate: '', footTemplate: '' + }; r.template = '
' + r.headTemplate + "" + r.footTemplate + '
' + r.headTemplate + r.contTemplate + r.footTemplate + '
' + r.headTemplate + r.contTemplate + r.footTemplate + '
' + r.headTemplate + r.contTemplate + r.footTemplate + '
' + r.headTemplate + r.contTemplate + r.footTemplate + "
", a.fn.datepicker.DPGlobal = r, a.fn.datepicker.noConflict = function() { return a.fn.datepicker = m, this }, a.fn.datepicker.version = "1.9.0", a.fn.datepicker.deprecated = function(a) { var b = window.console; b && b.warn && b.warn("DEPRECATED: " + a) }, a(document).on("focus.datepicker.data-api click.datepicker.data-api", '[data-provide="datepicker"]', function(b) { var c = a(this); c.data("datepicker") || (b.preventDefault(), n.call(c, "show")) }), a(function() { n.call(a('[data-provide="datepicker-inline"]')) }) +}); diff --git a/packages/base-design/Resources/Public/JavaScript/Dist/jquery-3.7.1.min.js b/packages/base-design/Resources/Public/JavaScript/Dist/jquery-3.7.1.min.js new file mode 100644 index 0000000..7f37b5d --- /dev/null +++ b/packages/base-design/Resources/Public/JavaScript/Dist/jquery-3.7.1.min.js @@ -0,0 +1,2 @@ +/*! jQuery v3.7.1 | (c) OpenJS Foundation and other contributors | jquery.org/license */ +!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(ie,e){"use strict";var oe=[],r=Object.getPrototypeOf,ae=oe.slice,g=oe.flat?function(e){return oe.flat.call(e)}:function(e){return oe.concat.apply([],e)},s=oe.push,se=oe.indexOf,n={},i=n.toString,ue=n.hasOwnProperty,o=ue.toString,a=o.call(Object),le={},v=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},y=function(e){return null!=e&&e===e.window},C=ie.document,u={type:!0,src:!0,nonce:!0,noModule:!0};function m(e,t,n){var r,i,o=(n=n||C).createElement("script");if(o.text=e,t)for(r in u)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function x(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[i.call(e)]||"object":typeof e}var t="3.7.1",l=/HTML$/i,ce=function(e,t){return new ce.fn.init(e,t)};function c(e){var t=!!e&&"length"in e&&e.length,n=x(e);return!v(e)&&!y(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+ge+")"+ge+"*"),x=new RegExp(ge+"|>"),j=new RegExp(g),A=new RegExp("^"+t+"$"),D={ID:new RegExp("^#("+t+")"),CLASS:new RegExp("^\\.("+t+")"),TAG:new RegExp("^("+t+"|[*])"),ATTR:new RegExp("^"+p),PSEUDO:new RegExp("^"+g),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+ge+"*(even|odd|(([+-]|)(\\d*)n|)"+ge+"*(?:([+-]|)"+ge+"*(\\d+)|))"+ge+"*\\)|)","i"),bool:new RegExp("^(?:"+f+")$","i"),needsContext:new RegExp("^"+ge+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+ge+"*((?:-\\d)?\\d*)"+ge+"*\\)|)(?=[^-]|$)","i")},N=/^(?:input|select|textarea|button)$/i,q=/^h\d$/i,L=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,H=/[+~]/,O=new RegExp("\\\\[\\da-fA-F]{1,6}"+ge+"?|\\\\([^\\r\\n\\f])","g"),P=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},M=function(){V()},R=J(function(e){return!0===e.disabled&&fe(e,"fieldset")},{dir:"parentNode",next:"legend"});try{k.apply(oe=ae.call(ye.childNodes),ye.childNodes),oe[ye.childNodes.length].nodeType}catch(e){k={apply:function(e,t){me.apply(e,ae.call(t))},call:function(e){me.apply(e,ae.call(arguments,1))}}}function I(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(V(e),e=e||T,C)){if(11!==p&&(u=L.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return k.call(n,a),n}else if(f&&(a=f.getElementById(i))&&I.contains(e,a)&&a.id===i)return k.call(n,a),n}else{if(u[2])return k.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&e.getElementsByClassName)return k.apply(n,e.getElementsByClassName(i)),n}if(!(h[t+" "]||d&&d.test(t))){if(c=t,f=e,1===p&&(x.test(t)||m.test(t))){(f=H.test(t)&&U(e.parentNode)||e)==e&&le.scope||((s=e.getAttribute("id"))?s=ce.escapeSelector(s):e.setAttribute("id",s=S)),o=(l=Y(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+Q(l[o]);c=l.join(",")}try{return k.apply(n,f.querySelectorAll(c)),n}catch(e){h(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return re(t.replace(ve,"$1"),e,n,r)}function W(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function F(e){return e[S]=!0,e}function $(e){var t=T.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function B(t){return function(e){return fe(e,"input")&&e.type===t}}function _(t){return function(e){return(fe(e,"input")||fe(e,"button"))&&e.type===t}}function z(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&R(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function X(a){return F(function(o){return o=+o,F(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function U(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}function V(e){var t,n=e?e.ownerDocument||e:ye;return n!=T&&9===n.nodeType&&n.documentElement&&(r=(T=n).documentElement,C=!ce.isXMLDoc(T),i=r.matches||r.webkitMatchesSelector||r.msMatchesSelector,r.msMatchesSelector&&ye!=T&&(t=T.defaultView)&&t.top!==t&&t.addEventListener("unload",M),le.getById=$(function(e){return r.appendChild(e).id=ce.expando,!T.getElementsByName||!T.getElementsByName(ce.expando).length}),le.disconnectedMatch=$(function(e){return i.call(e,"*")}),le.scope=$(function(){return T.querySelectorAll(":scope")}),le.cssHas=$(function(){try{return T.querySelector(":has(*,:jqfake)"),!1}catch(e){return!0}}),le.getById?(b.filter.ID=function(e){var t=e.replace(O,P);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&C){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(O,P);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&C){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):t.querySelectorAll(e)},b.find.CLASS=function(e,t){if("undefined"!=typeof t.getElementsByClassName&&C)return t.getElementsByClassName(e)},d=[],$(function(e){var t;r.appendChild(e).innerHTML="",e.querySelectorAll("[selected]").length||d.push("\\["+ge+"*(?:value|"+f+")"),e.querySelectorAll("[id~="+S+"-]").length||d.push("~="),e.querySelectorAll("a#"+S+"+*").length||d.push(".#.+[+~]"),e.querySelectorAll(":checked").length||d.push(":checked"),(t=T.createElement("input")).setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),r.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&d.push(":enabled",":disabled"),(t=T.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||d.push("\\["+ge+"*name"+ge+"*="+ge+"*(?:''|\"\")")}),le.cssHas||d.push(":has"),d=d.length&&new RegExp(d.join("|")),l=function(e,t){if(e===t)return a=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!le.sortDetached&&t.compareDocumentPosition(e)===n?e===T||e.ownerDocument==ye&&I.contains(ye,e)?-1:t===T||t.ownerDocument==ye&&I.contains(ye,t)?1:o?se.call(o,e)-se.call(o,t):0:4&n?-1:1)}),T}for(e in I.matches=function(e,t){return I(e,null,null,t)},I.matchesSelector=function(e,t){if(V(e),C&&!h[t+" "]&&(!d||!d.test(t)))try{var n=i.call(e,t);if(n||le.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){h(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(O,P),e[3]=(e[3]||e[4]||e[5]||"").replace(O,P),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||I.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&I.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return D.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&j.test(n)&&(t=Y(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(O,P).toLowerCase();return"*"===e?function(){return!0}:function(e){return fe(e,t)}},CLASS:function(e){var t=s[e+" "];return t||(t=new RegExp("(^|"+ge+")"+e+"("+ge+"|$)"))&&s(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=I.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function T(e,n,r){return v(n)?ce.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?ce.grep(e,function(e){return e===n!==r}):"string"!=typeof n?ce.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(ce.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||k,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:S.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof ce?t[0]:t,ce.merge(this,ce.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:C,!0)),w.test(r[1])&&ce.isPlainObject(t))for(r in t)v(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=C.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):v(e)?void 0!==n.ready?n.ready(e):e(ce):ce.makeArray(e,this)}).prototype=ce.fn,k=ce(C);var E=/^(?:parents|prev(?:Until|All))/,j={children:!0,contents:!0,next:!0,prev:!0};function A(e,t){while((e=e[t])&&1!==e.nodeType);return e}ce.fn.extend({has:function(e){var t=ce(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,Ce=/^$|^module$|\/(?:java|ecma)script/i;xe=C.createDocumentFragment().appendChild(C.createElement("div")),(be=C.createElement("input")).setAttribute("type","radio"),be.setAttribute("checked","checked"),be.setAttribute("name","t"),xe.appendChild(be),le.checkClone=xe.cloneNode(!0).cloneNode(!0).lastChild.checked,xe.innerHTML="",le.noCloneChecked=!!xe.cloneNode(!0).lastChild.defaultValue,xe.innerHTML="",le.option=!!xe.lastChild;var ke={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function Se(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&fe(e,t)?ce.merge([e],n):n}function Ee(e,t){for(var n=0,r=e.length;n",""]);var je=/<|&#?\w+;/;function Ae(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function Re(e,t){return fe(e,"table")&&fe(11!==t.nodeType?t:t.firstChild,"tr")&&ce(e).children("tbody")[0]||e}function Ie(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function We(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Fe(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(_.hasData(e)&&(s=_.get(e).events))for(i in _.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),C.head.appendChild(r[0])},abort:function(){i&&i()}}});var Jt,Kt=[],Zt=/(=)\?(?=&|$)|\?\?/;ce.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Kt.pop()||ce.expando+"_"+jt.guid++;return this[e]=!0,e}}),ce.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Zt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Zt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=v(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Zt,"$1"+r):!1!==e.jsonp&&(e.url+=(At.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||ce.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=ie[r],ie[r]=function(){o=arguments},n.always(function(){void 0===i?ce(ie).removeProp(r):ie[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Kt.push(r)),o&&v(i)&&i(o[0]),o=i=void 0}),"script"}),le.createHTMLDocument=((Jt=C.implementation.createHTMLDocument("").body).innerHTML="
",2===Jt.childNodes.length),ce.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(le.createHTMLDocument?((r=(t=C.implementation.createHTMLDocument("")).createElement("base")).href=C.location.href,t.head.appendChild(r)):t=C),o=!n&&[],(i=w.exec(e))?[t.createElement(i[1])]:(i=Ae([e],t,o),o&&o.length&&ce(o).remove(),ce.merge([],i.childNodes)));var r,i,o},ce.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(ce.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},ce.expr.pseudos.animated=function(t){return ce.grep(ce.timers,function(e){return t===e.elem}).length},ce.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=ce.css(e,"position"),c=ce(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=ce.css(e,"top"),u=ce.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),v(t)&&(t=t.call(e,n,ce.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},ce.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){ce.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===ce.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===ce.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=ce(e).offset()).top+=ce.css(e,"borderTopWidth",!0),i.left+=ce.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-ce.css(r,"marginTop",!0),left:t.left-i.left-ce.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===ce.css(e,"position"))e=e.offsetParent;return e||J})}}),ce.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;ce.fn[t]=function(e){return M(this,function(e,t,n){var r;if(y(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),ce.each(["top","left"],function(e,n){ce.cssHooks[n]=Ye(le.pixelPosition,function(e,t){if(t)return t=Ge(e,n),_e.test(t)?ce(e).position()[n]+"px":t})}),ce.each({Height:"height",Width:"width"},function(a,s){ce.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){ce.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return M(this,function(e,t,n){var r;return y(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?ce.css(e,t,i):ce.style(e,t,n,i)},s,n?e:void 0,n)}})}),ce.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){ce.fn[t]=function(e){return this.on(t,e)}}),ce.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.on("mouseenter",e).on("mouseleave",t||e)}}),ce.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){ce.fn[n]=function(e,t){return 0', { id: options.popupId }); + // grab body element if it was not populated when the script loaded + // note: this hack exists solely for jsfiddle support + if ($body.length === 0) { + $body = $('body'); + } + $body.append(tipElement); + } + + // hook mousemove for cursor follow tooltips + if (options.followMouse) { + // only one positionTipOnCursor hook per tooltip element, please + if (!tipElement.data(DATA_HASMOUSEMOVE)) { + $document.on('mousemove', positionTipOnCursor); + $window.on('scroll', positionTipOnCursor); + tipElement.data(DATA_HASMOUSEMOVE, true); + } + } + + // if we want to be able to mouse onto the tooltip then we need to attach + // hover events to the tooltip that will cancel a close request on hover and + // start a new close request on mouseleave + if (options.mouseOnToPopup) { + tipElement.on({ + mouseenter: function tipMouseEnter() { + // we only let the mouse stay on the tooltip if it is set to let + // users interact with it + if (tipElement.data(DATA_MOUSEONTOTIP)) { + // check activeHover in case the mouse cursor entered the + // tooltip during the fadeOut and close cycle + if (session.activeHover) { + session.activeHover.data(DATA_DISPLAYCONTROLLER).cancel(); + } + } + }, + mouseleave: function tipMouseLeave() { + // check activeHover in case the mouse cursor entered the + // tooltip during the fadeOut and close cycle + if (session.activeHover) { + session.activeHover.data(DATA_DISPLAYCONTROLLER).hide(); + } + } + }); + } + + /** + * Gives the specified element the active-hover state and queues up the + * showTip function. + * @private + * @param {jQuery} element The element that the tooltip should target. + */ + function beginShowTip(element) { + element.data(DATA_HASACTIVEHOVER, true); + // show tooltip, asap + tipElement.queue(function queueTipInit(next) { + showTip(element); + next(); + }); + } + + /** + * Shows the tooltip, as soon as possible. + * @private + * @param {jQuery} element The element that the tooltip should target. + */ + function showTip(element) { + var tipContent; + + // it is possible, especially with keyboard navigation, to move on to + // another element with a tooltip during the queue to get to this point + // in the code. if that happens then we need to not proceed or we may + // have the fadeout callback for the last tooltip execute immediately + // after this code runs, causing bugs. + if (!element.data(DATA_HASACTIVEHOVER)) { + return; + } + + // if the tooltip is open and we got asked to open another one then the + // old one is still in its fadeOut cycle, so wait and try again + if (session.isTipOpen) { + if (!session.isClosing) { + hideTip(session.activeHover); + } + tipElement.delay(100).queue(function queueTipAgain(next) { + showTip(element); + next(); + }); + return; + } + + // trigger powerTipPreRender event + element.trigger('powerTipPreRender'); + + // set tooltip content + tipContent = getTooltipContent(element); + if (tipContent) { + tipElement.empty().append(tipContent); + } else { + // we have no content to display, give up + return; + } + + // trigger powerTipRender event + element.trigger('powerTipRender'); + + session.activeHover = element; + session.isTipOpen = true; + + tipElement.data(DATA_MOUSEONTOTIP, options.mouseOnToPopup); + + // set tooltip position + if (!options.followMouse) { + positionTipOnElement(element); + session.isFixedTipOpen = true; + } else { + positionTipOnCursor(); + } + + // fadein + tipElement.fadeIn(options.fadeInTime, function fadeInCallback() { + // start desync polling + if (!session.desyncTimeout) { + session.desyncTimeout = setInterval(closeDesyncedTip, 500); + } + + // trigger powerTipOpen event + element.trigger('powerTipOpen'); + }); + } + + /** + * Hides the tooltip. + * @private + * @param {jQuery} element The element that the tooltip should target. + */ + function hideTip(element) { + // reset session + session.isClosing = true; + session.activeHover = null; + session.isTipOpen = false; + + // stop desync polling + session.desyncTimeout = clearInterval(session.desyncTimeout); + + // reset element state + element.data(DATA_HASACTIVEHOVER, false); + element.data(DATA_FORCEDOPEN, false); + + // fade out + tipElement.fadeOut(options.fadeOutTime, function fadeOutCallback() { + var coords = new CSSCoordinates(); + + // reset session and tooltip element + session.isClosing = false; + session.isFixedTipOpen = false; + tipElement.removeClass(); + + // support mouse-follow and fixed position tips at the same time by + // moving the tooltip to the last cursor location after it is hidden + coords.set('top', session.currentY + options.offset); + coords.set('left', session.currentX + options.offset); + tipElement.css(coords); + + // trigger powerTipClose event + element.trigger('powerTipClose'); + }); + } + + /** + * Moves the tooltip to the users mouse cursor. + * @private + */ + function positionTipOnCursor() { + // to support having fixed tooltips on the same page as cursor tooltips, + // where both instances are referencing the same tooltip element, we + // need to keep track of the mouse position constantly, but we should + // only set the tip location if a fixed tip is not currently open, a tip + // open is imminent or active, and the tooltip element in question does + // have a mouse-follow using it. + if (!session.isFixedTipOpen && (session.isTipOpen || (session.tipOpenImminent && tipElement.data(DATA_HASMOUSEMOVE)))) { + // grab measurements + var tipWidth = tipElement.outerWidth(), + tipHeight = tipElement.outerHeight(), + coords = new CSSCoordinates(), + collisions, + collisionCount; + + // grab collisions + coords.set('top', session.currentY + options.offset); + coords.set('left', session.currentX + options.offset); + collisions = getViewportCollisions( + coords, + tipWidth, + tipHeight + ); + + // handle tooltip view port collisions + if (collisions !== Collision.none) { + collisionCount = countFlags(collisions); + if (collisionCount === 1) { + // if there is only one collision (bottom or right) then + // simply constrain the tooltip to the view port + if (collisions === Collision.right) { + coords.set('left', session.windowWidth - tipWidth); + } else if (collisions === Collision.bottom) { + coords.set('top', session.scrollTop + session.windowHeight - tipHeight); + } + } else { + // if the tooltip has more than one collision then it is + // trapped in the corner and should be flipped to get it out + // of the users way + coords.set('left', session.currentX - tipWidth - options.offset); + coords.set('top', session.currentY - tipHeight - options.offset); + } + } + + // position the tooltip + tipElement.css(coords); + } + } + + /** + * Sets the tooltip to the correct position relative to the specified target + * element. Based on options settings. + * @private + * @param {jQuery} element The element that the tooltip should target. + */ + function positionTipOnElement(element) { + var priorityList, + finalPlacement; + + if (options.smartPlacement) { + priorityList = $.fn.powerTip.smartPlacementLists[options.placement]; + + // iterate over the priority list and use the first placement option + // that does not collide with the view port. if they all collide + // then the last placement in the list will be used. + $.each(priorityList, function(idx, pos) { + // place tooltip and find collisions + var collisions = getViewportCollisions( + placeTooltip(element, pos), + tipElement.outerWidth(), + tipElement.outerHeight() + ); + + // update the final placement variable + finalPlacement = pos; + + // break if there were no collisions + if (collisions === Collision.none) { + return false; + } + }); + } else { + // if we're not going to use the smart placement feature then just + // compute the coordinates and do it + placeTooltip(element, options.placement); + finalPlacement = options.placement; + } + + // add placement as class for CSS arrows + tipElement.addClass(finalPlacement); + } + + /** + * Sets the tooltip position to the appropriate values to show the tip at + * the specified placement. This function will iterate and test the tooltip + * to support elastic tooltips. + * @private + * @param {jQuery} element The element that the tooltip should target. + * @param {string} placement The placement for the tooltip. + * @return {CSSCoordinates} A CSSCoordinates object with the top, left, and + * right position values. + */ + function placeTooltip(element, placement) { + var iterationCount = 0, + tipWidth, + tipHeight, + coords = new CSSCoordinates(); + + // set the tip to 0,0 to get the full expanded width + coords.set('top', 0); + coords.set('left', 0); + tipElement.css(coords); + + // to support elastic tooltips we need to check for a change in the + // rendered dimensions after the tooltip has been positioned + do { + // grab the current tip dimensions + tipWidth = tipElement.outerWidth(); + tipHeight = tipElement.outerHeight(); + + // get placement coordinates + coords = placementCalculator.compute( + element, + placement, + tipWidth, + tipHeight, + options.offset + ); + + // place the tooltip + tipElement.css(coords); + } while ( + // sanity check: limit to 5 iterations, and... + ++iterationCount <= 5 && + // try again if the dimensions changed after placement + (tipWidth !== tipElement.outerWidth() || tipHeight !== tipElement.outerHeight()) + ); + + return coords; + } + + /** + * Checks for a tooltip desync and closes the tooltip if one occurs. + * @private + */ + function closeDesyncedTip() { + var isDesynced = false; + // It is possible for the mouse cursor to leave an element without + // firing the mouseleave or blur event. This most commonly happens when + // the element is disabled under mouse cursor. If this happens it will + // result in a desynced tooltip because the tooltip was never asked to + // close. So we should periodically check for a desync situation and + // close the tip if such a situation arises. + if (session.isTipOpen && !session.isClosing && !session.delayInProgress) { + // user moused onto another tip or active hover is disabled + if (session.activeHover.data(DATA_HASACTIVEHOVER) === false || session.activeHover.is(':disabled')) { + isDesynced = true; + } else { + // hanging tip - have to test if mouse position is not over the + // active hover and not over a tooltip set to let the user + // interact with it. + // for keyboard navigation: this only counts if the element does + // not have focus. + // for tooltips opened via the api: we need to check if it has + // the forcedOpen flag. + if (!isMouseOver(session.activeHover) && !session.activeHover.is(':focus') && !session.activeHover.data(DATA_FORCEDOPEN)) { + if (tipElement.data(DATA_MOUSEONTOTIP)) { + if (!isMouseOver(tipElement)) { + isDesynced = true; + } + } else { + isDesynced = true; + } + } + } + + if (isDesynced) { + // close the desynced tip + hideTip(session.activeHover); + } + } + } + + // expose methods + this.showTip = beginShowTip; + this.hideTip = hideTip; + this.resetPosition = positionTipOnElement; + } + + /** + * Determine whether a jQuery object is an SVG element + * @private + * @param {jQuery} element The element to check + * @return {boolean} Whether this is an SVG element + */ + function isSvgElement(element) { + return window.SVGElement && element[0] instanceof SVGElement; + } + + /** + * Initializes the viewport dimension cache and hooks up the mouse position + * tracking and viewport dimension tracking events. + * Prevents attaching the events more than once. + * @private + */ + function initTracking() { + if (!session.mouseTrackingActive) { + session.mouseTrackingActive = true; + + // grab the current viewport dimensions on load + $(function getViewportDimensions() { + session.scrollLeft = $window.scrollLeft(); + session.scrollTop = $window.scrollTop(); + session.windowWidth = $window.width(); + session.windowHeight = $window.height(); + }); + + // hook mouse move tracking + $document.on('mousemove', trackMouse); + + // hook viewport dimensions tracking + $window.on({ + resize: function trackResize() { + session.windowWidth = $window.width(); + session.windowHeight = $window.height(); + }, + scroll: function trackScroll() { + var x = $window.scrollLeft(), + y = $window.scrollTop(); + if (x !== session.scrollLeft) { + session.currentX += x - session.scrollLeft; + session.scrollLeft = x; + } + if (y !== session.scrollTop) { + session.currentY += y - session.scrollTop; + session.scrollTop = y; + } + } + }); + } + } + + /** + * Saves the current mouse coordinates to the session object. + * @private + * @param {jQuery.Event} event The mousemove event for the document. + */ + function trackMouse(event) { + session.currentX = event.pageX; + session.currentY = event.pageY; + } + + /** + * Tests if the mouse is currently over the specified element. + * @private + * @param {jQuery} element The element to check for hover. + * @return {boolean} + */ + function isMouseOver(element) { + // use getBoundingClientRect() because jQuery's width() and height() + // methods do not work with SVG elements + // compute width/height because those properties do not exist on the object + // returned by getBoundingClientRect() in older versions of IE + var elementPosition = element.offset(), + elementBox = element[0].getBoundingClientRect(), + elementWidth = elementBox.right - elementBox.left, + elementHeight = elementBox.bottom - elementBox.top; + + return session.currentX >= elementPosition.left && + session.currentX <= elementPosition.left + elementWidth && + session.currentY >= elementPosition.top && + session.currentY <= elementPosition.top + elementHeight; + } + + /** + * Fetches the tooltip content from the specified element's data attributes. + * @private + * @param {jQuery} element The element to get the tooltip content for. + * @return {(string|jQuery|undefined)} The text/HTML string, jQuery object, or + * undefined if there was no tooltip content for the element. + */ + function getTooltipContent(element) { + var tipText = element.data(DATA_POWERTIP), + tipObject = element.data(DATA_POWERTIPJQ), + tipTarget = element.data(DATA_POWERTIPTARGET), + targetElement, + content; + + if (tipText) { + if ($.isFunction(tipText)) { + tipText = tipText.call(element[0]); + } + content = tipText; + } else if (tipObject) { + if ($.isFunction(tipObject)) { + tipObject = tipObject.call(element[0]); + } + if (tipObject.length > 0) { + content = tipObject.clone(true, true); + } + } else if (tipTarget) { + targetElement = $('#' + tipTarget); + if (targetElement.length > 0) { + content = targetElement.html(); + } + } + + return content; + } + + /** + * Finds any viewport collisions that an element (the tooltip) would have if it + * were absolutely positioned at the specified coordinates. + * @private + * @param {CSSCoordinates} coords Coordinates for the element. + * @param {number} elementWidth Width of the element in pixels. + * @param {number} elementHeight Height of the element in pixels. + * @return {number} Value with the collision flags. + */ + function getViewportCollisions(coords, elementWidth, elementHeight) { + var viewportTop = session.scrollTop, + viewportLeft = session.scrollLeft, + viewportBottom = viewportTop + session.windowHeight, + viewportRight = viewportLeft + session.windowWidth, + collisions = Collision.none; + + if (coords.top < viewportTop || Math.abs(coords.bottom - session.windowHeight) - elementHeight < viewportTop) { + collisions |= Collision.top; + } + if (coords.top + elementHeight > viewportBottom || Math.abs(coords.bottom - session.windowHeight) > viewportBottom) { + collisions |= Collision.bottom; + } + if (coords.left < viewportLeft || coords.right + elementWidth > viewportRight) { + collisions |= Collision.left; + } + if (coords.left + elementWidth > viewportRight || coords.right < viewportLeft) { + collisions |= Collision.right; + } + + return collisions; + } + + /** + * Counts the number of bits set on a flags value. + * @param {number} value The flags value. + * @return {number} The number of bits that have been set. + */ + function countFlags(value) { + var count = 0; + while (value) { + value &= value - 1; + count++; + } + return count; + } + +})); \ No newline at end of file diff --git a/packages/base-design/Resources/Public/JavaScript/matomo.js b/packages/base-design/Resources/Public/JavaScript/matomo.js new file mode 100644 index 0000000..7f8ee08 --- /dev/null +++ b/packages/base-design/Resources/Public/JavaScript/matomo.js @@ -0,0 +1,11 @@ +var _paq = window._paq = window._paq || []; +/* tracker methods like "setCustomDimension" should be called before "trackPageView" */ +_paq.push(['trackPageView']); +_paq.push(['enableLinkTracking']); +(function() { + var u="https://matomo.cloonar.com/"; + _paq.push(['setTrackerUrl', u+'matomo.php']); + _paq.push(['setSiteId', '6']); + var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0]; + g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s); +})(); diff --git a/packages/base-design/Resources/Public/JavaScript/meta-nav.js b/packages/base-design/Resources/Public/JavaScript/meta-nav.js new file mode 100644 index 0000000..cb702e2 --- /dev/null +++ b/packages/base-design/Resources/Public/JavaScript/meta-nav.js @@ -0,0 +1,7 @@ +(function($) { + console.log("test"); + $('#meta_menu').click(function (e) { + console.log("test"); + $('#meta_menu').toggleClass('opened'); + }); +}(jQuery || $)); diff --git a/packages/base-design/Resources/Public/JavaScript/newsAjaxPagination.js b/packages/base-design/Resources/Public/JavaScript/newsAjaxPagination.js new file mode 100644 index 0000000..6cc4d0d --- /dev/null +++ b/packages/base-design/Resources/Public/JavaScript/newsAjaxPagination.js @@ -0,0 +1,31 @@ +document.querySelectorAll('.f3-widget-paginator a').forEach(function (el) { + el.addEventListener('click', newsAjaxHandler); +}); + +function newsAjaxHandler(e) { + var ajaxUrl = e.target.getAttribute('href'); + if (ajaxUrl !== undefined && ajaxUrl !== '') { + e.preventDefault(); + history.pushState(null, '', ajaxUrl.split('?')[0]); + var container = e.target.closest('.frame').getAttribute('id'); + document.getElementById(container).classList.add('loading'); + var xhr = new XMLHttpRequest(); + xhr.open('GET', ajaxUrl, true); + xhr.onreadystatechange = function() { + if (xhr.readyState === 4 && xhr.status === 200) { + var parser = new DOMParser(); + var result = parser.parseFromString(xhr.responseText, 'text/html'); + var ajaxDom = result.getElementById(container); + ajaxDom.querySelectorAll('.f3-widget-paginator a').forEach(function (el) { + el.addEventListener('click', newsAjaxHandler); + }); + document.getElementById(container).replaceWith(ajaxDom); + window.scrollTo({ + top: document.getElementById(container).offsetTop - 111, + behavior: 'smooth' + }); + } + }; + xhr.send(); + } +} diff --git a/packages/base-design/Resources/Public/JavaScript/search.js b/packages/base-design/Resources/Public/JavaScript/search.js new file mode 100644 index 0000000..4681735 --- /dev/null +++ b/packages/base-design/Resources/Public/JavaScript/search.js @@ -0,0 +1,15 @@ +const searchButton = document.querySelector(".search-wrap button"); +searchButton.addEventListener("click", function (e) { + if(window.innerWidth < 992) return; + e.preventDefault(); + if (!searchButton.parentElement.parentElement.parentElement.classList.contains('opened')) { + searchButton.parentElement.parentElement.parentElement.classList.add('opened'); + searchButton.parentElement.previousElementSibling.focus(); + } else { + if (searchButton.parentElement.previousElementSibling.value != '') { + searchButton.closest('form').submit(); + } else { + searchButton.parentElement.parentElement.parentElement.classList.remove('opened'); + } + } +}); diff --git a/packages/base-design/Resources/Public/Scss/Elements/elements.scss b/packages/base-design/Resources/Public/Scss/Elements/elements.scss new file mode 100644 index 0000000..e69de29 diff --git a/packages/base-design/Resources/Public/Scss/Layout/_fonts.scss b/packages/base-design/Resources/Public/Scss/Layout/_fonts.scss new file mode 100644 index 0000000..fbacb6d --- /dev/null +++ b/packages/base-design/Resources/Public/Scss/Layout/_fonts.scss @@ -0,0 +1,3 @@ +body { + font-family: 'sans-serif' +} diff --git a/packages/base-design/Resources/Public/Scss/Layout/_footer.scss b/packages/base-design/Resources/Public/Scss/Layout/_footer.scss new file mode 100644 index 0000000..e69de29 diff --git a/packages/base-design/Resources/Public/Scss/Layout/_form.scss b/packages/base-design/Resources/Public/Scss/Layout/_form.scss new file mode 100644 index 0000000..e69de29 diff --git a/packages/base-design/Resources/Public/Scss/Layout/_frame.scss b/packages/base-design/Resources/Public/Scss/Layout/_frame.scss new file mode 100644 index 0000000..eeb90bb --- /dev/null +++ b/packages/base-design/Resources/Public/Scss/Layout/_frame.scss @@ -0,0 +1,21 @@ +:root { + --frame-outer-spacing-variant-zero: 0; + --frame-outer-spacing-variant-none: 2rem; + --frame-outer-spacing-variant-extra-large: 10rem; +} + +.frame-space-after-none { + --frame-outer-spacing-after: var(--frame-outer-spacing-variant-none) !important; +} + +.frame-space-before-none { + --frame-outer-spacing-before: var(--frame-outer-spacing-variant-none) !important; +} + +.frame-space-after-zero { + --frame-outer-spacing-after: var(--frame-outer-spacing-variant-zero); +} + +.frame-space-before-zero { + --frame-outer-spacing-before: var(--frame-outer-spacing-variant-zero); +} diff --git a/packages/base-design/Resources/Public/Scss/Layout/_search.scss b/packages/base-design/Resources/Public/Scss/Layout/_search.scss new file mode 100644 index 0000000..e69de29 diff --git a/packages/base-design/Resources/Public/Scss/Layout/_text.scss b/packages/base-design/Resources/Public/Scss/Layout/_text.scss new file mode 100644 index 0000000..720b471 --- /dev/null +++ b/packages/base-design/Resources/Public/Scss/Layout/_text.scss @@ -0,0 +1,35 @@ +h1, h2, h3, h4, h5, h6 { + font-weight: 500; + color: $primary; +} + +.frame-background-primary { + color: $white; + + .btn-primary { + background: $white; + color: $primary; + } + + h1, h2, h3, h4, h5, h6 { + color: $white; + } +} + +.frame-background-light { + +} + +a { + text-decoration: none; +} + +.btn { + border-radius: 0; + border: none; + box-shadow: none; +} + +.btn-primary { + color: $white; +} diff --git a/packages/base-design/Resources/Public/Scss/Layout/layout.scss b/packages/base-design/Resources/Public/Scss/Layout/layout.scss new file mode 100644 index 0000000..da7c6f7 --- /dev/null +++ b/packages/base-design/Resources/Public/Scss/Layout/layout.scss @@ -0,0 +1,6 @@ +@import "fonts"; +@import "footer"; +@import "form"; +@import "frame"; +@import "search"; +@import "text"; diff --git a/packages/base-design/Resources/Public/Scss/main.scss b/packages/base-design/Resources/Public/Scss/main.scss new file mode 100644 index 0000000..b86fbd3 --- /dev/null +++ b/packages/base-design/Resources/Public/Scss/main.scss @@ -0,0 +1,22 @@ +@import "../../../../../vendor/bk2k/bootstrap-package/Resources/Public/Scss/bootstrap5/theme.scss"; + +@import "Layout/layout"; +@import "Elements/elements"; + +.frame { + &.loading { + position: relative; + + &:before { + content: ' '; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + z-index: 1; + background: rgba(255, 255, 255, .5); + } + } +} + diff --git a/packages/base-design/composer.json b/packages/base-design/composer.json new file mode 100644 index 0000000..2abfbb8 --- /dev/null +++ b/packages/base-design/composer.json @@ -0,0 +1,32 @@ +{ + "name": "cloonar-typo3/base-design", + "authors": [ + { + "name": "Dominik Polakovics", + "role": "Developer", + "homepage": "https://www.cloonar.com" + } + ], + "type": "typo3-cms-extension", + "description": "Template for Typo3 extending bootstrap package", + "homepage": "https://www.cloonar.com", + "require": { + "bk2k/bootstrap-package": "^15.0" + }, + "autoload": { + "psr-4": { + "Cloonar\\BaseDesign\\": "Classes" + } + }, + "extra": { + "typo3/cms": { + "extension-key": "base_design" + } + }, + "config": { + "allow-plugins": { + "typo3/cms-composer-installers": true, + "typo3/class-alias-loader": true + } + } +} diff --git a/packages/base-design/ext_emconf.php b/packages/base-design/ext_emconf.php new file mode 100644 index 0000000..523be14 --- /dev/null +++ b/packages/base-design/ext_emconf.php @@ -0,0 +1,20 @@ + 'Base Design Package', + 'description' => 'Base Design Customization.', + 'category' => 'templates', + 'autoload' => [ + 'psr-4' => [ + 'Cloonar\\BaseDesign\\' => 'Classes' + ], + ], + 'state' => 'stable', + 'uploadfolder' => true, + 'createDirs' => '', + 'clearCacheOnLoad' => 1, + 'author' => 'Dominik Polakovics', + 'author_email' => 'dominik.polakovics@cloonar.com', + 'author_company' => 'private', + 'version' => '1.0.0', +); diff --git a/packages/base-design/ext_localconf.php b/packages/base-design/ext_localconf.php new file mode 100644 index 0000000..2c22de3 --- /dev/null +++ b/packages/base-design/ext_localconf.php @@ -0,0 +1,39 @@ +