|
|
<?php
|
|
|
// $Id: gradebook_edit_link.php 400 2007-04-10 13:58:55Z stijn $
|
|
|
/*
|
|
|
==============================================================================
|
|
|
Dokeos - elearning and course management software
|
|
|
|
|
|
Copyright (c) 2006 Dokeos S.A.
|
|
|
Copyright (c) 2007 Stijn Konings, Bert Stepp<EFBFBD> (Hogeschool Gent)
|
|
|
|
|
|
For a full list of contributors, see "credits.txt".
|
|
|
The full license can be read in "license.txt".
|
|
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
modify it under the terms of the GNU General Public License
|
|
|
as published by the Free Software Foundation; either version 2
|
|
|
of the License, or (at your option) any later version.
|
|
|
|
|
|
See the GNU General Public License for more details.
|
|
|
|
|
|
Contact address: Dokeos, 44 rue des palais, B-1030 Brussels, Belgium
|
|
|
Mail: info@dokeos.com
|
|
|
==============================================================================
|
|
|
*/
|
|
|
$language_file = 'gradebook';
|
|
|
$cidReset = true;
|
|
|
include_once ('../inc/global.inc.php');
|
|
|
include_once ('lib/be.inc.php');
|
|
|
include_once ('lib/gradebook_functions.inc.php');
|
|
|
include_once ('lib/fe/linkform.class.php');
|
|
|
include_once ('lib/fe/linkaddeditform.class.php');
|
|
|
api_block_anonymous_users();
|
|
|
block_students();
|
|
|
|
|
|
$linkarray = LinkFactory :: load($_GET['editlink']);
|
|
|
$link = $linkarray[0];
|
|
|
|
|
|
$form = new LinkAddEditForm(LinkAddEditForm :: TYPE_EDIT,
|
|
|
null,
|
|
|
null,
|
|
|
$link,
|
|
|
'edit_link_form',
|
|
|
api_get_self() . '?selectcat=' . $_GET['selectcat']
|
|
|
. '&editlink=' . $_GET['editlink']);
|
|
|
|
|
|
if ($form->validate())
|
|
|
{
|
|
|
$values = $form->exportValues();
|
|
|
$link->set_weight($values['weight']);
|
|
|
$link->set_date(strtotime($values['date']));
|
|
|
$link->set_visible(empty ($values['visible']) ? 0 : 1);
|
|
|
$link->save();
|
|
|
header('Location: gradebook.php?linkedited=&selectcat=' . $link->get_category_id());
|
|
|
exit;
|
|
|
}
|
|
|
|
|
|
$interbreadcrumb[] = array (
|
|
|
'url' => 'gradebook.php?selectcat='.$_GET['selectcat'],
|
|
|
'name' => get_lang('Gradebook'
|
|
|
));
|
|
|
|
|
|
Display :: display_header(get_lang('EditLink'));
|
|
|
$form->display();
|
|
|
Display :: display_footer();
|
|
|
?>
|
|
|
|