You are here

function custom_breadcrumbs_paths_install in Custom Breadcrumbs 6.2

Same name and namespace in other branches
  1. 7.2 custom_breadcrumbs_paths/custom_breadcrumbs_paths.install \custom_breadcrumbs_paths_install()

Implements hook_install().

File

custom_breadcrumbs_paths/custom_breadcrumbs_paths.install, line 11
Install file for the custom_breadcrumbs module.

Code

function custom_breadcrumbs_paths_install() {
  drupal_install_schema('custom_breadcrumbs_paths');

  // Search for Paths breadcrumbs in existing {custom_breadcrumb} and copy to new table.
  drupal_set_message(t('Looking for Specify Path breadcrumbs to copy from {custom_breadcrumb}...'));
  $result = db_query("SELECT * FROM {custom_breadcrumb} WHERE node_type = '%s'", 'Specify Path');
  $found = 0;
  while ($breadcrumb = db_fetch_object($result)) {
    $start = strpos($breadcrumb->paths, "\n");
    $specific_path = drupal_substr($breadcrumb->paths, 0, $start);
    $title = drupal_substr($breadcrumb->titles, strpos($breadcrumb->titles, "\n") + 1);
    $newpath = drupal_substr($breadcrumb->paths, strpos($breadcrumb->paths, "\n") + 1);
    db_query("INSERT INTO {custom_breadcrumbs_paths} (titles, paths, visibility_php, specific_path, set_active_menu, language) VALUES ('%s', '%s', '%s', '%s', %d, '%s' )", $title, $newpath, $breadcrumb->visibility_php, $specific_path, $breadcrumb->set_active_menu, $breadcrumb->language);
    drupal_set_message('Copied path ' . $specific_path . ' to {custom_breadcrumbs_paths}.');
    ++$found;
  }
  if ($found > 0) {
    drupal_set_message(format_plural($found, 'Copied 1 breadcrumb.', 'Copied @count breadcrumbs.'));
    drupal_set_message(t('You can now delete the old Specify Path breadcrumb from <a href="@link">admin/build/custom_breadcrumbs</a>. They will be listed with title Specify Path and page type node.', array(
      '@link' => url('admin/build/custom_breadcrumbs'),
    )));
  }
  else {
    drupal_set_message(t('No Specify Path breadcrumbs were found in {custom_breadcrumbs}'));
  }
}