function emfield_audit in Embedded Media Field 6.2
This will audit all nodes to ensure all emfield providers are present.
The function will pass through all emfield fields to see if there is any content in the system without a provider.
Return value
array An array of all missing providers. Ideally the array will be empty.
1 call to emfield_audit()
File
- ./
emfield.module, line 938 - Embedded Media Field is a CCK-based framework for 3rd party media files.
Code
function emfield_audit() {
module_load_include('inc', 'emfield', 'includes/emfield.audit');
return _emfield_audit();
}