24 $this->exp_dir = $a_exp_dir;
25 $this->mobs_dir = $a_exp_dir.
"/mobs";
26 $this->files_dir = $a_exp_dir.
"/files";
27 $this->tex_dir = $a_exp_dir.
"/teximg";
28 $this->content_style_dir = $a_exp_dir.
"/content_style";
29 $this->content_style_img_dir = $a_exp_dir.
"/content_style/images";
31 include_once(
"./Services/MediaObjects/classes/class.ilPlayerUtil.php");
32 $this->services_dir = $a_exp_dir.
"/Services";
33 $this->media_service_dir = $this->services_dir.
"/MediaObjects";
35 $this->mp3_dir = $this->media_service_dir.
"/flash_mp3_player";
37 $this->js_dir = $a_exp_dir.
'/js';
38 $this->js_yahoo_dir = $a_exp_dir.
'/js/yahoo';
39 $this->css_dir = $a_exp_dir.
'/css';
51 $this->content_style_id = $a_val;
95 include_once
"Services/Style/classes/class.ilObjStyleSheet.php";
100 $cont_stylesheet =
"./Services/COPage/css/content.css";
102 $css = fread(fopen($cont_stylesheet,
'r'),filesize($cont_stylesheet));
103 preg_match_all(
"/url\(([^\)]*)\)/",$css,
$files);
104 foreach (array_unique(
$files[1]) as $fileref)
106 if (is_file(str_replace(
"..",
".", $fileref)))
108 copy(str_replace(
"..",
".", $fileref), $this->content_style_img_dir.
"/".basename($fileref));
110 $css = str_replace($fileref,
"images/".basename($fileref),$css);
112 fwrite(fopen($this->content_style_dir.
"/content.css",
'w'),$css);
117 $style->writeCSSFile($this->content_style_dir.
"/content.css",
"images");
118 $style->copyImagesToDir($this->content_style_img_dir);
123 copy($syn_stylesheet, $this->exp_dir.
"/syntaxhighlight.css");
136 copy(
'./Services/JavaScript/js/Basic.js', $this->js_dir.
'/Basic.js');
138 copy(
'./Services/UIComponent/Overlay/js/ilOverlay.js',$this->js_dir.
'/ilOverlay.js');
141 include_once(
"./Services/jQuery/classes/class.iljQueryUtil.php");
147 include_once(
"./Services/YUI/classes/class.ilYuiUtil.php");
149 $this->js_yahoo_dir.
'/yahoo-min.js');
151 $this->js_yahoo_dir.
'/yahoo-dom-event.js');
153 $this->js_yahoo_dir.
'/animation-min.js');
155 $this->js_yahoo_dir.
'/container-min.js');
157 $this->css_dir.
'/container.css');
160 copy(
'./Services/Accordion/js/accordion.js',
161 $this->js_dir.
'/accordion.js');
162 copy(
'./Services/Accordion/css/accordion.css',
163 $this->css_dir.
'/accordion.css');
166 copy(
'./Services/COPage/js/ilCOPagePres.js',
167 $this->js_dir.
'/ilCOPagePres.js');
170 copy(
'./Services/UIComponent/Tooltip/js/ilTooltip.js',
171 $this->js_dir.
'/ilTooltip.js');
174 include_once(
"./Services/MediaObjects/classes/class.ilPlayerUtil.php");
178 copy(
'./Modules/TestQuestionPool/js/ilMatchingQuestion.js',
179 $this->js_dir.
'/ilMatchingQuestion.js');
180 copy(
'./Modules/TestQuestionPool/templates/default/test_javascript.css',
181 $this->css_dir.
'/test_javascript.css');
200 include_once(
"./Services/MediaObjects/classes/class.ilPlayerUtil.php");
213 $scripts = array(
"./js/yahoo/yahoo-min.js",
"./js/yahoo/yahoo-dom-event.js",
214 "./js/yahoo/animation-min.js",
"./js/yahoo/container-min.js",
215 "./js/Basic.js",
"./js/jquery.js",
"./js/jquery-ui-min.js",
216 "./js/ilOverlay.js",
"./js/accordion.js",
"./js/ilCOPagePres.js",
217 "./js/ilTooltip.js",
"./js/maphilight.js",
"./js/ilMatchingQuestion.js");
227 foreach ($scripts as $script)
229 $tpl->setCurrentBlock(
"js_file");
230 $tpl->setVariable(
"JS_FILE", $script);
231 $tpl->parseCurrentBlock();
235 $style_name = $ilUser->prefs[
"style"].
".css";
236 $css_files = array(
"./css/accordion.css",
"./css/container.css",
237 "./content_style/content.css",
"./style/".$style_name,
"./css/test_javascript.css");
240 foreach ($css_files as $css)
242 $tpl->setCurrentBlock(
"css_file");
243 $tpl->setVariable(
"CSS_FILE", $css);
244 $tpl->parseCurrentBlock();
260 foreach($pg_mobs as $pg_mob)
262 $this->mobs[$pg_mob] = $pg_mob;
266 include_once(
"./Modules/File/classes/class.ilObjFile.php");
270 $this->files[$f] = $f;
274 $skill_tree = $ws_tree = null;
277 foreach ($pcs as $pc)
280 if ($pc[
"type"] ==
"skmg")
282 $skill_id = $pc[
"id"];
289 include_once
"Modules/Portfolio/classes/class.ilPortfolioPage.php";
291 $user_id = $page->create_user;
304 include_once
"Services/Skill/classes/class.ilSkillTree.php";
307 include_once
"Services/Skill/classes/class.ilPersonalSkill.php";
309 include_once
"Services/PersonalWorkspace/classes/class.ilWorkspaceTree.php";
314 include_once(
"./Services/Skill/classes/class.ilVirtualSkillTree.php");
317 $skill_id = (int) $skill_id;
318 include_once(
"./Services/Skill/classes/class.ilSkillTreeNode.php");
321 include_once(
"./Services/Skill/classes/class.ilSkillTemplateReference.php");
322 $tref_id = $skill_id;
325 $b_skills = $vtree->getSubTreeForCSkillId($skill_id.
":".$tref_id,
true);
327 foreach ($b_skills as $bs)
330 $level_data = $skill->getLevelData();
331 foreach ($level_data as $k => $v)
337 foreach($mat as $item)
339 $wsp_id = $item[
"wsp_id"];
340 $obj_id = $ws_tree->lookupObjectId($wsp_id);
346 $this->files[$obj_id] = $obj_id;
350 include_once
"Modules/Test/classes/class.ilObjTestVerification.php";
352 $this->files_direct[$obj_id] = array($obj->getFilePath(),
353 $obj->getOfflineFilename());
357 include_once
"Modules/Exercise/classes/class.ilObjExerciseVerification.php";
359 $this->files_direct[$obj_id] = array($obj->getFilePath(),
360 $obj->getOfflineFilename());
364 include_once
"Modules/Course/classes/Verification/class.ilObjCourseVerification.php";
366 $this->files_direct[$obj_id] = array($obj->getFilePath(),
367 $obj->getOfflineFilename());
371 include_once
"Modules/ScormAicc/classes/Verification/class.ilObjSCORMVerification.php";
373 $this->files_direct[$obj_id] = array($obj->getFilePath(),
374 $obj->getOfflineFilename());
396 $linked_mobs = array();
397 foreach ($this->mobs as $mob)
404 $linked_mobs2 = array();
405 foreach ($linked_mobs as $mob)
414 foreach ($this->files as
$file)
420 foreach ($this->files_direct as $file_id => $attr)
434 if (@is_dir($source_dir))
437 ilUtil::rCopy($source_dir, $this->mobs_dir.
"/mm_".$a_mob_id);
441 include_once(
"./Services/MediaObjects/classes/class.ilObjMediaObject.php");
443 if ($mob_obj->hasFullscreenItem())
447 $output = xslt_process(
458 "/_xsl" => file_get_contents(
"./Services/COPage/xsl/page.xsl")
460 array(
"mode"=>
"fullscreen"));
465 $tpl =
new ilTemplate(
"tpl.fullscreen.html",
true,
true,
"Services/COPage");
467 $tpl->setCurrentBlock(
"ilMedia");
468 $tpl->setVariable(
"MEDIA_CONTENT", $output);
469 $output = $tpl->get();
473 $file = $this->exp_dir.
"/fullscreen_".$a_mob_id.
".html";
474 if(!($fp = @fopen(
$file,
"w+")))
476 die(
"<b>Error</b>: Could not open \"".
$file.
"\" for writing".
477 " in <b>".__FILE__.
"</b> on line <b>".__LINE__.
"</b><br />");
480 fwrite($fp, $output);
486 $linked_mobs = $mob_obj->getLinkedMediaObjects();
487 $a_linked_mobs = array_merge($a_linked_mobs, $linked_mobs);
495 $file_dir = $this->files_dir.
"/file_".$a_file_id;
498 include_once(
"./Modules/File/classes/class.ilObjFile.php");
499 $file_obj =
new ilObjFile($a_file_id,
false);
500 $source_file = $file_obj->getDirectory($file_obj->getVersion()).
"/".$file_obj->getFileName();
501 if (!is_file($source_file))
503 $source_file = $file_obj->getDirectory().
"/".$file_obj->getFileName();
505 if (is_file($source_file))
507 copy($source_file, $file_dir.
"/".$file_obj->getFileName());
516 $file_dir = $this->files_dir.
"/file_".$a_file_id;
519 if (is_file($a_source_file))
static getCssFilePaths()
Get css file paths.
setContentStyleId($a_val)
Set content style id.
exportHTMLFile($a_file_id)
Export file object.
static rCopy($a_sdir, $a_tdir, $preserveTimeAttributes=false)
Copies content of a directory $a_sdir recursively to a directory $a_tdir.
HTML export class for pages.
static _exists($a_id, $a_reference=false, $a_type=null)
checks if an object exists in object_data
copyPlayerFilesToTargetDirectory($a_target_dir)
Copy css files to target dir.
if(strpos($jquery_path, './')===0) else if(strpos($jquery_path, '.')===0) $mathJaxSetting
getContentStyleId()
Get content style id.
exportHTMLFileDirect($a_file_id, $a_source_file, $a_file_name)
Export file from path.
exportPageElements()
Export page elements.
getPreparedMainTemplate($a_tpl="")
Get prepared main template.
static getASCIIFilename($a_filename)
convert utf8 to ascii filename
_getFilesOfObject($a_type, $a_id, $a_usage_hist_nr=0, $a_usage_lang="-")
get all files of an object
getSyntaxStylePath()
get syntax style path
Tree handler for personal workspace.
static _lookupType($a_obj_id)
Lookup Type.
getUsagesOfPage($a_usage_id, $a_usage_type, $a_hist_nr=0, $a_all_hist_nrs=false, $a_lang="-")
Get page content usages for page.
static getJsFilePaths()
Get js file paths.
__construct($a_exp_dir)
Initialisation.
createDirectories()
Create directories.
getLocaljQueryPath()
Get local path of jQuery file.
static getInstance($a_id=0)
getLocalMaphilightPath()
Get local path of maphilight file.
special template class to simplify handling of ITX/PEAR
static getFlashVideoPlayerDirectory()
Get flash video player directory.
exportSupportScripts()
Export support scripts.
static _lookupTemplateId($a_obj_id)
Lookup template ID.
static _lookupType($a_id, $a_reference=false)
lookup object type
static makeDir($a_dir)
creates a new directory and inherits all filesystem permissions of the parent directory You may pass ...
static getLocalPath($a_name="")
Get local path of a YUI js file.
static getAssignedMaterial($a_user_id, $a_tref_id, $a_level)
Get assigned material (for a skill level and user)
collectPageElements($a_type, $a_id)
Collect page elements (that need to be exported separately)
getLocaljQueryUIPath()
Get local path of jQuery UI file.
exportStyles()
Export content style.
exportHTMLMOB($a_mob_id, &$a_linked_mobs)
Export media object to html.
static getWebspaceDir($mode="filesystem")
get webspace directory