/**
  * Adds all other events for the plugin framework to the application
  */
 public function add()
 {
     // Add the nexmo plugin to the list of SMS providers
     plugin::add_sms_provider('nexmo');
     // Add Nexmo CSS
     plugin::add_stylesheet('nexmo/views/css/nexmo');
     // Add event callbacks
     Event::add('nexmo_action.update_message_log', array($this, 'update_message_log'));
 }
 /**
  * Adds all the events to the main Ushahidi application
  */
 public function add()
 {
     // SMS Provider
     plugin::add_sms_provider("Private SMS Gateway");
 }
예제 #3
0
 /**
  * Adds all the events to the main Ushahidi application
  */
 public function add()
 {
     // SMS Provider
     plugin::add_sms_provider("smssync");
 }
예제 #4
0
 /**
  * Adds all the events to the main Ushahidi application
  */
 public function add()
 {
     // SMS Provider
     plugin::add_sms_provider("clickatell");
 }
예제 #5
0
 /**
  * Adds all the events to the main Ushahidi application
  */
 public function add()
 {
     // SMS Provider
     plugin::add_sms_provider("frontlinesms");
 }