activated pathauto for url aliases

This commit is contained in:
Bachir Soussi Chiadmi
2018-03-29 23:57:27 +02:00
parent 33a04c55b1
commit 4921e8189b
279 changed files with 30072 additions and 0 deletions
@@ -0,0 +1,20 @@
<?php
/**
* @file
* Drush integration for the Token module.
*/
/**
* Implements hook_drush_cache_clear().
*/
function token_drush_cache_clear(&$types) {
$types['token'] = 'drush_token_cache_clear_token_info';
}
/**
* Clear caches internal to Token module.
*/
function drush_token_cache_clear_token_info() {
token_clear_cache();
}