You are here

function search_restrict_update_6002 in Search Restrict 6

Same name and namespace in other branches
  1. 6.2 search_restrict.install \search_restrict_update_6002()

Convert content type settings to new format.

File

./search_restrict.install, line 36

Code

function search_restrict_update_6002() {
  $ret = array();
  $types = variable_get('search_restrict_content_type', array());
  foreach ($types as $type => $roles) {
    variable_set('search_restrict_type_' . $type, $roles);
  }
  variable_del('search_restrict_content_type');
  return $ret;
}