You are here

views_rss_dc.install in Views RSS 6.2

(Un)installation functions for Views RSS: DC Elements module.

File

modules/views_rss_dc/views_rss_dc.install
View source
<?php

/**
 * @file
 * (Un)installation functions for Views RSS: DC Elements module.
 */

/**
 * Implementation of hook_install().
 */
function views_rss_dc_install() {
  drupal_load('module', 'views_rss_dc');
  views_rss_dc_update_6200();
  cache_clear_all('views_rss:', 'cache_views', TRUE);
}

/**
 * Implementation of hook_uninstall().
 */
function views_rss_dc_uninstall() {
  if (db_table_exists('cache_views')) {
    cache_clear_all('views_rss:', 'cache_views', TRUE);
  }
}

/**
 * Migrate feed Dublin Core elements settings from Views RSS 6.x-1.0-beta5 format.
 */
function views_rss_dc_update_6200() {
  $sql = "SELECT vd.*, vv.name FROM {views_display} vd JOIN {views_view} vv USING(vid) WHERE vd.display_plugin = 'feed'";
  $result = db_query($sql);
  while ($row = db_fetch_array($result)) {
    $updated = FALSE;
    $display_options = unserialize($row['display_options']);
    if ($display_options['style_plugin'] == 'rss_fields') {

      // Get list of feed item elements defined by this module.
      $defined_elements = views_rss_dc_views_rss_item_elements();

      // Process old elements.
      if (!empty($display_options['style_options']['fields'])) {
        foreach ($display_options['style_options']['fields'] as $full_name => $value) {
          $field_elements = explode(':', $full_name);
          $field_name = array_pop($field_elements);
          if (in_array($full_name, array_keys($defined_elements))) {
            $display_options['style_options']['item']['dc']['views_rss_dc'][$field_name] = $value;
            unset($display_options['style_options']['fields'][$full_name]);
            $updated = TRUE;

            // Check if old "fields" array is empty and unset it if so.
            if (empty($display_options['style_options']['fields'])) {
              unset($display_options['style_options']['fields']);
            }
          }
        }
      }
    }
    if ($updated) {
      $sql = "UPDATE {views_display} SET display_options = '%s' WHERE vid = %d AND id = '%s'";
      db_query($sql, serialize($display_options), $row['vid'], $row['id']);
      drupal_set_message(t('%type feed elements have been updated in %view_name.', array(
        '%type' => 'Dublin Core',
        '%view_name' => $row['name'],
      )));
    }
  }
  cache_clear_all('*', 'cache_views');
  return array();
}

Functions

Namesort descending Description
views_rss_dc_install Implementation of hook_install().
views_rss_dc_uninstall Implementation of hook_uninstall().
views_rss_dc_update_6200 Migrate feed Dublin Core elements settings from Views RSS 6.x-1.0-beta5 format.