You are here

calendar_systems.admin.inc in Calendar Systems 6

Integrate Calendar systems editors into Drupal.

File

calendar_systems.admin.inc
View source
<?php

/**
 * @file
 * Integrate Calendar systems editors into Drupal.
 */

/**
 * Form builder for Calendar systems profile form.
 */
function calendar_systems_profile_form($form_state, $profile) {

  // Merge in defaults.
  $profile = (array) $profile;
  $profile += array(
    'format' => 0,
    'editor' => '',
  );
  if (empty($profile['settings'])) {
    $profile['settings'] = array();
  }
  $profile['settings'] += array(
    'default' => TRUE,
    'user_choose' => FALSE,
    'show_toggle' => TRUE,
    'theme' => 'advanced',
    'language' => 'en',
    'access' => 1,
    'access_pages' => "node/*\nuser/*\ncomment/*",
    'buttons' => array(),
    'toolbar_loc' => 'top',
    'toolbar_align' => 'left',
    'path_loc' => 'bottom',
    'resizing' => TRUE,
    // Also available, but buggy in TinyMCE 2.x: blockquote,code,dt,dd,samp.
    'block_formats' => 'p,address,pre,h2,h3,h4,h5,h6,div',
    'verify_html' => TRUE,
    'preformatted' => FALSE,
    'convert_fonts_to_spans' => TRUE,
    'remove_linebreaks' => TRUE,
    'apply_source_formatting' => FALSE,
    'paste_auto_cleanup_on_paste' => FALSE,
    'css_setting' => 'theme',
    'css_path' => NULL,
    'css_classes' => NULL,
  );
  $profile = (object) $profile;
  $formats = filter_formats();
  $editor = wysiwyg_get_editor($profile->editor);
  drupal_set_title(t('%editor profile for %format', array(
    '%editor' => $editor['title'],
    '%format' => $formats[$profile->format]->name,
  )));
  $form = array();
  $form['format'] = array(
    '#type' => 'value',
    '#value' => $profile->format,
  );
  $form['input_format'] = array(
    '#type' => 'value',
    '#value' => $formats[$profile->format]->name,
  );
  $form['editor'] = array(
    '#type' => 'value',
    '#value' => $profile->editor,
  );
  $form['basic'] = array(
    '#type' => 'fieldset',
    '#title' => t('Basic setup'),
    '#collapsible' => TRUE,
    '#collapsed' => TRUE,
  );
  $form['basic']['default'] = array(
    '#type' => 'checkbox',
    '#title' => t('Enabled by default'),
    '#default_value' => $profile->settings['default'],
    '#return_value' => 1,
    '#description' => t('The default editor state for users having access to this profile. Users are able to override this state if the next option is enabled.'),
  );
  $form['basic']['user_choose'] = array(
    '#type' => 'checkbox',
    '#title' => t('Allow users to choose default'),
    '#default_value' => $profile->settings['user_choose'],
    '#return_value' => 1,
    '#description' => t('If allowed, users will be able to choose their own editor default state in their user account settings.'),
  );
  $form['basic']['show_toggle'] = array(
    '#type' => 'checkbox',
    '#title' => t('Show <em>enable/disable rich text</em> toggle link'),
    '#default_value' => $profile->settings['show_toggle'],
    '#return_value' => 1,
    '#description' => t('Whether or not to show the <em>enable/disable rich text</em> toggle link below a textarea. If disabled, the user setting or global default is used (see above).'),
  );
  $form['basic']['theme'] = array(
    '#type' => 'hidden',
    '#value' => $profile->settings['theme'],
  );
  $form['basic']['language'] = array(
    '#type' => 'select',
    '#title' => t('Language'),
    '#default_value' => $profile->settings['language'],
    '#options' => drupal_map_assoc(array(
      'ar',
      'ca',
      'cs',
      'cy',
      'da',
      'de',
      'el',
      'en',
      'es',
      'fa',
      'fi',
      'fr',
      'fr_ca',
      'he',
      'hu',
      'is',
      'it',
      'ja',
      'ko',
      'nb',
      'nl',
      'nn',
      'pl',
      'pt',
      'pt_br',
      'ru',
      'ru_KOI8-R',
      'ru_UTF-8',
      'si',
      'sk',
      'sv',
      'th',
      'zh_cn',
      'zh_tw',
      'zh_tw_utf8',
    )),
    '#description' => t('The language to use for the editor interface. Language codes are based on the <a href="http://www.loc.gov/standards/iso639-2/englangn.html">ISO-639-2</a> format.'),
  );
  $form['buttons'] = array(
    '#type' => 'fieldset',
    '#title' => t('Buttons and plugins'),
    '#collapsible' => TRUE,
    '#collapsed' => TRUE,
    '#tree' => TRUE,
    '#theme' => 'calendar_systems_admin_button_table',
  );
  $plugins = wysiwyg_get_plugins($profile->editor);

  // Generate the button list.
  foreach ($plugins as $name => $meta) {
    if (isset($meta['buttons']) && is_array($meta['buttons'])) {
      foreach ($meta['buttons'] as $button => $title) {
        $icon = '';
        if (!empty($meta['path'])) {

          // @todo Button icon locations are different in editors, editor versions,
          //   and contrib/custom plugins (like Image Assist, f.e.).
          $img_src = $meta['path'] . "/images/{$name}.gif";

          // Handle plugins that have more than one button.
          if (!file_exists($img_src)) {
            $img_src = $meta['path'] . "/images/{$button}.gif";
          }
          $icon = file_exists($img_src) ? '<img src="' . base_path() . $img_src . '" title="' . $button . '" style="border: 1px solid grey; vertical-align: middle;" />' : '';
        }
        $title = isset($meta['url']) ? l($title, $meta['url'], array(
          'target' => '_blank',
        )) : $title;
        $title = !empty($icon) ? $icon . ' ' . $title : $title;
        $form['buttons'][$name][$button] = array(
          '#type' => 'checkbox',
          '#title' => $title,
          '#default_value' => !empty($profile->settings['buttons'][$name][$button]) ? $profile->settings['buttons'][$name][$button] : FALSE,
        );
      }
    }
    else {
      if (isset($meta['extensions']) && is_array($meta['extensions'])) {
        foreach ($meta['extensions'] as $extension => $title) {
          $form['buttons'][$name][$extension] = array(
            '#type' => 'checkbox',
            '#title' => isset($meta['url']) ? l($title, $meta['url'], array(
              'target' => '_blank',
            )) : $title,
            '#default_value' => !empty($profile->settings['buttons'][$name][$extension]) ? $profile->settings['buttons'][$name][$extension] : FALSE,
          );
        }
      }
    }
  }
  $form['appearance'] = array(
    '#type' => 'fieldset',
    '#title' => t('Editor appearance'),
    '#collapsible' => TRUE,
    '#collapsed' => TRUE,
  );
  $form['appearance']['toolbar_loc'] = array(
    '#type' => 'select',
    '#title' => t('Toolbar location'),
    '#default_value' => $profile->settings['toolbar_loc'],
    '#options' => array(
      'bottom' => t('Bottom'),
      'top' => t('Top'),
    ),
    '#description' => t('This option controls whether the editor toolbar is displayed above or below the editing area.'),
  );
  $form['appearance']['toolbar_align'] = array(
    '#type' => 'select',
    '#title' => t('Button alignment'),
    '#default_value' => $profile->settings['toolbar_align'],
    '#options' => array(
      'center' => t('Center'),
      'left' => t('Left'),
      'right' => t('Right'),
    ),
    '#description' => t('This option controls the alignment of icons in the editor toolbar.'),
  );
  $form['appearance']['path_loc'] = array(
    '#type' => 'select',
    '#title' => t('Path location'),
    '#default_value' => $profile->settings['path_loc'],
    '#options' => array(
      'none' => t('Hide'),
      'top' => t('Top'),
      'bottom' => t('Bottom'),
    ),
    '#description' => t('Where to display the path to HTML elements (i.e. <code>body > table > tr > td</code>).'),
  );
  $form['appearance']['resizing'] = array(
    '#type' => 'checkbox',
    '#title' => t('Enable resizing button'),
    '#default_value' => $profile->settings['resizing'],
    '#return_value' => 1,
    '#description' => t('This option gives you the ability to enable/disable the resizing button. If enabled, the Path location toolbar must be set to "Top" or "Bottom" in order to display the resize icon.'),
  );
  $form['output'] = array(
    '#type' => 'fieldset',
    '#title' => t('Cleanup and output'),
    '#collapsible' => TRUE,
    '#collapsed' => TRUE,
  );
  $form['output']['verify_html'] = array(
    '#type' => 'checkbox',
    '#title' => t('Verify HTML'),
    '#default_value' => $profile->settings['verify_html'],
    '#return_value' => 1,
    '#description' => t('If enabled, potentially malicious code like <code>&lt;HEAD&gt;</code> tags will be removed from HTML contents.'),
  );
  $form['output']['preformatted'] = array(
    '#type' => 'checkbox',
    '#title' => t('Preformatted'),
    '#default_value' => $profile->settings['preformatted'],
    '#return_value' => 1,
    '#description' => t('If enabled, the editor will insert TAB characters on tab and preserve other whitespace characters just like a PRE element in HTML does.'),
  );
  $form['output']['convert_fonts_to_spans'] = array(
    '#type' => 'checkbox',
    '#title' => t('Convert &lt;font&gt; tags to styles'),
    '#default_value' => $profile->settings['convert_fonts_to_spans'],
    '#return_value' => 1,
    '#description' => t('If enabled, HTML tags declaring the font size, font family, font color and font background color will be replaced by inline CSS styles.'),
  );
  $form['output']['remove_linebreaks'] = array(
    '#type' => 'checkbox',
    '#title' => t('Remove linebreaks'),
    '#default_value' => $profile->settings['remove_linebreaks'],
    '#return_value' => 1,
    '#description' => t('If enabled, the editor will remove most linebreaks from contents. Disabling this option could avoid conflicts with other input filters.'),
  );
  $form['output']['apply_source_formatting'] = array(
    '#type' => 'checkbox',
    '#title' => t('Apply source formatting'),
    '#default_value' => $profile->settings['apply_source_formatting'],
    '#return_value' => 1,
    '#description' => t('If enabled, the editor will re-format the HTML source code. Disabling this option could avoid conflicts with other input filters.'),
  );
  $form['output']['paste_auto_cleanup_on_paste'] = array(
    '#type' => 'checkbox',
    '#title' => t('Force cleanup on standard paste'),
    '#default_value' => $profile->settings['paste_auto_cleanup_on_paste'],
    '#return_value' => 1,
    '#description' => t('If enabled, the default paste function (CTRL-V or SHIFT-INS) behaves like the "paste from word" plugin function.'),
  );
  $form['css'] = array(
    '#type' => 'fieldset',
    '#title' => t('CSS'),
    '#collapsible' => TRUE,
    '#collapsed' => TRUE,
  );
  $form['css']['block_formats'] = array(
    '#type' => 'textfield',
    '#title' => t('Block formats'),
    '#default_value' => $profile->settings['block_formats'],
    '#size' => 40,
    '#maxlength' => 250,
    '#description' => t('Comma separated list of HTML block formats. Possible values: <code>@format-list</code>.', array(
      '@format-list' => 'p,h1,h2,h3,h4,h5,h6,div,blockquote,address,pre,code,dt,dd',
    )),
  );
  $form['css']['css_setting'] = array(
    '#type' => 'select',
    '#title' => t('Editor CSS'),
    '#default_value' => $profile->settings['css_setting'],
    '#options' => array(
      'theme' => t('Use theme CSS'),
      'self' => t('Define CSS'),
      'none' => t('Editor default CSS'),
    ),
    '#description' => t('Defines the CSS to be used in the editor area.<br />Use theme CSS - loads stylesheets from current site theme.<br/>Define CSS - enter path for stylesheet files below.<br />Editor default CSS - uses default stylesheets from editor.'),
  );
  $form['css']['css_path'] = array(
    '#type' => 'textfield',
    '#title' => t('CSS path'),
    '#default_value' => $profile->settings['css_path'],
    '#size' => 40,
    '#maxlength' => 255,
    '#description' => t('If "Define CSS" was selected above, enter path to a CSS file or a list of CSS files separated by a comma.') . '<br />' . t('Available tokens: <code>%b</code> (base path, eg: <code>/</code>), <code>%t</code> (path to theme, eg: <code>themes/garland</code>)') . '<br />' . t('Example:') . ' css/editor.css,/themes/garland/style.css,%b%t/style.css,http://example.com/external.css',
  );
  $form['css']['css_classes'] = array(
    '#type' => 'textarea',
    '#title' => t('CSS classes'),
    '#default_value' => $profile->settings['css_classes'],
    '#description' => t('Optionally define CSS classes for the "Font style" dropdown list.<br />Enter one class on each line in the format: !format. Example: !example<br />If left blank, CSS classes are automatically imported from all loaded stylesheet(s).', array(
      '!format' => '<code>[title]=[class]</code>',
      '!example' => 'My heading=header1',
    )),
  );
  $form['submit'] = array(
    '#type' => 'submit',
    '#value' => t('Save'),
  );
  return $form;
}

