24                $this->portfolio_gui = $a_portfolio_gui;
 
   25                $this->
object = $a_object;
 
   39                include_once(
"./Services/Export/classes/class.ilExport.php");
 
   43                $this->subdir = $this->
object->getType().
"_".$this->
object->getId();
 
   44                $this->export_dir = $exp_dir.
"/".$this->subdir;
 
   51                include_once(
"./Services/Style/classes/class.ilSystemStyleHTMLExport.php");
 
   54                $this->sys_style_html_export->export();
 
   57                include_once(
"./Services/COPage/classes/class.ilCOPageHTMLExport.php");
 
   59                $this->co_page_html_export->setContentStyleId($this->object->getStyleSheetId()); 
 
   60                $this->co_page_html_export->createDirectories();
 
   61                $this->co_page_html_export->exportStyles();
 
   62                $this->co_page_html_export->exportSupportScripts();
 
   66                if($prfa_set->get(
"banner"))
 
   68                        $banner = $this->
object->getImageFullPath();
 
   71                                copy($banner, $this->export_dir.
"/".basename($banner));
 
   78                        $ppic = array_shift(explode(
"?", $ppic));
 
   79                        copy($ppic, $this->export_dir.
"/".basename($ppic));
 
   85                        $ppic = array_shift(explode(
"?", $ppic));
 
   86                        copy($ppic, $this->export_dir.
"/".basename($ppic));
 
   93                $images = $files = $js_files = array();
 
   94                foreach($this->export_material as $items)
 
   96                        $images = array_merge($images, $items[
"images"]);
 
   97                        $files = array_merge($files, $items[
"files"]);
 
   98                        $js_files = array_merge($js_files, $items[
"js"]);
 
  100                foreach(array_unique($images) as $image)
 
  104                                copy($image, $this->export_dir.
"/images/".basename($image));
 
  107                foreach(array_unique($js_files) as $js_file)
 
  109                        if(is_file($js_file))
 
  111                                copy($js_file, $this->export_dir.
"/js/".basename($js_file));
 
  114                foreach(array_unique($files) as 
$file)
 
  118                                copy(
$file, $this->export_dir.
"/files/".basename(
$file));
 
  128                                "/".$date.
"__".IL_INST_ID.
"__".
 
  129                                $this->
object->getType().
"_".$this->
object->getId().
".zip";
 
  144                require_once 
"Modules/Portfolio/classes/class.ilPortfolioPage.php";
 
  147                $this->tabs = array();
 
  148                foreach($pages as $page)
 
  153                                include_once 
"Modules/Blog/classes/class.ilObjBlog.php";
 
  157                        $this->tabs[$page[
"id"]] = $page[
"title"];
 
  161                $tpl_callback = array($this, 
"buildExportTemplate");
 
  163                include_once(
"./Services/COPage/classes/class.ilPageContentUsage.php");
 
  164                include_once(
"./Services/MediaObjects/classes/class.ilObjMediaObject.php");
 
  165                include_once(
"./Modules/Portfolio/classes/class.ilPortfolioPage.php");
 
  167                foreach ($pages as $page)
 
  171                                $this->active_tab = 
"user_page_".$page[
"id"];
 
  175                                        $link_template = 
"prtf_".$page[
"id"].
"_bl{TYPE}_{ID}.html";
 
  177                                        include_once 
