* @package chamilo.backup */ class ScormDocument extends Coursecopy\Resource { public $path; public $title; /** * Create a new Scorm Document * @param int $id * @param string $path * @param string $title */ public function __construct($id, $path, $title) { parent::__construct($id,RESOURCE_SCORM); $this->path = 'scorm'.$path; $this->title = $title; } /** * Show this document */ public function show() { parent::show(); $path = preg_replace('@^scorm/@', '', $this->path); echo $path; if (!empty($this->title)) { if (strpos($path, $this->title) === false) { echo " - " . $this->title; } } } }