function path_breadcrumbs_update_7208 in Path Breadcrumbs 7.2
Same name and namespace in other branches
- 7.3 path_breadcrumbs.install \path_breadcrumbs_update_7208()
Migrate variables for delimiter and for rich snippert to a new variables name storage.
File
- ./path_breadcrumbs.install, line 172 
- Provides database structure for PATH BREADCRUMBS module.
Code
function path_breadcrumbs_update_7208() {
  // Move delimiter value from old variable to a new one.
  $delimiter = variable_get('path_breadcrumbs_delimited', '»');
  variable_set('path_breadcrumbs_delimiter', $delimiter);
  variable_del('path_breadcrumbs_delimited');
  // Move RDFa support from old variable to a new one.
  $rdfa_enabled = variable_get('path_breadcrumbs_rdfa_enabled', 0);
  if ($rdfa_enabled) {
    variable_set('path_breadcrumbs_rich_snippets', PATH_BREADCRUMBS_RICH_SNIPPETS_RDFA);
  }
  else {
    variable_set('path_breadcrumbs_rich_snippets', PATH_BREADCRUMBS_RICH_SNIPPETS_DISABLED);
  }
  variable_del('path_breadcrumbs_rdfa_enabled');
}