Chamilo is a learning management system focused on ease of use and accessibility
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.
chamilo-lms/main/inc/lib/chamilo.class.php

70 lines
1.4 KiB

<?php
/**
* Description of chamilo
*
* @copyright (c) 2012 University of Geneva
* @license GNU General Public License - http://www.gnu.org/copyleft/gpl.html
* @author Laurent Opprecht <laurent@opprecht.info>
*/
class Chamilo
{
public static function name()
{
//@todo: add version
return 'chamilo';
}
static function is_test_server()
{
return api_get_setting('server_type') == 'test';
}
static function is_production_server()
{
return api_get_setting('server_type') == 'production';
}
/**
* Returns a full url from local/absolute path and parameters.
* Append the root as required for relative urls.
*
* @param string $path
* @param array $params
* @return string
*/
public static function url($path = '', $params = array(), $html = true)
{
return Uri::url($path, $params, $html);
}
/**
* Application web root
*/
public static function www()
{
return Uri::www();
}
/**
* File system root for Chamilo
*
* @return string
*/
public static function root()
{
return api_get_path(SYS_PATH);
}
public static function path($path = '')
{
$root = self::root();
if (empty($path)) {
return $root;
}
return $root . $path;
}
}