# This patch file was generated by NetBeans IDE # This patch can be applied using context Tools: Apply Diff Patch action on respective folder. # It uses platform neutral UTF-8 encoding. # Above lines and this line are ignored by the patching process. Index: contributions/modules/views_rotator/views_rotator_style_plugin.inc --- contributions/modules/views_rotator/views_rotator_style_plugin.inc Base (1.1) +++ contributions/modules/views_rotator/views_rotator_style_plugin.inc Locally Modified (Based On 1.1) @@ -10,6 +10,7 @@ * Set default options */ function options(&$options) { + $options['fx'] = fade; $options['timeout'] = 5; $options['speed'] = 1; $options['pause'] = 0; @@ -18,6 +19,42 @@ } function options_form(&$form, &$form_state) { + $form['fx'] = array( + '#type' => 'select', + '#title' => t('JQuery Cycle transition'), + '#default_value' => $this->options['fx'], + '#options' => array( + 'blindX' => t('blindX'), + 'blindY' => t('blindY'), + 'blindZ' => t('blindZ'), + 'cover' => t('cover'), + 'blindY' => t('blindY'), + 'curtainX' => t('curtainX'), + 'curtainY' => t('curtainY'), + 'fade' => t('fade'), + 'fadeZoom' => t ('fadeZoom'), + 'growX' => t ('growX'), + 'growY' => t ('growY'), + 'scrollUp' => t ('scrollUp'), + 'scrollDown' => t ('scrollDown'), + 'scrollLeft' => t ('scrollLeft'), + 'scrollRight' => t ('scrollRight'), + 'scrollHorz' => t ('scrollHorz'), + 'scrollVert' => t ('scrollVert'), + 'shuffle' => t ('shuffle'), + 'slideX' => t ('slideX'), + 'slideY' => t ('slideY'), + 'toss' => t ('toss'), + 'turnUp' => t ('turnUp'), + 'turnDown' => t ('turnDown'), + 'turnLeft' => t ('turnLeft'), + 'turnRight' => t ('turnRight'), + 'uncover' => t ('uncover'), + 'wipe' => t ('wipe'), + 'zoom' => t('zoom'), + ), + '#description' => t('Select a cycle transition.'), + ); \ No newline at end of file $form['timeout'] = array( '#type' => 'textfield', '#title' => t('Time between displaying items'),