/**
 * Submit callback for Calendar systems profile form.
 *
 * @see calendar_systems_profile_form()
 */
function calendar_systems_profile_form_submit($form, &$form_state) {
  exit;
  $values = $form_state['values'];
  if (isset($values['buttons'])) {

    // Store only enabled buttons for each plugin.
    foreach ($values['buttons'] as $plugin => $buttons) {
      $values['buttons'][$plugin] = array_filter($values['buttons'][$plugin]);
    }

    // Store only enabled plugins.
    $values['buttons'] = array_filter($values['buttons']);
  }

  // Remove input format name.
  $format = $values['format'];
  $input_format = $values['input_format'];
  $editor = $values['editor'];
  unset($values['format'], $values['input_format'], $values['editor']);

  // Remove FAPI values.
  // @see system_settings_form_submit()
  unset($values['submit'], $values['form_id'], $values['op'], $values['form_token']);

  // Insert new profile data.
  db_query("UPDATE {calendar_systems} SET settings = '%s' WHERE language = %d", serialize($values), $format);
  drupal_set_message(t('Calendar systems profile for %format has been saved.', array(
    '%format' => $input_format,
  )));
  $form_state['redirect'] = 'admin/settings/calendar_systems';
}

/**
 * Layout for the buttons in the Calendar systems Editor profile form.
 */
