Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
t3o
my.typo3.org
Commits
0ea8196c
Commit
0ea8196c
authored
Nov 05, 2018
by
mabolek
Browse files
[FIX] Coding guidelines compliance
parent
c5314ead
Pipeline
#5538
failed with stages
in 13 seconds
Changes
7
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
html/typo3conf/ext/karma/Classes/Domain/Repository/CampaignRepository.php
View file @
0ea8196c
...
...
@@ -27,5 +27,4 @@ namespace T3o\Karma\Domain\Repository;
class
CampaignRepository
extends
\
TYPO3\CMS\Extbase\Persistence\Repository
{
}
html/typo3conf/ext/karma/Classes/Domain/Repository/KarmaSourceRepository.php
View file @
0ea8196c
...
...
@@ -27,5 +27,4 @@ namespace T3o\Karma\Domain\Repository;
class
KarmaSourceRepository
extends
\
TYPO3\CMS\Extbase\Persistence\Repository
{
}
html/typo3conf/ext/karma/Classes/Domain/Repository/LedgerEntryRepository.php
View file @
0ea8196c
...
...
@@ -27,5 +27,4 @@ namespace T3o\Karma\Domain\Repository;
class
LedgerEntryRepository
extends
\
TYPO3\CMS\Extbase\Persistence\Repository
{
}
html/typo3conf/ext/karma/Configuration/TCA/Overrides/fe_users.php
View file @
0ea8196c
...
...
@@ -5,32 +5,32 @@ declare(strict_types=1);
* Table configuration fe_users
*/
$feUsersColumns
=
[
'tx_karma_immutable_value_cache'
=>
[
'exclude'
=>
0
,
'config'
=>
[
'type'
=>
'passthrough'
,
],
],
'tx_karma_mutable_value_cache'
=>
[
'exclude'
=>
0
,
'config'
=>
[
'type'
=>
'passthrough'
,
],
],
'tx_karma_cache_timestamp'
=>
[
'exclude'
=>
0
,
'config'
=>
[
'type'
=>
'passthrough'
,
],
],
'tx_karma_immutable_value_cache'
=>
[
'exclude'
=>
0
,
'config'
=>
[
'type'
=>
'passthrough'
,
],
],
'tx_karma_mutable_value_cache'
=>
[
'exclude'
=>
0
,
'config'
=>
[
'type'
=>
'passthrough'
,
],
],
'tx_karma_cache_timestamp'
=>
[
'exclude'
=>
0
,
'config'
=>
[
'type'
=>
'passthrough'
,
],
],
];
$fields
=
'tx_karma_immutable_value_cache,tx_karma_mutable_value_cache,tx_karma_cache_timestamp,'
;
\
TYPO3\CMS\Core\Utility\ExtensionManagementUtility
::
addToAllTCAtypes
(
'fe_users'
,
'tx_karma_immutable_value_cache,tx_karma_mutable_value_cache,tx_karma_cache_timestamp,'
,
''
,
''
'fe_users'
,
'tx_karma_immutable_value_cache,tx_karma_mutable_value_cache,tx_karma_cache_timestamp,'
,
''
,
''
);
\
TYPO3\CMS\Core\Utility\ExtensionManagementUtility
::
addTCAcolumns
(
'fe_users'
,
$feUsersColumns
);
html/typo3conf/ext/karma/ext_emconf.php
View file @
0ea8196c
<?php
declare
(
strict_types
=
1
);
declare
(
strict_types
=
1
);
$EM_CONF
[
$_EXTKEY
]
=
[
'title'
=>
'Karma Services'
,
...
...
html/typo3conf/ext/karma/ext_localconf.php
View file @
0ea8196c
<?php
defined
(
'TYPO3_MODE'
)
or
die
(
'Access denied.'
);
html/typo3conf/ext/karma/ext_tables.php
View file @
0ea8196c
...
...
@@ -2,7 +2,7 @@
defined
(
'TYPO3_MODE'
)
or
die
(
'Access denied.'
);
\
TYPO3\CMS\Core\Utility\ExtensionManagementUtility
::
addStaticFile
(
$_EXTKEY
,
'Configuration/TypoScript'
,
'Karma Services'
$_EXTKEY
,
'Configuration/TypoScript'
,
'Karma Services'
);
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment