function emfield_set_error in Embedded Media Field 6.3
Same name and namespace in other branches
- 5 emfield.module \emfield_set_error()
- 6 emfield.module \emfield_set_error()
- 6.2 emfield.module \emfield_set_error()
3 calls to emfield_set_error()
- emfield_request_header in deprecated/
emfield-deprecated.inc - Get the HTTP Header of media, for mime-type and length.
- emfield_request_xml in deprecated/
emfield-deprecated.inc - When an include file requires to read an xml to receive information, such as for thumbnails, this script can be used to request the xml and return it as an array.
- emfield_system_list in deprecated/
emfield-deprecated.inc - Return an array of installed .inc files and/or loads them upon request. This routine is modeled after drupal_system_listing() (and also depends on it). It's major difference, however, is that it loads .inc files by default.
File
- deprecated/
emfield-deprecated.inc, line 496 - Functionality to be deprecated from earlier versions of Embedded Media Field.
Code
function emfield_set_error($error) {
watchdog('emfield', '!error', array(
'!error' => $error,
), WATCHDOG_WARNING);
}