Commit ce2afd24 authored by Florian Heder's avatar Florian Heder

flexslider compatibility for typo3 7

parent 270cfff7
...@@ -156,8 +156,14 @@ $TCA['tx_flexslider_domain_model_flexslider'] = array( ...@@ -156,8 +156,14 @@ $TCA['tx_flexslider_domain_model_flexslider'] = array(
'type' => 'popup', 'type' => 'popup',
'title' => 'Link', 'title' => 'Link',
'icon' => 'link_popup.gif', 'icon' => 'link_popup.gif',
'script' => 'browse_links.php?mode=wizard', 'JSopenParams' => 'height=300,width=500,status=0,menubar=0,scrollbars=1',
'JSopenParams' => 'height=300,width=500,status=0,menubar=0,scrollbars=1' 'module' => array(
'name' => 'wizard_element_browser',
'urlParameters' => array(
'mode' => 'wizard',
'act' => 'file'
)
)
) )
) )
), ),
...@@ -197,4 +203,4 @@ if ($configuration['extendSubtitleByRTE']) { ...@@ -197,4 +203,4 @@ if ($configuration['extendSubtitleByRTE']) {
'subtitle;;;richtext:rte_transform[mode=ts_css]', 'subtitle;;;richtext:rte_transform[mode=ts_css]',
$TCA['tx_flexslider_domain_model_flexslider']['types']['1']['showitem'] $TCA['tx_flexslider_domain_model_flexslider']['types']['1']['showitem']
); );
} }
\ No newline at end of file
...@@ -3,27 +3,27 @@ ...@@ -3,27 +3,27 @@
It simply brings WooThemes awesome fully responsive jQuery Slider Plugin to TYPO3 – as a Frontend Plugin, of course. It simply brings WooThemes awesome fully responsive jQuery Slider Plugin to TYPO3 – as a Frontend Plugin, of course.
## Installation ## Installation
### Via Git ### Via Git
Clone into typo3conf/ext/ Clone into typo3conf/ext/
git clone git@bitbucket.org:sotastudio/typo3.extbase.flexslider.git /path/to/project/typo3conf/ext/flexslider/ git clone git@code.hebotek.at:hebotek/flexslider.git /path/to/project/typo3conf/ext/flexslider/
Install via Extension Manager as usual. Install via Extension Manager as usual.
### Via TER
[Jump to TER](http://typo3.org/extensions/repository/view/flexslider)
## Configuration ## Configuration
* Include **static Extension Template** * Include **static Extension Template**
* Create **Frontend plugin** * Create **Frontend plugin**
* Adjust the **Plugin Settings** to your needs * Adjust the **Plugin Settings** to your needs
* Setup **Record Storage Page** where the Slider Items come from * Setup **Record Storage Page** where the Slider Items come from
* Create **Slider Items** on the Record Storage Page * Create **Slider Items** on the Record Storage Page
* Check the Frontend! * Check the Frontend!
...@@ -170,7 +170,7 @@ Using the object {data}, you can access everything regarding the Content Element ...@@ -170,7 +170,7 @@ Using the object {data}, you can access everything regarding the Content Element
And, of course, many more. Just use the Debug Viewhelper to get a clue about other variables: And, of course, many more. Just use the Debug Viewhelper to get a clue about other variables:
<f:debug>{data}</f:debug> <f:debug>{data}</f:debug>
### Accessing Extension Configuration ### Accessing Extension Configuration
......
<?php <?php
$EM_CONF[$_EXTKEY] = array( $EM_CONF[$_EXTKEY] = array(
'title' => 'FlexSlider', 'title' => 'FlexSlider - hebotek typo37 updated',
'description' => 'Brings WooThemes\' awesome responsive Slider to TYPO3', 'description' => 'Brings WooThemes\' awesome responsive Slider to TYPO3',
'category' => 'plugin', 'category' => 'plugin',
'version' => '1.5.3', 'version' => '1.5.3',
...@@ -20,4 +20,4 @@ $EM_CONF[$_EXTKEY] = array( ...@@ -20,4 +20,4 @@ $EM_CONF[$_EXTKEY] = array(
'conflicts' => array(), 'conflicts' => array(),
'suggests' => array(), 'suggests' => array(),
), ),
); );
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment