コード例 #1
0
ファイル: elearning_user.class.php プロジェクト: rolwi/koala
 function get_exam_cert_preview()
 {
     $cert_preview_path = $this->container_try[$this->current_try]->get_path() . "/zertifikat_preview.jpg";
     $cert_preview = steam_factory::path_to_object($GLOBALS["STEAM"]->get_id(), $cert_preview_path);
     if (!is_object($cert_preview) || is_object($cert_preview) && !$cert_preview instanceof steam_document) {
         $cert_preview = steam_factory::create_document($GLOBALS["STEAM"]->get_id(), "zertifikat_preview.jpg", "", "image/jpeg", $this->container_try[$this->current_try]);
         $elearning_course = elearning_mediathek::get_elearning_course_for_course($this->course_group);
         $cert_preview->set_attribute("OBJ_DESC", "Zertifikat-Vorschau der Schulung \"" . $elearning_course->get_name() . "\"");
         $cert_preview->set_attribute("OBJ_TYPE", "elearning_course_cert_perview");
     }
     return $cert_preview;
 }