You are here

function certificate_load_single in Certificate 7.3

Same name and namespace in other branches
  1. 8.3 certificate.module \certificate_load_single()

Load a single certificate by ID or name.

Wrapper around entity_load_single().

Parameters

mixed: A certificate ID or name.

1 string reference to 'certificate_load_single'
certificate_form in ./certificate.module
Certificate node form.

File

./certificate.module, line 899
Certificate module.

Code

function certificate_load_single($name) {
  return entity_load_single('certificate', $name);
}