You are here

function slack_get_default_attachment_author_link in Slack 7

Get default Slack attachment author link value.

Return value

string Get default Slack attachment author link value.

1 call to slack_get_default_attachment_author_link()
slack_rules_send_message_action in ./slack.rules.inc
Rules action for sending a message to the Slack.

File

includes/slack.api.inc, line 291
Slack integration module API functions.

Code

function slack_get_default_attachment_author_link() {
  $attachment_author_link = variable_get('slack_attachment_author_link');
  return $attachment_author_link;
}