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.
85 lines
2.4 KiB
85 lines
2.4 KiB
<?php
|
|
/**
|
|
* md_mix.php for Dokeos metadata/*.php
|
|
* 2005/09/20
|
|
* @copyright 2005 rene.haentjens@UGent.be - see metadata/md_funcs.php
|
|
* @package chamilo.metadata
|
|
*/
|
|
/**
|
|
* Chamilo Metadata: reduced class mdobject for Search, for a Mix of objects
|
|
* @package chamilo.metadata
|
|
*/
|
|
class mdobject {
|
|
|
|
var $mdo_course;
|
|
var $mdo_type;
|
|
var $mdo_id;
|
|
var $mdo_eid;
|
|
|
|
var $mdo_path;
|
|
var $mdo_comment;
|
|
var $mdo_filetype;
|
|
|
|
var $mdo_url;
|
|
var $mdo_base_url;
|
|
|
|
|
|
function mdobject($_course, $eid)
|
|
{
|
|
if (!($dotpos = strpos($eid, '.'))) return;
|
|
|
|
$this->mdo_course = $_course; $this->mdo_eid = $eid;
|
|
$this->mdo_type = ($type = substr($eid, 0, $dotpos));
|
|
$this->mdo_id = ($id = substr($eid, $dotpos + 1));
|
|
|
|
if ($type == 'Document' || $type == 'Scorm')
|
|
{
|
|
$table = $type == 'Scorm' ?
|
|
Database::get_course_table(TABLE_SCORMDOC) :
|
|
Database::get_course_table(TABLE_DOCUMENT);
|
|
|
|
if (($dotpos = strpos($id, '.')))
|
|
{
|
|
$urlp = '?sid=' . urlencode(substr($id, $dotpos+1));
|
|
$id = substr($id, 0, $dotpos);
|
|
}
|
|
|
|
if (($docinfo = @mysql_fetch_array(Database::query(
|
|
"SELECT path,comment,filetype FROM
|
|
$table WHERE id='" .
|
|
addslashes($id) . "'"))))
|
|
{
|
|
$this->mdo_path = $docinfo['path'];
|
|
$this->mdo_comment = $docinfo['comment'];
|
|
$this->mdo_filetype = $docinfo['filetype'];
|
|
|
|
if ($type == 'Scorm')
|
|
{
|
|
$this->mdo_base_url = get_course_web() .
|
|
$this->mdo_course['path'] . '/scorm' . $this->mdo_path;
|
|
$this->mdo_url = $this->mdo_base_url . '/index.php' . $urlp;
|
|
}
|
|
else
|
|
{
|
|
$this->mdo_url = api_get_path(WEB_PATH) . 'main/document/' .
|
|
(($this->mdo_filetype == 'file') ? 'download' : 'document').'.php?'.
|
|
(($this->mdo_filetype == 'file') ? 'doc_url=' : 'curdirpath=') .
|
|
urlencode($this->mdo_path);
|
|
}
|
|
}
|
|
}
|
|
elseif ($type == 'Link')
|
|
{
|
|
$link_table = Database::get_course_table(TABLE_LINK);
|
|
if (($linkinfo = @mysql_fetch_array(Database::query(
|
|
"SELECT url,title,description,category_id FROM
|
|
$link_table WHERE id='" . addslashes($id) .
|
|
"'"))))
|
|
{
|
|
$this->mdo_url = $linkinfo['url'];
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
?>
|
|
|