Skip to content

Commit

Permalink
cleanup: remove frontend edit related code examples and config
Browse files Browse the repository at this point in the history
  • Loading branch information
tgaertner committed Aug 21, 2024
1 parent a553e4b commit 932b953
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ Include the static TypoScript template "TYPO3 Toolbox" or directly import it in

See `ext_localconf.php` for additional configuration options.

E.g. enabling the feature toggle for frontend editing:
E.g. disabling the toolbar-item feature:

``` php
$GLOBALS['TYPO3_CONF_VARS']['EXTENSIONS']['xima_typo3_toolbox']['frontendEditing']['enable'] = true;
$GLOBALS['TYPO3_CONF_VARS']['EXTENSIONS'][Configuration::EXT_KEY]['toolbarItem']['enable'] = false;
```

## Features
Expand Down
3 changes: 0 additions & 3 deletions ext_localconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,6 @@
$GLOBALS['TYPO3_CONF_VARS'][Configuration::EXT_KEY]['applicationContextEndpoint']['eID'] = 1719931549;
$GLOBALS['TYPO3_CONF_VARS']['FE']['eID_include'][$GLOBALS['TYPO3_CONF_VARS'][Configuration::EXT_KEY]['applicationContextEndpoint']['eID']] = ContextController::class . '::getContextAction';

// Frontend Editing
$GLOBALS['TYPO3_CONF_VARS']['EXTENSIONS'][Configuration::EXT_KEY]['frontendEditing']['enable'] = false;

// Axe Accessibility
$GLOBALS['TYPO3_CONF_VARS']['EXTENSIONS'][Configuration::EXT_KEY]['axeAccessibility']['enable'] = false;
$GLOBALS['TYPO3_CONF_VARS']['EXTENSIONS'][Configuration::EXT_KEY]['axeAccessibility']['enableForContexts'] = [
Expand Down

0 comments on commit 932b953

Please sign in to comment.