function imageeditor_inline_urltouri in Image Editor 7
3 calls to imageeditor_inline_urltouri()
- imageeditor_inline_revert in imageeditor_inline/
imageeditor_inline.pages.inc - imageeditor_inline_save in imageeditor_inline/
imageeditor_inline.pages.inc - _imageeditor_inline_access_check in imageeditor_inline/
imageeditor_inline.pages.inc
File
- imageeditor_inline/
imageeditor_inline.pages.inc, line 164
Code
function imageeditor_inline_urltouri($url) {
// Allow other modules to recognize url and provide uri.
foreach (module_invoke_all('imageeditor_inline_urltouri', $url) as $value) {
if ($value) {
return rawurldecode($value);
}
}
}