Files
Chamilo/plugin/customcertificate/src/customcertificate.ajax.php
T
Xes 73154ae174
Behat tests 1.11.x 🐞 / PHP 7.4 Test on ubuntu-latest (push) Canceled after 0s
PHP-CS-Fixer / composer_install (7.4) (push) Canceled after 0s
Chamilo 1.11.40 (ZIP oficial v1.11.40)
Fuente: https://github.com/chamilo/chamilo-lms/releases/download/v1.11.40/chamilo-1.11.40.zip
sha256: 1cf4bf2cc7bae1ef1a1eff643235db1d552f78ddf4b6dd1e2d2dac9868679439
Snapshot independiente (rama huerfana); diffable vs 1.11.38. vendor incluido.
2026-08-06 17:59:45 +02:00

52 lines
1.5 KiB
PHP

<?php
/* For licensing terms, see /license.txt */
/**
* Responses to AJAX calls.
*
* @package chamilo.plugin.customcertificate
*/
$cidReset = true;
require_once __DIR__.'/../../../main/inc/global.inc.php';
api_block_anonymous_users();
$plugin = CustomCertificatePlugin::create();
$enable = $plugin->get('enable_plugin_customcertificate') == 'true';
if ($enable === false) {
api_not_allowed();
}
$action = isset($_GET['a']) ? $_GET['a'] : null;
switch ($action) {
case 'delete_certificate':
$table = Database::get_main_table(CustomCertificatePlugin::TABLE_CUSTOMCERTIFICATE);
$courseId = isset($_POST['courseId']) ? (int) $_POST['courseId'] : 0;
$sessionId = isset($_POST['sessionId']) ? (int) $_POST['sessionId'] : 0;
$accessUrlId = isset($_POST['accessUrlId']) ? (int) $_POST['accessUrlId'] : 1;
if (!empty($courseId)) {
$sql = "DELETE FROM $table
WHERE
c_id = $courseId AND
session_id = $sessionId AND
access_url_id = $accessUrlId";
Database::query($sql);
echo Display::return_message(
get_plugin_lang('SuccessDelete', 'CustomCertificatePlugin'),
'success'
);
} else {
echo Display::return_message(
get_plugin_lang('ProblemDelete', 'CustomCertificatePlugin'),
'error',
false
);
}
break;
}