Correcting the style of the code
This commit is contained in:
parent
d235d49dc6
commit
2422592c74
@ -24,24 +24,25 @@
|
|||||||
|
|
||||||
namespace local_webhooks;
|
namespace local_webhooks;
|
||||||
|
|
||||||
defined('MOODLE_INTERNAL') || die();
|
defined("MOODLE_INTERNAL") || die();
|
||||||
|
|
||||||
class curl {
|
class curl {
|
||||||
public function __construct() {
|
public function __construct() {
|
||||||
if (!function_exists('curl_init')) {
|
if (!function_exists("curl_init")) {
|
||||||
print_error('nocurl', 'mnet');
|
print_error("nocurl", "mnet");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function request($url, $data) {
|
public static function request($url, $data) {
|
||||||
$ch = curl_init($url);
|
$ch = curl_init($url);
|
||||||
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'POST');
|
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
|
||||||
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
|
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
|
||||||
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
||||||
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
|
curl_setopt($ch, CURLOPT_HTTPHEADER,
|
||||||
'Content-Type: application/json',
|
array(
|
||||||
'Content-Length: ' . strlen($data))
|
"Content-Type: application/json",
|
||||||
);
|
"Content-Length: " . strlen($data))
|
||||||
|
);
|
||||||
|
|
||||||
$result = curl_exec($ch);
|
$result = curl_exec($ch);
|
||||||
curl_close($ch);
|
curl_close($ch);
|
||||||
|
@ -27,6 +27,7 @@ namespace local_webhooks;
|
|||||||
defined("MOODLE_INTERNAL") || die();
|
defined("MOODLE_INTERNAL") || die();
|
||||||
|
|
||||||
require_once($CFG->libdir . "/formslib.php");
|
require_once($CFG->libdir . "/formslib.php");
|
||||||
|
|
||||||
use lang_string;
|
use lang_string;
|
||||||
use moodleform;
|
use moodleform;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user