mirror of
https://github.com/werkraum-media/events.git
synced 2024-11-10 03:16:10 +01:00
Added map, changed gulp
This commit is contained in:
parent
9c6539eb28
commit
945bc32fec
7 changed files with 33 additions and 25 deletions
|
@ -1,15 +1,15 @@
|
|||
|
||||
plugin.tx_events {
|
||||
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/
|
||||
# cat=plugin.tx_ddevents/file; type=string; label=Path to template partials (FE)
|
||||
partialRootPath = EXTevents/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 partials (FE)
|
||||
partialRootPath = EXT:events/Resources/Private/Partials/
|
||||
# cat=plugin.tx_events/file; type=string; label=Path to template layouts (FE)
|
||||
layoutRootPath = EXT:events/Resources/Private/Layouts/
|
||||
}
|
||||
persistence {
|
||||
# cat=plugin.tx_ddevents//a; type=string; label=Default storage PID
|
||||
# cat=plugin.tx_events//a; type=string; label=Default storage PID
|
||||
storagePid =
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
|
||||
<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/>
|
||||
<body>
|
||||
<trans-unit id="tx_events_domain_model_event">
|
||||
|
|
|
@ -3,6 +3,12 @@
|
|||
<file source-language="en" datatype="plaintext" original="messages" date="2019-04-03T12:11:11Z" product-name="dd_events">
|
||||
<header/>
|
||||
<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">
|
||||
<source>Event</source>
|
||||
</trans-unit>
|
||||
|
|
1
Resources/Public/Icons/Extension.svg
Normal file
1
Resources/Public/Icons/Extension.svg
Normal 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 |
|
@ -12,7 +12,7 @@
|
|||
|
||||
$EM_CONF[$_EXTKEY] = [
|
||||
'title' => 'Events',
|
||||
'description' => 'Extension to manage Destination Data managed events',
|
||||
'description' => 'Extension to manage events',
|
||||
'category' => 'plugin',
|
||||
'author' => 'Dirk Koritnik',
|
||||
'author_email' => 'koritnik@werkraum-media.de',
|
||||
|
|
|
@ -18,29 +18,30 @@ call_user_func(
|
|||
]
|
||||
);
|
||||
|
||||
// wizards
|
||||
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPageTSConfig(
|
||||
'mod {
|
||||
wizards.newContentElement.wizardItems.plugins {
|
||||
elements {
|
||||
events {
|
||||
iconIdentifier = events-plugin-events
|
||||
title = LLL:EXT:events/Resources/Private/Language/locallang_db.xlf:txevents_events.name
|
||||
description = LLL:EXT:events/Resources/Private/Language/locallang_db.xlf:tx_events_events.description
|
||||
tt_content_defValues {
|
||||
CType = list
|
||||
list_type = events_pi1
|
||||
// wizards
|
||||
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPageTSConfig(
|
||||
'mod {
|
||||
wizards.newContentElement.wizardItems.plugins {
|
||||
elements {
|
||||
events {
|
||||
iconIdentifier = events-plugin
|
||||
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.description
|
||||
tt_content_defValues {
|
||||
CType = list
|
||||
list_type = events_pi1
|
||||
}
|
||||
}
|
||||
}
|
||||
show = *
|
||||
}
|
||||
show = *
|
||||
}
|
||||
}'
|
||||
);
|
||||
}'
|
||||
);
|
||||
|
||||
$iconRegistry = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(\TYPO3\CMS\Core\Imaging\IconRegistry::class);
|
||||
|
||||
$iconRegistry->registerIcon(
|
||||
'events-plugin-events',
|
||||
'events-plugin',
|
||||
\TYPO3\CMS\Core\Imaging\IconProvider\SvgIconProvider::class,
|
||||
['source' => 'EXT:events/Resources/Public/Icons/user_plugin_events.svg']
|
||||
);
|
||||
|
|
|
@ -10,7 +10,7 @@ call_user_func(
|
|||
'Wrm.Events',
|
||||
'Pi1',
|
||||
'Events',
|
||||
'EXT:dd_events/Resources/Public/Icons/user_plugin_events.svg'
|
||||
'EXT:events/Resources/Public/Icons/user_plugin_events.svg'
|
||||
);
|
||||
*/
|
||||
|
||||
|
|
Loading…
Reference in a new issue