function theme_calendar_systems_admin_button_table(&$form) {
  $buttons = array();

  // Flatten forms array.
  foreach (element_children($form) as $name) {
    foreach (element_children($form[$name]) as $button) {
      $buttons[] = drupal_render($form[$name][$button]);
    }
  }

  // Split checkboxes into rows with 3 columns.
  $total = count($buttons);
  $rows = array();
  for ($i = 0; $i < $total; $i++) {
    $row = array();
    $row[] = array(
      'data' => $buttons[$i],
    );
    if (isset($buttons[++$i])) {
      $row[] = array(
        'data' => $buttons[$i],
      );
    }
    if (isset($buttons[++$i])) {
      $row[] = array(
        'data' => $buttons[$i],
      );
    }
    $rows[] = $row;
  }
  $output = theme('table', array(), $rows, array(
    'width' => '100%',
  ));
  return $output;
}

/**
* Check to see whether the require patch is applied or not
* 
*/
function calendar_systems_is_patch_applied() {
  $file_content = file_get_contents(realpath(drupal_get_path('module', 'system') . '/../../includes/common.inc'));
  if (!strpos($file_content, 'foreach (module_implements(\'format_date\') as $module) {') === FALSE) {
    $file_content = null;
    return TRUE;
  }
  unset($file_content);
  return FALSE;
}

