You are here

function social_comments_element_info in Open Social 7

Implements hook_element_info().

File

./social_comments.module, line 154

Code

function social_comments_element_info() {
  $elements = array();
  $elements['social_comments_field'] = array(
    '#input' => TRUE,
    '#process' => array(
      'social_comments_field_process',
    ),
    '#theme_wrappers' => array(
      'form_element',
    ),
  );
  return $elements;
}