Skip to content

Commit

Permalink
Merge branch 'typo9'
Browse files Browse the repository at this point in the history
  • Loading branch information
anjeylink committed Feb 4, 2020
2 parents 85c8e03 + 9514f31 commit c6fe2c1
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 17 deletions.
2 changes: 1 addition & 1 deletion Configuration/TCA/Overrides/tt_content.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
defined('TYPO3_MODE') || die('Access denied.');

\TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerPlugin(
'Resultify.ResultifyMessageBox',
'Pixelant.PxaMessageBox',
'Message',
'Message box',
'EXT:pxa_message_box/Resources/Public/Icons/message.svg'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@
'type' => 'select',
'renderType' => 'selectMultipleSideBySide',
'foreign_table' => 'fe_users',
'MM' => 'tx_resultifymessagebox_message_feuser_mm',
'MM' => 'tx_pxamessagebox_message_feuser_mm',
]
],
],
Expand Down
12 changes: 6 additions & 6 deletions Configuration/TypoScript/constants.ts
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
plugin.tx_resultifymessagebox_message {
plugin.tx_pxamessagebox_message {
view {
# cat=plugin.tx_resultifymessagebox_message/file; type=string; label=Path to template root (FE)
# cat=plugin.tx_pxamessagebox_message/file; type=string; label=Path to template root (FE)
templateRootPath = EXT:pxa_message_box/Resources/Private/Templates/
# cat=plugin.tx_resultifymessagebox_message/file; type=string; label=Path to template partials (FE)
# cat=plugin.tx_pxamessagebox_message/file; type=string; label=Path to template partials (FE)
partialRootPath = EXT:pxa_message_box/Resources/Private/Partials/
# cat=plugin.tx_resultifymessagebox_message/file; type=string; label=Path to template layouts (FE)
# cat=plugin.tx_pxamessagebox_message/file; type=string; label=Path to template layouts (FE)
layoutRootPath = EXT:pxa_message_box/Resources/Private/Layouts/
}

persistence {
# cat=plugin.tx_resultifymessagebox_message//a; type=string; label=Default storage PID
# cat=plugin.tx_pxamessagebox_message//a; type=string; label=Default storage PID
storagePid =
}

settings {
# cat=plugin.tx_resultifymessagebox_message//b; type=boolean; label=Invert sorting
# cat=plugin.tx_pxamessagebox_message//b; type=boolean; label=Invert sorting
invertSorting = 0
}
}
16 changes: 8 additions & 8 deletions Configuration/TypoScript/setup.ts
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
plugin.tx_resultifymessagebox_message {
plugin.tx_pxamessagebox_message {
view {
templateRootPaths {
10 = {$plugin.tx_resultifymessagebox_message.view.templateRootPath}
10 = {$plugin.tx_pxamessagebox_message.view.templateRootPath}
}

partialRootPaths {
10 = {$plugin.tx_resultifymessagebox_message.view.partialRootPath}
10 = {$plugin.tx_pxamessagebox_message.view.partialRootPath}
}

layoutRootPaths {
10 = {$plugin.tx_resultifymessagebox_message.view.layoutRootPath}
10 = {$plugin.tx_pxamessagebox_message.view.layoutRootPath}
}
}

persistence {
storagePid = {$plugin.tx_resultifymessagebox_message.persistence.storagePid}
storagePid = {$plugin.tx_pxamessagebox_message.persistence.storagePid}
}

settings {
# Set invert sorting for messages
invertSorting = {$plugin.tx_resultifymessagebox_message.settings.invertSorting}
invertSorting = {$plugin.tx_pxamessagebox_message.settings.invertSorting}
}
}

Expand All @@ -38,9 +38,9 @@ PxaMessageBoxAjaxCall {
10 = USER
10 {
userFunc = TYPO3\CMS\Extbase\Core\Bootstrap->run
extensionName = ResultifyMessageBox
extensionName = PxaMessageBox
pluginName = Message
vendorName = Resultify
vendorName = Pixelant

switchableControllerActions {
Message {
Expand Down
18 changes: 18 additions & 0 deletions ext_icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion ext_localconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
defined('TYPO3_MODE') || die('Access denied.');

\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
'Resultify.ResultifyMessageBox',
'Pixelant.PxaMessageBox',
'Message',
[
'Message' => 'list, close'
Expand Down

0 comments on commit c6fe2c1

Please sign in to comment.