/**
 * Display overview of setup Calendar systems Editor profiles; menu callback.
 */
function calendar_systems_profile_overview() {
  $form = array();
  if (!calendar_systems_is_patch_applied()) {
    $path = drupal_get_path('module', 'calendar_systems');
    drupal_set_message("You haven't applied the required Drupal core's patch for this module to work, please follow the instructions in " . l('README.txt', $path . '/README.txt'), 'error');
  }
  $calendar_systems = calendar_systems_get_all_plugins();
  $options = array();
  foreach ($calendar_systems as $id => $calendar_system) {
    $options[$id] = $calendar_system['title'];
  }
  $languages = calendar_systems_get_all_langauges();
  $profiles = calendar_systems_profile_load_all();
  $form['formats']['#tree'] = TRUE;
  foreach ($languages as $id => $language) {
    $form['formats'][$id]['name'] = array(
      '#value' => check_plain($language['name']),
    );
    $form['formats'][$id]['editor'] = array(
      '#type' => 'select',
      '#default_value' => isset($profiles[$id]) ? $profiles[$id]->calendar_system : '',
      '#options' => $options,
      '#id' => "edit-editor-{$id}",
      '#disabled' => isset($profiles[$id]) ? (bool) $profiles[$id]->calendar_system : FALSE,
    );
    if (isset($profiles[$id]) && !empty($profiles[$id]->calendar_system)) {

      /*
      $form['formats'][$id]['edit'] = array(
        '#value' => l(t('Edit'), "admin/settings/calendar_systems/profile/$id/edit"),
      );
      */
      $form['formats'][$id]['remove'] = array(
        '#value' => l(t('Remove'), "admin/settings/calendar_systems/profile/{$id}/delete"),
      );
    }
  }
  $form['submit'] = array(
    '#type' => 'submit',
    '#value' => t('Save'),
  );
  return $form;
}

