Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Giehl <stefan@piwik.org>2017-02-19 13:28:59 +0300
committerMatthieu Aubry <mattab@users.noreply.github.com>2017-02-19 13:28:59 +0300
commit471aaea1166bc71c8bd28c953e4b192f72646070 (patch)
treedb3f3dcbb6e6e21e312b0babd11ac4c2dd16fb4d /plugins/MobileMessaging/SMSProvider/StubbedProvider.php
parent918ef6f92c9a44be67fc8d11442f6eefd925e781 (diff)
Implements new SMS Provider ASPSMS.com (#11263)
* makes it possible to define the required credential fields in sms provider * show error message if configured sms provider doesn't work, instead of throwing uncatched exception * Adds new SMS provider ASPSMS.com * Development SMS notifications didn't work when clicking 'send now' Caused by the session already closed before, as it's done using a ajax request calling a Session:start() reopens the session. Might be a bit hackish, but should be fine for development * adds UI test for switching sms provider * Makes API-Key default credential field to prevent breaking third party plugins * fixes issue where save button was disabled falsely
Diffstat (limited to 'plugins/MobileMessaging/SMSProvider/StubbedProvider.php')
-rw-r--r--plugins/MobileMessaging/SMSProvider/StubbedProvider.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/MobileMessaging/SMSProvider/StubbedProvider.php b/plugins/MobileMessaging/SMSProvider/StubbedProvider.php
index 8bda726a3e..4f1d1e2d14 100644
--- a/plugins/MobileMessaging/SMSProvider/StubbedProvider.php
+++ b/plugins/MobileMessaging/SMSProvider/StubbedProvider.php
@@ -33,17 +33,17 @@ class StubbedProvider extends SMSProvider
return defined('PIWIK_TEST_MODE') && PIWIK_TEST_MODE;
}
- public function verifyCredential($apiKey)
+ public function verifyCredential($credentials)
{
return true;
}
- public function sendSMS($apiKey, $smsText, $phoneNumber, $from)
+ public function sendSMS($credentials, $smsText, $phoneNumber, $from)
{
// nothing to do
}
- public function getCreditLeft($apiKey)
+ public function getCreditLeft($credentials)
{
return 1;
}