function flag_heartbeat_message::default_options in Heartbeat 6.3
Same name and namespace in other branches
- 6.4 modules/flag_heartbeat/class.flag_heartbeat_message.inc \flag_heartbeat_message::default_options()
File
- modules/
flag_heartbeat/ class.flag_heartbeat_message.inc, line 7
Class
- flag_heartbeat_message
- Implements a Heartbeat message flag.
Code
function default_options() {
$options = parent::default_options();
$options += array(
'show_on_heartbeat_message' => TRUE,
);
return $options;
}