/**
 * Return HTML for the Calendar systems profile overview form.
 */
function theme_calendar_systems_profile_overview($form) {
  if (!isset($form['formats'])) {
    return;
  }
  $output = '';
  $header = array(
    t('Language'),
    t('Calendar system'),
    array(
      'data' => t('Operations'),
      'colspan' => 2,
    ),
  );
  $rows = array();
  foreach (element_children($form['formats']) as $item) {
    $format =& $form['formats'][$item];
    $rows[] = array(
      drupal_render($format['name']),
      drupal_render($format['editor']),
      isset($format['edit']) ? drupal_render($format['edit']) : '',
      isset($format['remove']) ? drupal_render($format['remove']) : '',
    );
  }
  $output .= theme('table', $header, $rows);
  $output .= drupal_render($form);
  return $output;
}

/**
 * Submit callback for Calendar systems profile overview form.
 */
function calendar_systems_profile_overview_submit($form, &$form_state) {
  foreach ($form_state['values']['formats'] as $format => $values) {
    if ($values['editor'] != 'default') {
      db_query("UPDATE {calendar_systems} SET calendar_system = '%s' WHERE language = '%s'", $values['editor'], $format);
      if (!db_affected_rows()) {
        db_query("INSERT INTO {calendar_systems} (language, calendar_system) VALUES ('%s', '%s')", $format, $values['editor']);
      }
    }
  }
}

/**
 * Delete editor profile confirmation form.
 */
function calendar_systems_profile_delete_confirm(&$form_state, $profile) {
  $languages = calendar_systems_get_all_langauges();
  $language = $languages[$profile];
  $form['format'] = array(
    '#type' => 'value',
    '#value' => $language['name'],
  );
  return confirm_form($form, t('Are you sure you want to remove the profile for %name?', array(
    '%name' => $language['name'],
  )), 'admin/settings/calendar_systems', t('This action cannot be undone.'), t('Remove'), t('Cancel'));
}

/**
 * Submit callback for Calendar systems profile delete form.
 *
 * @see calendar_systems_profile_delete_confirm()
 */
function calendar_systems_profile_delete_confirm_submit($form, &$form_state) {
  $format = $form_state['values']['format'];
  calendar_systems_profile_delete($format->format);
  drupal_set_message(t('Calendar systems profile for %name has been deleted.', array(
    '%name' => $format->name,
  )));
  $form_state['redirect'] = 'admin/settings/calendar_systems';
}

/**
 * Remove a profile from the database.
 */
function calendar_systems_profile_delete($format) {
  db_query("DELETE FROM {calendar_systems} WHERE language = %d", $format);
}

Functions

Namesort descending Description
calendar_systems_is_patch_applied Check to see whether the require patch is applied or not
calendar_systems_profile_delete Remove a profile from the database.
calendar_systems_profile_delete_confirm Delete editor profile confirmation form.
calendar_systems_profile_delete_confirm_submit Submit callback for Calendar systems profile delete form.
calendar_systems_profile_form Form builder for Calendar systems profile form.
calendar_systems_profile_form_submit Submit callback for Calendar systems profile form.
calendar_systems_profile_overview Display overview of setup Calendar systems Editor profiles; menu callback.
calendar_systems_profile_overview_submit Submit callback for Calendar systems profile overview form.
theme_calendar_systems_admin_button_table Layout for the buttons in the Calendar systems Editor profile form.
theme_calendar_systems_profile_overview Return HTML for the Calendar systems profile overview form.