Example #1
0
 /**
  * Enables or disables a registered user device so it can receive Push notifications
  *
  * @param  integer $deviceid the device id
  * @param  bool $enable whether to enable the device
  * @return array warnings and success status
  * @throws moodle_exception
  * @since Moodle 3.2
  */
 public static function enable_device($deviceid, $enable)
 {
     global $USER;
     $params = self::validate_parameters(self::enable_device_parameters(), array('deviceid' => $deviceid, 'enable' => $enable));
     $context = context_system::instance();
     self::validate_context($context);
     require_capability('message/airnotifier:managedevice', $context);
     if (!message_airnotifier_manager::enable_device($params['deviceid'], $params['enable'])) {
         throw new moodle_exception('unknowndevice', 'message_airnotifier');
     }
     return array('success' => true, 'warnings' => array());
 }
Example #2
0
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
/**
 * Provide interface for AJAX device actions
 *
 * @copyright 2012 Jerome Mouneyrac
 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
 * @package message_airnotifier
 */
define('AJAX_SCRIPT', true);
require_once __DIR__ . '/../../../config.php';
// Initialise ALL the incoming parameters here, up front.
$id = required_param('id', PARAM_INT);
$enable = required_param('enable', PARAM_BOOL);
require_login();
require_sesskey();
$systemcontext = context_system::instance();
$PAGE->set_url('/message/output/airnotifier/rest.php');
$PAGE->set_context($systemcontext);
require_capability('message/airnotifier:managedevice', $systemcontext);
echo $OUTPUT->header();
// Response class to be converted to json string.
$response = new stdClass();
if (!message_airnotifier_manager::enable_device($id, $enable)) {
    throw new moodle_exception('unknowndevice', 'message_airnotifier');
}
$response->success = true;
echo json_encode($response);
die;