You are here

function twilio_twiml_rules_action_twiml_output in Twilio 7

Action: Output TwiML.

1 string reference to 'twilio_twiml_rules_action_twiml_output'
twilio_twiml_rules_action_info in twilio_twiml/twilio_twiml.rules.inc
Implements hook_rules_action_info().

File

twilio_twiml/twilio_twiml.rules.inc, line 33
Rules module integration

Code

function twilio_twiml_rules_action_twiml_output($twiml_id) {

  // Load our TwiML.
  $twiml = twilio_twiml_load($twiml_id);

  // Call for output of the TwiML.
  twilio_twiml_display($twiml);
}