Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[fix] add missing plugin name in typoscript library for new comments #8 #16

Merged
merged 1 commit into from
May 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .ddev/commands/web/install
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ composer config --no-plugins allow-plugins.typo3/cms-composer-installers true -d
composer config --no-plugins allow-plugins.typo3/class-alias-loader true -d /var/www/html/
composer req t3/cms:"^$VERSION" $PACKAGE_NAME:'*@dev' --no-progress -n -d /var/www/html/
composer req --dev --no-progress -n -W -d /var/www/html/ \
typo3/cms-lowlevel:"^$VERSION" \
friendsofphp/php-cs-fixer:'^3' \
helmich/typo3-typoscript-lint:'^3' \
michielroos/typo3scan:'^1.7' \
Expand All @@ -20,7 +21,7 @@ composer req --dev --no-progress -n -W -d /var/www/html/ \

cd /var/www/html/

vendor/bin/typo3 install:setup --database-user-name=db --database-user-password=db --database-host-name=db --database-name=test --use-existing-database
vendor/bin/typo3 install:setup --database-user-name=db --database-user-password=db --database-host-name=db --database-name=test --use-existing-database --force
vendor/bin/typo3 configuration:set 'BE/debug' 1
vendor/bin/typo3 configuration:set 'FE/debug' 1
vendor/bin/typo3 configuration:set 'SYS/devIPmask' '*'
Expand Down
1 change: 1 addition & 0 deletions .ddev/docker-compose.web.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ services:
- TYPO3_INSTALL_SITE_NAME=EXT:pw_comments Dev Environment
- TYPO3_INSTALL_SITE_SETUP_TYPE=site
- TYPO3_INSTALL_WEB_SERVER_CONFIG=apache
- TYPO3_CONTEXT=Development
volumes:
- type: bind
source: ../
Expand Down
2 changes: 2 additions & 0 deletions Configuration/TypoScript/setup.typoscript
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,8 @@ lib.pwCommentsIndex {
# Lib for form to post new comments
lib.pwCommentsNew < lib.pwCommentsIndex
lib.pwCommentsNew {
pluginName = new

controllerActions {
Comment {
1 = new
Expand Down