Files
Chamilo/plugin/mindmap/inc/edit.form.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

26 lines
917 B
PHP

<?php
/* For licensing terms, see /license.txt */
/**
* Generate the form to add/edit a mindmap record.
*/
$form = new FormValidator(
'dictionary',
'post',
api_get_self().'?action='.$action.'&id='.$id.'&cid='.$cid.'&sid='.$sessionId
);
if ($action === 'add' || $action === 'edit') {
$form->addText('title', get_lang('Title'), true);
$form->addText('description', get_lang('Description'), false);
$isPublic = $form->addElement('checkbox', 'is_public', null, $plugin->get_lang('VisibleByAll'));
$isShared = $form->addElement('checkbox', 'is_shared', null, $plugin->get_lang('EditableByAll'));
$form->addElement('hidden', 'mindmap_type', 'mind');
$form->addButtonSave(get_lang('Save'));
} else {
$ht = '<p style="text-align:center;" >
<img alt="'.htmlentities(get_lang('Save')).'" src="img/mindmap128.png" /></p>';
$form->addElement('static', '', '', $ht);
}