function contact_load
Loads a contact category.
Parameters
$cid: The contact category ID.
Return value
An array with the contact category's data.
1 call to contact_load()
- contact_site_form_submit in modules/
contact/ contact.pages.inc - Form submission handler for contact_site_form().
File
-
modules/
contact/ contact.module, line 156
Code
function contact_load($cid) {
return db_select('contact', 'c')->addTag('translatable')
->fields('c')
->condition('cid', $cid)
->execute()
->fetchAssoc();
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.