You are here

function heartbeat_allowed_html_tags in Heartbeat 7

3 calls to heartbeat_allowed_html_tags()
HeartbeatStream::result in includes/heartbeatstream.inc
result Prepares a query, makes it available to alter it and finally executes it.
heartbeat_admin_settings in modules/heartbeat_ui/heartbeat_ui.admin.inc
Function to maintain and administer heartbeat settings.
heartbeat_get_message_reactions in modules/heartbeat_comments/heartbeat_comments.module
Get heartbeat comments on a message

File

./heartbeat.module, line 1670
Module file for heartbeat activity. Basic hook implementations and helper functions will be found here.

Code

function heartbeat_allowed_html_tags() {
  $tags = variable_get('heartbeat_allowed_html_tags', 'a em strong blockquote ul ol li p div');
  return explode(" ", $tags);
}