Added map, changed gulp

This commit is contained in:
Dirk 2019-07-25 12:42:37 +02:00
parent 9c6539eb28
commit 945bc32fec
7 changed files with 33 additions and 25 deletions

View file

@ -1,15 +1,15 @@
plugin.tx_events { plugin.tx_events {
view { view {
# cat=plugin.tx_ddevents/file; type=string; label=Path to template root (FE) # cat=plugin.tx_events/file; type=string; label=Path to template root (FE)
templateRootPath = EXT:events/Resources/Private/Templates/ templateRootPath = EXT:events/Resources/Private/Templates/
# cat=plugin.tx_ddevents/file; type=string; label=Path to template partials (FE) # cat=plugin.tx_events/file; type=string; label=Path to template partials (FE)
partialRootPath = EXTevents/Resources/Private/Partials/ partialRootPath = EXT:events/Resources/Private/Partials/
# cat=plugin.tx_ddevents/file; type=string; label=Path to template layouts (FE) # cat=plugin.tx_events/file; type=string; label=Path to template layouts (FE)
layoutRootPath = EXT:events/Resources/Private/Layouts/ layoutRootPath = EXT:events/Resources/Private/Layouts/
} }
persistence { persistence {
# cat=plugin.tx_ddevents//a; type=string; label=Default storage PID # cat=plugin.tx_events//a; type=string; label=Default storage PID
storagePid = storagePid =
} }
} }

View file

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?> <?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<xliff version="1.0"> <xliff version="1.0">
<file source-language="en" datatype="plaintext" original="messages" date="2019-04-03T12:11:11Z" product-name="dd_events"> <file source-language="en" datatype="plaintext" original="messages" date="2019-04-03T12:11:11Z" product-name="events">
<header/> <header/>
<body> <body>
<trans-unit id="tx_events_domain_model_event"> <trans-unit id="tx_events_domain_model_event">

View file

@ -3,6 +3,12 @@
<file source-language="en" datatype="plaintext" original="messages" date="2019-04-03T12:11:11Z" product-name="dd_events"> <file source-language="en" datatype="plaintext" original="messages" date="2019-04-03T12:11:11Z" product-name="dd_events">
<header/> <header/>
<body> <body>
<trans-unit id="tx_events.name">
<source>Events</source>
</trans-unit>
<trans-unit id="tx_events.description">
<source>Event Modul</source>
</trans-unit>
<trans-unit id="tx_events_domain_model_event"> <trans-unit id="tx_events_domain_model_event">
<source>Event</source> <source>Event</source>
</trans-unit> </trans-unit>

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 83.1 84.17"><title>Extension</title><path d="M106.07,100.13a11.56,11.56,0,0,1-3.55.51c-10.69,0-26.39-37.36-26.39-49.79,0-4.58,1.08-6.1,2.61-7.42C65.67,45,50,49.75,44.95,55.86a12.21,12.21,0,0,0-1.74,7c0,19.41,20.72,63.45,35.33,63.45,6.76,0,18.16-11.11,27.54-26.17" transform="translate(-43.2 -42.12)" style="fill:#ff8700"/><path d="M99.25,42.12c13.52,0,27,2.18,27,9.81,0,15.48-9.82,34.25-14.83,34.25-8.94,0-20.07-24.87-20.07-37.3,0-5.67,2.18-6.76,7.85-6.76" transform="translate(-43.2 -42.12)" style="fill:#ff8700"/></svg>

After

Width:  |  Height:  |  Size: 574 B

View file

@ -12,7 +12,7 @@
$EM_CONF[$_EXTKEY] = [ $EM_CONF[$_EXTKEY] = [
'title' => 'Events', 'title' => 'Events',
'description' => 'Extension to manage Destination Data managed events', 'description' => 'Extension to manage events',
'category' => 'plugin', 'category' => 'plugin',
'author' => 'Dirk Koritnik', 'author' => 'Dirk Koritnik',
'author_email' => 'koritnik@werkraum-media.de', 'author_email' => 'koritnik@werkraum-media.de',

View file

@ -18,29 +18,30 @@ call_user_func(
] ]
); );
// wizards // wizards
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPageTSConfig( \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPageTSConfig(
'mod { 'mod {
wizards.newContentElement.wizardItems.plugins { wizards.newContentElement.wizardItems.plugins {
elements { elements {
events { events {
iconIdentifier = events-plugin-events iconIdentifier = events-plugin
title = LLL:EXT:events/Resources/Private/Language/locallang_db.xlf:txevents_events.name title = LLL:EXT:events/Resources/Private/Language/locallang_db.xlf:tx_events.name
description = LLL:EXT:events/Resources/Private/Language/locallang_db.xlf:tx_events_events.description description = LLL:EXT:events/Resources/Private/Language/locallang_db.xlf:tx_events.description
tt_content_defValues { tt_content_defValues {
CType = list CType = list
list_type = events_pi1 list_type = events_pi1
}
} }
} }
show = *
} }
show = * }'
} );
}'
);
$iconRegistry = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(\TYPO3\CMS\Core\Imaging\IconRegistry::class); $iconRegistry = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(\TYPO3\CMS\Core\Imaging\IconRegistry::class);
$iconRegistry->registerIcon( $iconRegistry->registerIcon(
'events-plugin-events', 'events-plugin',
\TYPO3\CMS\Core\Imaging\IconProvider\SvgIconProvider::class, \TYPO3\CMS\Core\Imaging\IconProvider\SvgIconProvider::class,
['source' => 'EXT:events/Resources/Public/Icons/user_plugin_events.svg'] ['source' => 'EXT:events/Resources/Public/Icons/user_plugin_events.svg']
); );

View file

@ -10,7 +10,7 @@ call_user_func(
'Wrm.Events', 'Wrm.Events',
'Pi1', 'Pi1',
'Events', 'Events',
'EXT:dd_events/Resources/Public/Icons/user_plugin_events.svg' 'EXT:events/Resources/Public/Icons/user_plugin_events.svg'
); );
*/ */