You are here

front_page.install in Front Page 7.2

Same filename and directory in other branches
  1. 6.2 front_page.install
  2. 7 front_page.install

Install, update and uninstall functions for the front page module.

File

front_page.install
View source
<?php

/**
 * @file
 * Install, update and uninstall functions for the front page module.
 */

/**
 * Implements hook_install().
 */
function front_page_install() {
}

/**
 * Implements hook_uninstall().
 */
function front_page_uninstall() {
  variable_del('front_page_enable');
  foreach (user_roles() as $rid => $role) {
    variable_del("front_page_role_{$rid}");
  }
}

/**
 * Update 7200 - Add table if not already added, transfer data into the table and correct special notice times.
 */
function front_page_update_7200() {
  if (!db_table_exists('front_page')) {
    $schema = drupal_get_schema_unprocessed('front_page');
    _drupal_schema_initialize($schema, 'front_page', FALSE);
    if (isset($schema['front_page'])) {
      db_create_table('front_page', $schema['front_page']);
    }

    // need to add front page data from variables table to new table.
    $formats = filter_formats();
    $formats = drupal_map_assoc(array_keys($formats));
    $default_format = array_shift($formats);
    $php_format = isset($formats['php_code']) ? 'php_code' : $default_format;
    $roles = user_roles();
    foreach ($roles as $rid => $role_name) {
      $mode = variable_get('front_' . $rid . '_type', '');
      if (!empty($mode)) {
        switch ($mode) {
          case 'themed':
          case 'full':
            $data = variable_get('front_' . $rid . '_text', '');
            $format = $default_format;
            if (variable_get('front_' . $rid . '_php', 0)) {
              $format = $php_format;
            }
            break;
          case 'redirect':
          case 'alias':
            $data = variable_get('front_' . $rid . '_redirect', '');
            $format = '';
            break;
          default:
            $mode = '';
            $format = '';
            $data = '';
            break;
        }
        $weight = $rid * -1;
        db_merge('front_page')
          ->key(array(
          'rid' => $rid,
        ))
          ->fields(array(
          'mode' => $mode,
          'data' => $data,
          'filter_format' => $format,
          'weight' => $weight,
        ))
          ->execute();
        variable_del('front_' . $rid . '_type');
        variable_del('front_' . $rid . '_text');
        variable_del('front_' . $rid . '_php');
        variable_del('front_' . $rid . '_redirect');
      }
    }
  }
  if (variable_get('site_frontpage', 'node') == 'front_page') {
    variable_set('site_frontpage', 'node');
  }
}
function front_page_update_7201() {
  variable_del('special_notice_time');
  variable_del('special_notice_text');
  variable_del('front_page_breadcrumb');
  $path = variable_get('front_page_breadcrumb_redirect', '');
  variable_set('front_page_home_link_path', $path);
  variable_del('front_page_breadcrumb_redirect');
}

/**
 * Move data from front_page table to variables and drop table.
 */
function front_page_update_7202() {
  $result = db_select('front_page', 'fp')
    ->fields('fp')
    ->execute();
  foreach ($result as $role) {
    variable_set("front_page_role_{$role->rid}", (array) $role);
  }
  if (db_table_exists('front_page')) {
    db_drop_table('front_page');
  }
}

Functions

Namesort descending Description
front_page_install Implements hook_install().
front_page_uninstall Implements hook_uninstall().
front_page_update_7200 Update 7200 - Add table if not already added, transfer data into the table and correct special notice times.
front_page_update_7201
front_page_update_7202 Move data from front_page table to variables and drop table.