@@ -7,7 +7,7 @@ |
||
7 | 7 | * @package chamilo.plugin.kannelsms |
8 | 8 | * @author Imanol Losada <[email protected]> |
9 | 9 | */ |
10 | -require_once __DIR__ . '/../../main/inc/global.inc.php'; |
|
10 | +require_once __DIR__.'/../../main/inc/global.inc.php'; |
|
11 | 11 | |
12 | 12 | require_once 'lib/kannelsms.lib.php'; |
13 | 13 | require_once 'vendor/kannelsms_api.php'; |
@@ -20,8 +20,8 @@ |
||
20 | 20 | */ |
21 | 21 | class KannelException extends \Exception { |
22 | 22 | |
23 | - public function __construct( $message, $code = 0 ) { |
|
23 | + public function __construct($message, $code = 0) { |
|
24 | 24 | // make sure everything is assigned properly |
25 | - parent::__construct( $message, $code ); |
|
25 | + parent::__construct($message, $code); |
|
26 | 26 | } |
27 | 27 | } |
@@ -75,14 +75,13 @@ |
||
75 | 75 | $trimmedKey = trim(CONFIG_SECURITY_API_KEY); |
76 | 76 | if (!empty($trimmedKey)) { |
77 | 77 | $message = array( |
78 | - "to" => array_key_exists("mobilePhoneNumber",$additionalParameters) ? |
|
79 | - $additionalParameters['mobilePhoneNumber'] : |
|
80 | - $this->getMobilePhoneNumberById($additionalParameters['userId']), |
|
78 | + "to" => array_key_exists("mobilePhoneNumber", $additionalParameters) ? |
|
79 | + $additionalParameters['mobilePhoneNumber'] : $this->getMobilePhoneNumberById($additionalParameters['userId']), |
|
81 | 80 | "message" => $this->getSms($additionalParameters) |
82 | 81 | ); |
83 | 82 | |
84 | 83 | if (!empty($message['message'])) { |
85 | - if(extension_loaded('curl')) { |
|
84 | + if (extension_loaded('curl')) { |
|
86 | 85 | $url = $this->hostAddress.'?username='. |
87 | 86 | $this->username.'&password='.$this->password.'&from='. |
88 | 87 | $this->from.'&to='.$message['to'].'&msg='.urlencode($message['message']); |
@@ -9,6 +9,6 @@ |
||
9 | 9 | * @author Laurent Opprecht |
10 | 10 | */ |
11 | 11 | |
12 | -require_once dirname(__FILE__) . '/lib/rss_plugin.class.php'; |
|
12 | +require_once dirname(__FILE__).'/lib/rss_plugin.class.php'; |
|
13 | 13 | |
14 | 14 | $plugin_info = RssPlugin::create()->get_info(); |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | /* For license terms, see /license.txt */ |
3 | -require_once dirname(__FILE__) . '/config.php'; |
|
3 | +require_once dirname(__FILE__).'/config.php'; |
|
4 | 4 | |
5 | 5 | // Course legal |
6 | 6 | $enabled = api_get_plugin_setting('courselegal', 'tool_enable'); |
@@ -19,7 +19,7 @@ discard block |
||
19 | 19 | $url = api_get_self().'?'.api_get_cidreq(); |
20 | 20 | |
21 | 21 | $action = isset($_GET['action']) ? $_GET['action'] : null; |
22 | -switch($action) { |
|
22 | +switch ($action) { |
|
23 | 23 | case 'resend': |
24 | 24 | if (isset($_GET['user_id'])) { |
25 | 25 | $legal->updateMailAgreementLink($_GET['user_id'], $courseId, $sessionId); |
@@ -1,7 +1,7 @@ |
||
1 | 1 | <?php |
2 | 2 | /* For license terms, see /license.txt */ |
3 | 3 | |
4 | -require_once dirname(__FILE__) . '/config.php'; |
|
4 | +require_once dirname(__FILE__).'/config.php'; |
|
5 | 5 | |
6 | 6 | // Course legal |
7 | 7 | $enabled = api_get_plugin_setting('courselegal', 'tool_enable'); |
@@ -1,7 +1,7 @@ |
||
1 | 1 | <?php |
2 | 2 | /* For license terms, see /license.txt */ |
3 | 3 | |
4 | -require_once dirname(__FILE__) . '/config.php'; |
|
4 | +require_once dirname(__FILE__).'/config.php'; |
|
5 | 5 | |
6 | 6 | if (!api_is_platform_admin()) { |
7 | 7 | die ('You must have admin permissions to install plugins'); |
@@ -40,8 +40,8 @@ |
||
40 | 40 | $ErrorSeverityCode = urldecode($resArray["L_SEVERITYCODE0"]); |
41 | 41 | |
42 | 42 | echo "SetExpressCheckout API call failed. "; |
43 | - echo "Detailed Error Message: " . $ErrorLongMsg; |
|
44 | - echo "Short Error Message: " . $ErrorShortMsg; |
|
45 | - echo "Error Code: " . $ErrorCode; |
|
46 | - echo "Error Severity Code: " . $ErrorSeverityCode; |
|
43 | + echo "Detailed Error Message: ".$ErrorLongMsg; |
|
44 | + echo "Short Error Message: ".$ErrorShortMsg; |
|
45 | + echo "Error Code: ".$ErrorCode; |
|
46 | + echo "Error Severity Code: ".$ErrorSeverityCode; |
|
47 | 47 | } |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | |
58 | 58 | unset($_SESSION['bc_sale_id']); |
59 | 59 | |
60 | - header('Location: ' . api_get_path(WEB_PLUGIN_PATH) . 'buycourses/index.php'); |
|
60 | + header('Location: '.api_get_path(WEB_PLUGIN_PATH).'buycourses/index.php'); |
|
61 | 61 | exit; |
62 | 62 | } |
63 | 63 | |
@@ -166,7 +166,7 @@ discard block |
||
166 | 166 | } |
167 | 167 | |
168 | 168 | unset($_SESSION['bc_sale_id']); |
169 | - header('Location: ' . api_get_path(WEB_PLUGIN_PATH) . 'buycourses/src/course_catalog.php'); |
|
169 | + header('Location: '.api_get_path(WEB_PLUGIN_PATH).'buycourses/src/course_catalog.php'); |
|
170 | 170 | exit; |
171 | 171 | } |
172 | 172 |