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.
26 lines
730 B
PHP
26 lines
730 B
PHP
<?php
|
|
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
$cidReset = true;
|
|
|
|
require_once __DIR__.'/../inc/global.inc.php';
|
|
require_once 'work.lib.php';
|
|
|
|
if (false === api_get_configuration_value('allow_my_student_publication_page')) {
|
|
api_not_allowed(true);
|
|
}
|
|
|
|
api_block_anonymous_users();
|
|
|
|
$htmlHeadXtra[] = api_get_jqgrid_js();
|
|
|
|
$tpl = new Template(get_lang('StudentPublications'));
|
|
|
|
$tpl->assign('intro_title', get_lang('MyStudentPublicationsTitle'));
|
|
$tpl->assign('intro_content', Display::return_message(get_lang('MyStudentPublicationsExplanation')));
|
|
$tpl->assign('table', showStudentAllWorkGrid(0));
|
|
$tpl->assign('table_with_results', showStudentAllWorkGrid(1));
|
|
|
|
$tpl->display($tpl->get_template('work/publications.tpl'));
|