Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
flexslider
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
hebotek
flexslider
Commits
026f3784
Commit
026f3784
authored
Feb 27, 2017
by
Florian Heder
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
compatibility issues in wizard
parent
bf883c38
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
4 deletions
+9
-4
Div.php
Classes/Utility/Div.php
+1
-1
DynLinkViewHelper.php
Classes/ViewHelpers/DynLinkViewHelper.php
+1
-1
class.flexslider_wizicon.php
Resources/Private/Php/class.flexslider_wizicon.php
+1
-1
composer.json
composer.json
+6
-1
No files found.
Classes/Utility/Div.php
View file @
026f3784
...
...
@@ -155,7 +155,7 @@ class Div {
$GLOBALS
[
'TSFE'
]
->
getPageRenderer
()
->
addCssFile
(
ExtensionManagementUtility
::
siteRelPath
(
't3skin'
)
.
'Resources/Public/Css/visual/element_message.css'
);
$GLOBALS
[
'TSFE'
]
->
getPageRenderer
()
->
addCssInlineBlock
(
'flashmessage'
,
$code
);
$flashMessage
=
GeneralUtility
::
makeInstance
(
'
t3lib_FlashMessage
'
,
$message
,
$title
,
$type
);
$flashMessage
=
GeneralUtility
::
makeInstance
(
'
TYPO3\CMS\Core\Messaging\FlashMessage'
'
,
$message
,
$title
,
$type
);
return
$flashMessage
->
render
();
}
...
...
Classes/ViewHelpers/DynLinkViewHelper.php
View file @
026f3784
...
...
@@ -93,7 +93,7 @@ class DynLinkViewHelper extends AbstractTagBasedViewHelper {
// Save link data into ViewHelper arguments
$this
->
setArgumentsFromArray
(
$paramDataArr
);
$cObj
=
GeneralUtility
::
makeInstance
(
'
tslib_cObj
'
);
$cObj
=
GeneralUtility
::
makeInstance
(
'
TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer'
');
$configuration = array(
'
parameter
' => $this->arguments['
href
'],
'
returnLast
' => TRUE
...
...
Resources/Private/Php/class.flexslider_wizicon.php
View file @
026f3784
...
...
@@ -78,7 +78,7 @@ class flexslider_pi1_wizicon {
protected
function
includeLocalLang
()
{
$llFile
=
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility
::
extPath
(
$this
->
extKey
)
.
'Resources/Private/Language/locallang_be.xml'
;
$l10n
=
\TYPO3\CMS\Core\Utility\GeneralUtility
::
makeInstance
(
'
languag
e'
);
$l10n
=
\TYPO3\CMS\Core\Utility\GeneralUtility
::
makeInstance
(
'
TYPO3\CMS\Lang\LanguageServic
e'
);
$l10n
->
init
(
$this
->
LANG
->
lang
);
$l10nArr
=
$l10n
->
includeLLFile
(
$llFile
,
FALSE
);
...
...
composer.json
View file @
026f3784
...
...
@@ -23,5 +23,10 @@
},
"suggest"
:
{
}
},
"autoload"
:
{
"psr-4"
:
{
"SotaStudio
\\
Flexslider
\\
"
:
"Classes"
}
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
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