You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
91 lines
1.7 KiB
91 lines
1.7 KiB
<?php
|
|
/* For licensing terms, see /license.txt */
|
|
/**
|
|
* Glossary access class
|
|
* @package chamilo.glossary
|
|
*/
|
|
/**
|
|
* Init
|
|
*/
|
|
namespace Glossary;
|
|
|
|
/**
|
|
* Authorize current users to perform various actions.
|
|
*
|
|
* @author Laurent Opprecht <laurent@opprecht.info> for the Univesity of Genevas
|
|
* @license /license.txt
|
|
*/
|
|
class Access extends \Access
|
|
{
|
|
|
|
/**
|
|
* Return the instance .
|
|
*
|
|
* @return \Access
|
|
*/
|
|
public static function instance()
|
|
{
|
|
static $result = null;
|
|
if (empty($result)) {
|
|
$result = new self();
|
|
}
|
|
return $result;
|
|
}
|
|
|
|
/**
|
|
* Returns true if the user has the right to edit.
|
|
*
|
|
* @return boolean
|
|
*/
|
|
public function can_edit()
|
|
{
|
|
if (Request::is_student_view()) {
|
|
return false;
|
|
}
|
|
$session_id = Request::get_session_id();
|
|
|
|
if ($session_id != 0 && api_is_allowed_to_session_edit(false, true) == false) {
|
|
return false;
|
|
}
|
|
|
|
if (!api_is_allowed_to_edit(false, true, true)) {
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Returns true if the current user has the right to view
|
|
*
|
|
* @return boolean
|
|
*/
|
|
public function can_view()
|
|
{
|
|
$authorize = api_protect_course_script(true);
|
|
if (!$authorize) {
|
|
return false;
|
|
}
|
|
|
|
$c_id = Request::get_c_id();
|
|
if (empty($c_id)) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
public function authorize()
|
|
{
|
|
if (!$this->can_view()) {
|
|
return false;
|
|
}
|
|
|
|
$c_id = Request::get_c_id();
|
|
if (empty($c_id)) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
}
|
|
|