From 7ae48ccd1c93a0176e90b120554bd692c63898f3 Mon Sep 17 00:00:00 2001 From: Alex Kellner Date: Thu, 9 Jun 2016 16:16:24 +0200 Subject: [PATCH] [TASK] Create extension in2frontendauthentication Initial commit --- .gitignore | 15 +++++++++++++++ ext_emconf.php | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 61 insertions(+) create mode 100644 .gitignore create mode 100644 ext_emconf.php diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2799dfc --- /dev/null +++ b/.gitignore @@ -0,0 +1,15 @@ +msi.iws +.idea/ +nbproject/ +.DS_Store +.DS_Store? +._* +.Spotlight-V100 +.Trashes +ehthumbs.db +Thumbs.db +.svn +.sass-cache +node_modules/ +.sass-cache/ +npm-debug.log diff --git a/ext_emconf.php b/ext_emconf.php new file mode 100644 index 0000000..618ce2d --- /dev/null +++ b/ext_emconf.php @@ -0,0 +1,46 @@ + 'in2frontendauthentication', + 'description' => 'Authenticate every visitor as a defined frontend user if IP matches', + 'category' => 'plugin', + 'shy' => 0, + 'version' => '1.0.0', + 'dependencies' => 'cms,extbase,fluid', + 'conflicts' => '', + 'priority' => '', + 'loadOrder' => '', + 'module' => '', + 'state' => 'stable', + 'uploadfolder' => 0, + 'createDirs' => '', + 'modify_tables' => '', + 'clearcacheonload' => 1, + 'lockType' => '', + 'author' => 'Alex Kellner', + 'author_email' => 'alexander.kellner@in2code.de', + 'author_company' => 'in2code.de', + 'CGLcompliance' => '', + 'CGLcompliance_note' => '', + 'constraints' => [ + 'depends' => [ + 'typo3' => '7.6.0-8.99.99', + 'extbase' => '7.6.0-8.99.99', + 'fluid' => '7.6.0-8.99.99', + 'php' => '5.5.0-0.0.0' + ], + 'conflicts' => [], + 'suggests' => [], + ], + '_md5_values_when_last_written' => '', +];