function _ckeditor_link_check_path in CKEditor Link 6.2
Same name and namespace in other branches
- 7.2 ckeditor_link.module \_ckeditor_link_check_path()
2 calls to _ckeditor_link_check_path()
- ckeditor_link_ckeditor_link_i18nmenu_autocomplete in includes/
ckeditor_link.i18nmenu.inc - Implementation of hook_ckeditor_link_TYPE_autocomplete().
- ckeditor_link_ckeditor_link_menu_autocomplete in includes/
ckeditor_link.menu.inc - Implementation of hook_ckeditor_link_TYPE_autocomplete().
File
- ./
ckeditor_link.module, line 342 - Written by Henri MEDOT <henri.medot[AT]absyx[DOT]fr> http://www.absyx.fr
Code
function _ckeditor_link_check_path($path) {
return preg_match('`^[a-z][\\w\\/\\.-]*$`i', $path);
}