You are here

function views_jqfx_plugin_style_jqfx::options_form in Views jQFX 7

Render the given style.

Overrides views_plugin_style_list::options_form

File

./views_jqfx_plugin_style_jqfx.inc, line 23
Contains the list style plugin.

Class

views_jqfx_plugin_style_jqfx
Style plugin to render each item of an ordered or unordered list.

Code

function options_form(&$form, &$form_state) {

  // load up all views jqfx modules functions.
  module_load_all_includes('views_jqfx.inc');
  parent::options_form($form, $form_state);

  /**
   * Slides
   */
  $form['slides_header'] = array(
    '#markup' => '<h2>' . t('jQFX Settings') . '</h2>',
  );

  // Get all jqfx types.
  $modules = module_invoke_all('views_jqfx_jqfx_types');
  if ($modules) {
    $form['jqfx_type'] = array(
      '#type' => 'select',
      '#title' => t('FX Type'),
      '#options' => $modules,
      '#default_value' => $this->options['jqfx_type'],
    );
    $arguments = array(
      &$form,
      &$form_state,
      &$this,
    );
    foreach (module_implements('views_jqfx_jqfx_type_form') as $module) {
      ctools_include('dependent');
      $form[$module] = array(
        '#type' => 'fieldset',
        '#title' => check_plain(t('!module options', array(
          '!module' => $modules[$module],
        ))),
        '#collapsible' => TRUE,
        '#attributes' => array(
          'class' => array(
            $module,
          ),
        ),
        '#process' => array(
          'ctools_dependent_process',
        ),
        '#dependency' => array(
          ':input[name="style_options[jqfx_type]"]' => array(
            $module,
          ),
        ),
      );
      $function = $module . '_views_jqfx_jqfx_type_form';
      call_user_func_array($function, $arguments);
    }
  }
  else {
    $form['enable_module'] = array(
      '#markup' => t('There is no Views jQFX plugin enabled. Go to the !modules and enable a Views jQFX plugin module. For example Views jQFX ImageFlow.', array(
        '!modules' => l(t('Modules Page', array(), array(
          'langcode' => 'de',
        )), 'admin/build/modules'),
      ), array(
        'langcode' => 'en',
      )),
    );
  }
}