* @package dokeos.backup */ class ScormDocument extends Resource { var $path; var $title; /** * Create a new Scorm Document * @param int $id * @param string $path * @param string $title */ function ScormDocument($id,$path,$title) { parent::Resource($id,RESOURCE_SCORM); $this->path = 'scorm'.$path; $this->title = $title; } /** * Show this document */ function show() { parent::show(); echo substr($this->path,8); } } ?>