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.
38 lines
997 B
38 lines
997 B
<?php
|
|
/* For licensing terms, see /license.txt */
|
|
/**
|
|
* This class defines the basis of the ticket management system plugin
|
|
* @package chamilo.plugin.ticket
|
|
*/
|
|
/**
|
|
* Ticket class
|
|
*/
|
|
class Ticket {
|
|
|
|
var $url;
|
|
var $salt;
|
|
var $api;
|
|
var $user_complete_name = null;
|
|
var $protocol = 'http://';
|
|
var $debug = false;
|
|
var $logout_url = null;
|
|
var $plugin_enabled = false;
|
|
|
|
/**
|
|
* Constructor (generates a connection to the API and the Chamilo settings
|
|
* required for the connection to the videoconference server)
|
|
*/
|
|
function __construct() {
|
|
|
|
// initialize video server settings from global settings
|
|
$plugin = TicketPlugin::create();
|
|
}
|
|
/**
|
|
* Checks whether a user is teacher in the current course
|
|
* @return bool True if the user can be considered a teacher in this course, false otherwise
|
|
*/
|
|
function is_teacher() {
|
|
return api_is_course_admin() || api_is_coach() || api_is_platform_admin();
|
|
}
|
|
|
|
} |