Full ELMS Learning Network documentation
function hook_ckeditor_link_TYPE_url
cis7 ckeditor_link.api.php | hook_ckeditor_link_TYPE_url($path, $langcode) |
cle7 ckeditor_link.api.php | hook_ckeditor_link_TYPE_url($path, $langcode) |
elmsmedia7 ckeditor_link.api.php | hook_ckeditor_link_TYPE_url($path, $langcode) |
icor7 ckeditor_link.api.php | hook_ckeditor_link_TYPE_url($path, $langcode) |
meedjum_blog7 ckeditor_link.api.php | hook_ckeditor_link_TYPE_url($path, $langcode) |
mooc7 ckeditor_link.api.php | hook_ckeditor_link_TYPE_url($path, $langcode) |
Convert an internal path into an aliased and, if applicable, language prefixed URL.
Parameters
$path: The internal path to convert.
$langcode: The language code of the path if any, the language code of the text to be filtered otherwise. It should only be used as a fallback when the content being linked to does not have any intrisic language.
Return value
An URL alias, or nothing if the implementing module is not responsible for the given path.
2 functions implement hook_ckeditor_link_TYPE_url()
Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.
- ckeditor_link_ckeditor_link_node_url in sites/
all/ modules/ ulmus/ ckeditor_link/ includes/ ckeditor_link.node.inc - Implementation of hook_ckeditor_link_TYPE_url().
- ckeditor_link_ckeditor_link_taxonomy_url in sites/
all/ modules/ ulmus/ ckeditor_link/ includes/ ckeditor_link.taxonomy.inc - Implementation of hook_ckeditor_link_TYPE_url().
File
- sites/
all/ modules/ ulmus/ ckeditor_link/ ckeditor_link.api.php, line 111 - Hooks that can be implemented by other modules to extend CKEditor Link.
Code
function hook_ckeditor_link_TYPE_url($path, $langcode) {
//
}