Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.

MP_Addon_SMS_LiveChat::twilio()

Connect to Twillio Client.


Return Return

(TwilioRestClient)


Top ↑

Source Source

File: calculator-sms-add-on/inc/MP_Addon_SMS_LiveChat.php

	private function twilio() {

		$sid   = $this->twilio_account_sid;
		$token = $this->auth_token;

		$twilio = new Client( $sid, $token );

		return $twilio;
	}

Top ↑

Changelog Changelog

Changelog
Version Description
1.0.0 Introduced.