function _surl in ShURLy 7
Same name and namespace in other branches
- 8 shurly.module \_surl()
- 6 shurly.module \_surl()
Internal function to call url() without language prefixing or subdomain rewrites
6 calls to _surl()
- shurly_block_content_bookmarklet in ./
shurly.module - Generate Shurly bookmarklet for respective block
- shurly_create_form_submit in ./
shurly.module - Submission of the main form
- shurly_create_form_validate in ./
shurly.module - Validation of the main form
- shurly_expand in ./
shurly.module - Function to get the long url.
- shurly_handler_field_short_url::render in views/
shurly_handler_field_short_url.inc - Render the field.
File
- ./
shurly.module, line 1158 - description http://www.youtube.com/watch?v=Qo7qoonzTCE
Code
function _surl($path = NULL, $options = array()) {
$options['language'] = _shurly_language_stub();
return url($path, $options);
}