You are here

function heartbeat_get_message_types in Heartbeat 6.3

Function to get the message types

1 call to heartbeat_get_message_types()
heartbeat_messages_edit in ./heartbeat.admin.inc
Function to maintain and administer heartbeat messages

File

./heartbeat.module, line 806

Code

function heartbeat_get_message_types() {
  $types = variable_get('message_types', array(
    'normal',
  ));
  return drupal_map_assoc($types);
}