uppdated modules

This commit is contained in:
Bachir Soussi Chiadmi
2017-01-22 16:19:36 +01:00
parent 03be8f82aa
commit 8416e3eea1
748 changed files with 32317 additions and 20900 deletions
@@ -29,4 +29,23 @@ function hook_linkit_search_plugin_entities_alter(&$plugins) {
);
$plugins['my_custom_plugin']['handler'] = $handler;
}
}
}
/**
* Implements hook_linkit_local_hosts_alter().
*
* The default behavior is that only the current host is considered "local",
* when deciding how to classify a URL. For example, if the user is on
* http://www.example.com, then all URLs to other hosts will not be considered
* for local URLs. This means that if your users edit content on a different host
* from the actual public-facing site, such as https://staging.example.com,
* then if they paste in URLs from the public site (www), none of those
* URLs will be considered local.
*
* Implementing this hook will allow you to alter the list (indexed array) of
* hosts that will be considered for internal links. Include the protocol
* (eg, http or https).
*/
function hook_linkit_local_hosts_alter(&$local_hosts) {
$local_hosts[] = 'http://www.example.com';
}