function certificate_certificate_load_all in Certificate 8.3
Same name and namespace in other branches
- 6.2 certificate.module \certificate_certificate_load_all()
- 6 certificate.module \certificate_certificate_load_all()
- 7.3 certificate.module \certificate_certificate_load_all()
- 7.2 certificate.module \certificate_certificate_load_all()
- 3.x certificate.module \certificate_certificate_load_all()
Public loader function for the full collection of certificates.
Return value
An array of all certificates, keyed by certificate ID.
3 calls to certificate_certificate_load_all()
- certificate_get_template_options in ./
certificate.module - Return an array of certificate templates suitable for use in an options form element.
- certificate_mapping_form in ./
certificate.admin.inc - Add mapping elements to a form.
- certificate_type_mapping_form in ./
certificate.admin.inc - Returns the form for the per-node certificate settings.
File
- ./
certificate.module, line 232 - Certificate module.
Code
function certificate_certificate_load_all() {
return entity_load('certificate');
}