function slack_get_default_attachment_pretext in Slack 7
Get default Slack attachment pretext value.
Return value
string Get default Slack attachment pretext value.
1 call to slack_get_default_attachment_pretext()
- slack_rules_send_message_action in ./
slack.rules.inc - Rules action for sending a message to the Slack.
File
- includes/
slack.api.inc, line 236 - Slack integration module API functions.
Code
function slack_get_default_attachment_pretext() {
$attachment_pretext = variable_get('slack_attachment_pretext');
return $attachment_pretext;
}