You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
372 B
20 lines
372 B
4 years ago
|
<?php
|
||
|
|
||
|
/**
|
||
|
* @file
|
||
|
* Install file for Rules i18n.
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* Implements hook_install().
|
||
|
*/
|
||
|
function rules_i18n_install() {
|
||
|
global $language;
|
||
|
|
||
|
$langcode = $language->language;
|
||
|
drupal_static_reset('i18n_object_info');
|
||
|
drupal_static_reset('entity_get_info');
|
||
|
drupal_static_reset('entity_i18n_controller');
|
||
|
cache_clear_all("entity_info:$langcode", 'cache');
|
||
|
}
|