"Modules/Blog/classes/class.ilObjBlogGUI.php";
 
  179                                        $blog->exportHTMLPages($this->export_dir.
"/", $link_template, $tpl_callback, $this->co_page_html_export, 
"prtf_".$page[
"id"].
".html");
 
  184                                        $this->co_page_html_export->collectPageElements(
"prtf:pg", $page[
"id"]);
 
  189                                         copy($this->export_dir.
"/prtf_".$page[
"id"].
".html", 
 
  190                                                $this->export_dir.
"/index.html");
 
  195                $this->co_page_html_export->exportPageElements();
 
  202                $this->tpl = $this->co_page_html_export->getPreparedMainTemplate();             
 
  203                $this->tpl->getStandardTemplate();
 
  204                $this->tpl->addOnLoadCode(
'il.Tooltip.init();', 3);
 
  207                if(is_array($a_js_files))
 
  209                        foreach($a_js_files as $js_file)
 
  211                                $this->tpl->setCurrentBlock(
"js_file");
 
  212                                $this->tpl->setVariable(
"JS_FILE", !stristr($js_file, 
"://")
 
  213                                        ? 
"./js/".basename($js_file)
 
  215                                $this->tpl->parseCurrentBlock();
 
  220                $this->tpl->setVariable(
"MAINMENU", 
"<div style='min-height:40px;'></div>");
 
  221                $this->tpl->setTitle($this->object->getTitle());
 
  223                $ilTabs->clearTargets();
 
  226                        foreach($this->tabs as $id => $caption)
 
  228                                $ilTabs->addTab(
"user_page_".$id, $caption, 
"prtf_".$id.
".html");
 
  231                        $ilTabs->activateTab($this->active_tab);
 
  234                include_once 
"Modules/Portfolio/classes/class.ilObjPortfolioGUI.php";
 
  242                $file = $this->export_dir.
"/".$a_file;
 
  250                $ep_tpl = 
new ilTemplate(
"tpl.export_page.html", 
true, 
true,
 
  251                        "Modules/Portfolio");
 
  252                $ep_tpl->setVariable(
"PAGE_CONTENT", $a_content);               
 
  255                $this->tpl->setContent($ep_tpl->get());
 
  257                if(is_array($a_onload))
 
  259                        foreach($a_onload as $item)
 
  261                                $this->tpl->addOnLoadCode($item);
 
  266                $content = $this->tpl->get(
"DEFAULT", 
false, 
false, 
false,
 
  270                if (!file_put_contents(
$file, $content))
 
  272                        die (
"<b>Error</b>: Could not open \"".
$file.
"\" for writing".
 
  273                                        " in <b>".__FILE__.
"</b> on line <b>".__LINE__.
"</b><br />");
 
  290                include_once 
"Modules/Portfolio/classes/class.ilPortfolioPageGUI.php";
 
  292                $pgui->setOutputMode(
"offline");
 
  293                $pgui->setFullscreenLink(
"fullscreen.html"); 
 
  294                $page_content = $pgui->showPage();
 
  296                $material = $pgui->getExportMaterial();
 
  297                $this->export_material[] = $material;
 
  299                $this->
writeExportFile(
"prtf_".$a_post_id.
".html", $page_content, $pgui->getJsOnloadCode(), $material[
"js"]);
 
HTML export class for pages.
static _getExportDirectory($a_obj_id, $a_type="xml", $a_obj_type="", $a_entity="")
Get export directory for an repository object.
_createExportDirectory($a_obj_id, $a_export_type="xml", $a_obj_type="")
Create export directory.
static renderFullscreenHeader($a_portfolio, $a_tpl, $a_user_id, $a_export=false)
Render banner, user name.
static _getPersonalPicturePath($a_usr_id, $a_size="small", $a_force_pic=false, $a_prevent_no_photo_image=false)
Get path to personal picture.
const WORKSPACE_OBJECT_ID
static _lookupTitle($a_id)
lookup object title
static _exists($a_parent_type, $a_id, $a_lang="")
Checks whether page exists.
Portfolio HTML exporter class.
buildExportFile()
Build export file.
buildExportTemplate(array $a_js_files=null)
__construct($a_portfolio_gui, $a_object)
Constructor.
exportHTMLPages()
Export all pages.
exportPageHTML($a_post_id)
Export page html.
writeExportFile($a_file, $a_content, $a_onload=null, $a_js_files=null)
Portfolio page gui class.
static getAllPages($a_portfolio_id)
Get pages of portfolio.
HTML export class for system styles.
special template class to simplify handling of ITX/PEAR
static delDir($a_dir, $a_clean_only=false)
removes a dir and all its content (subdirs and files) recursively
static zip($a_dir, $a_file, $compress_content=false)
static makeDir($a_dir)
creates a new directory and inherits all filesystem permissions of the parent directory You may pass ...