You are here

function emfield_set_error in Embedded Media Field 6.2

Same name and namespace in other branches
  1. 5 emfield.module \emfield_set_error()
  2. 6.3 deprecated/emfield-deprecated.inc \emfield_set_error()
  3. 6 emfield.module \emfield_set_error()
3 calls to emfield_set_error()
emfield_request_header in ./emfield.module
Get the HTTP Header of media, for mime-type and length.
emfield_request_xml in ./emfield.module
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 ./emfield.module
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

./emfield.module, line 545
Embedded Media Field is a CCK-based framework for 3rd party media files.

Code

function emfield_set_error($error) {
  watchdog('emfield', '!error', array(
    '!error' => $error,
  ), WATCHDOG_WARNING);
}