Files
Chamilo/plugin/mindmap/inc/action.switch.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

61 lines
2.1 KiB
PHP

<?php
/* For licensing terms, see /license.txt */
$varString = api_get_self();
$varUrlProcess = $varString;
switch ($action) {
case 'add':
if ($form->validate()) {
$values = $form->getSubmitValues();
$params = [
'title' => $values['title'],
'user_id' => $userId,
'mindmap_type' => $values['mindmap_type'],
'description' => $values['description'],
'is_public' => (empty($values['is_public']) ? 0 : (int) $values['is_public']),
'is_shared' => (empty($values['is_shared']) ? 0 : (int) $values['is_shared']),
'c_id' => $cid,
'url_id' => $urlId,
'session_id' => $sessionId,
];
$result = Database::insert($plugin->table, $params);
if ($result) {
Display::addFlash(Display::return_message(get_lang('Added')));
}
$varUrlProcess = $varUrlProcess.'?cid='.$cid.'&sid='.$sessionId;
header('Location: '.$varUrlProcess);
exit;
}
break;
case 'edit':
$form->setDefaults($term);
if ($form->validate()) {
$values = $form->getSubmitValues();
$params = [
'title' => $values['title'],
'description' => $values['description'],
'is_public' => $values['is_public'],
'is_shared' => $values['is_shared'],
];
Database::update($plugin->table, $params, ['id = ?' => $id]);
Display::addFlash(Display::return_message(get_lang('Updated')));
$varUrlProcess = $varUrlProcess.'?cid='.$cid.'&sid='.$sessionId;
header('Location: '.$varUrlProcess);
exit;
}
break;
case 'delete':
if (!empty($term)) {
Database::delete($plugin->table, ['id = ?' => $id]);
Display::addFlash(Display::return_message(get_lang('Deleted')));
header('Location: '.$varUrlProcess.'?cid='.$cid.'&sid='.$sessionId);
exit;
}
break;
}