├── .gitignore ├── Resources ├── Public │ ├── Icons │ │ ├── relation.gif │ │ ├── code-signs.svg │ │ ├── Extension.svg │ │ ├── cookie_panel_icon.svg │ │ └── cookie_grp.svg │ ├── Css │ │ ├── cookie_panel.css.map │ │ ├── cookie_panel.less │ │ └── cookie_panel.css │ └── Js │ │ └── om_cookie_main.js └── Private │ ├── Layouts │ └── Default.html │ ├── .htaccess │ ├── Templates │ └── CookiePanel │ │ ├── Info.html │ │ └── Show.html │ └── Language │ ├── locallang.xlf │ ├── de.locallang.xlf │ ├── locallang_db.xlf │ └── de.locallang_db.xlf ├── Configuration ├── Services.yaml ├── TCA │ ├── Overrides │ │ ├── sys_template.php │ │ ├── tx_omcookiemanager_domain_model_cookie.php │ │ ├── tx_omcookiemanager_domain_model_cookiehtml.php │ │ ├── tx_omcookiemanager_domain_model_cookiegroup.php │ │ ├── tx_omcookiemanager_domain_model_cookiepanel.php │ │ ├── tt_content.php │ │ └── tx_omcookiemanager_domain_model_general.php │ ├── tx_omcookiemanager_domain_model_cookiehtml.php │ ├── tx_omcookiemanager_domain_model_cookie.php │ ├── tx_omcookiemanager_domain_model_cookiegroup.php │ └── tx_omcookiemanager_domain_model_cookiepanel.php ├── Icons.php ├── page.tsconfig └── TypoScript │ ├── setup.typoscript │ └── constants.typoscript ├── Documentation ├── Sitemap.rst ├── Includes.txt ├── Index.rst └── Settings.cfg ├── ext_conf_template.txt ├── Classes ├── Domain │ ├── Repository │ │ ├── CookieRepository.php │ │ ├── CookieGroupRepository.php │ │ └── CookiePanelRepository.php │ └── Model │ │ ├── CookieHtml.php │ │ ├── CookiePanel.php │ │ ├── CookieGroup.php │ │ └── Cookie.php ├── Updates │ └── OMOmCookieManagerCTypeMigration.php ├── Hook │ ├── ProcessCmdmapClass.php │ └── ProcessDatamapClass.php ├── Controller │ ├── CookieGroupController.php │ └── CookiePanelController.php └── Utility │ └── JsBuilder.php ├── composer.json ├── ext_emconf.php ├── ext_localconf.php ├── ext_tables.sql ├── readme.txt └── LICENSE /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ -------------------------------------------------------------------------------- /Resources/Public/Icons/relation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xippo/OM-Cookie-Manager/HEAD/Resources/Public/Icons/relation.gif -------------------------------------------------------------------------------- /Configuration/Services.yaml: -------------------------------------------------------------------------------- 1 | services: 2 | _defaults: 3 | autowire: true 4 | autoconfigure: true 5 | public: false 6 | 7 | OM\OmCookieManager\: 8 | resource: '../Classes/*' 9 | -------------------------------------------------------------------------------- /Configuration/TCA/Overrides/sys_template.php: -------------------------------------------------------------------------------- 1 | 2 |
5 |