You are here

function messaging_element_info in Messaging 7

Implements hook_element_info()

File

./messaging.module, line 711

Code

function messaging_element_info() {
  $types['messaging_text'] = array(
    '#theme' => 'messaging_text',
    '#options' => array(),
    '#format' => MESSAGING_FORMAT,
    '#markup' => '',
    '#pre_render' => array(
      'drupal_pre_render_markup',
    ),
  );
  return $types;
}