forked from moodle/moodle
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
commiting delete groupmember function
MDL-12886
- Loading branch information
pigui
committed
Feb 3, 2009
1 parent
bec1878
commit 39b99c6
Showing
3 changed files
with
98 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
<?php | ||
/** | ||
* | ||
* Rest Test Client | ||
* | ||
* @author David Castro Garcia | ||
* @author Ferran Recio Calderó | ||
* @author Jordi Piguillem | ||
*/ | ||
|
||
require_once ('config_rest.php'); | ||
|
||
$params = array('groupid', 'userid'); | ||
|
||
foreach ($params as $param) { | ||
$$param = (isset($_POST[$param]))?$_POST[$param]:''; | ||
} | ||
|
||
start_interface("Delete group member from a group"); | ||
?> | ||
|
||
<form action="deletegroupmember.php" method="post"> | ||
<table border="0"> | ||
<tr><td>Group id: </td><td><input type="text" name="groupid" value="<?php echo $groupid; ?>"/></td></tr> | ||
<tr><td>User id: </td><td><input type="text" name="userid" value="<?php echo $userid; ?>"/></td></tr> | ||
<tr><td></td><td><input type="submit" value="Delete"></td></tr> | ||
</table> | ||
</form> | ||
|
||
<?php | ||
|
||
if ($groupid && $userid) { | ||
|
||
var_dump($CFG->serverurl.'/group/tmp_delete_groupmember'); | ||
|
||
|
||
//we are asking for a token | ||
$connectiondata['username'] = 'wsuser'; | ||
$connectiondata['password'] = 'wspassword'; | ||
$ch = curl_init(); | ||
curl_setopt($ch, CURLOPT_URL, $CFG->serverurl.'/user/tmp_get_token'); | ||
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); | ||
curl_setopt($ch, CURLOPT_POST, 1); | ||
curl_setopt($ch, CURLOPT_POSTFIELDS, format_postdata($connectiondata)); | ||
$token = curl_exec($ch); | ||
|
||
$data['token'] = $token; | ||
$data['groupid'] = $groupid; | ||
$data['userid'] = $userid; | ||
|
||
$ch = curl_init(); | ||
curl_setopt($ch, CURLOPT_URL, $CFG->serverurl.'/group/tmp_delete_groupmember'); | ||
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); | ||
curl_setopt($ch, CURLOPT_POST, 1); | ||
curl_setopt($ch, CURLOPT_POSTFIELDS, format_postdata($data)); | ||
$out = curl_exec($ch); | ||
|
||
$res = basicxml_xml_to_object($out); | ||
|
||
show_object($res->result); | ||
|
||
show_xml ($out); | ||
} else { | ||
echo "<p>Fill the form first</p>"; | ||
} | ||
|
||
end_interface(); | ||
|
||
?> |