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/coursecopy/classes/CourseDescription.class.php

44 lines
802 B

<?php
/* For licensing terms, see /license.txt */
require_once 'Resource.class.php';
/**
* A course description
* @author Bart Mollet <bart.mollet@hogent.be>
* @package chamilo.backup
*/
class CourseDescription extends Resource
{
/**
* The title
*/
var $title;
/**
* The content
*/
var $content;
/**
* The description type
*/
var $description_type;
/**
* Create a new course description
* @param int $id
* @param string $title
* @param string $content
*/
function __construct($id,$title,$content,$description_type) {
parent::Resource($id,RESOURCE_COURSEDESCRIPTION);
$this->title = $title;
$this->content = $content;
$this->description_type = $description_type;
}
/**
* Show this Event
*/
function show() {
parent::show();
echo $this->title;
}
}