function imagecache_actions_file_field_description in ImageCache Actions 7
Same name and namespace in other branches
- 8 utility.inc \imagecache_actions_file_field_description()
Return value
string
4 calls to imagecache_actions_file_field_description()
- canvasactions_canvas2file_form in canvasactions/
canvasactions.inc - Image effect form callback for the underlay (background) effect.
- canvasactions_file2canvas_form in canvasactions/
canvasactions.inc - Image effect form callback for the overlay (watermark) effect.
- canvasactions_imagemask_form in canvasactions/
canvasactions.inc - Image effect form callback for the image mask effect.
- image_effects_text_form_inc in image_effects_text/
image_effects_text.inc - Image effect form callback for the text effect.
File
- ./
utility.inc, line 47 - utility.inc: uitility form, conversion and rendering functions for image processing.
Code
function imagecache_actions_file_field_description() {
return t('File is either a file with one of the valid schemes, an absolute path, or a relative path (relative to the current directory, probably the Drupal site root). Valid schemes are a.o. private://, public://, and if the !module module has been installed, also module:// and theme://.', array(
'!module' => l('System Stream Wrapper', 'https://drupal.org/project/system_stream_wrapper', array(
'external' => TRUE,
)),
));
}