ILIAS  Release_4_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
ilPCFileListGUI Class Reference

Class ilPCListGUI. More...

+ Inheritance diagram for ilPCFileListGUI:
+ Collaboration diagram for ilPCFileListGUI:

Public Member Functions

 ilPCFileListGUI (&$a_pg_obj, &$a_content_obj, $a_hier_id, $a_pc_id="")
 Constructor public.
executeCommand ()
 execute command
 insert ()
 insert new file list form
 selectFile ()
 Select file.
 insertFromRepository ($a_cmd="insert")
 Insert file from repository.
 create ()
 create new file list in dom and update page in db
 edit ()
 edit properties form
 saveProperties ()
 save table properties in db and return to page edit screen
 editFiles ()
 Edit Files.
 setTabs ($a_create=true)
 Set Tabs.
 addFileItem ()
 Add file item.
 deleteFileItem ()
 Delete file items from list.
 savePositions ()
 Save positions of file items.
 savePositionsAndClasses ()
 Save positions of file items and style classes.
 checkStyleSelection ()
 Checks whether style selection shoudl be available or not.
 newFileItem ()
 New file item (called, if there is no file item in an existing.
 insertNewFileItem ($a_file_ref_id=0)
 insert new file item after another item
 createFileItem ()
 insert new file item
 setItemTabs ($a_cmd="")
 output tabs
- Public Member Functions inherited from ilPageContentGUI
 ilPageContentGUI (&$a_pg_obj, &$a_content_obj, $a_hier_id=0, $a_pc_id="")
 Constructor public.
 setStyleId ($a_styleid)
 Set Style Id.
 getStyleId ()
 Get Style Id.
 getStyle ()
 Get style object.
 setCharacteristics ($a_chars)
 Set Characteristics.
 getCharacteristics ()
 Get characteristics.
 getHierId ()
 get hierarchical id in dom object
 setHierId ($a_hier_id)
 get hierarchical id in dom object
 getBBMenu ($a_ta_name="par_content")
 Get the bb menu incl.
 delete ()
 delete content element
 moveAfter ()
 move content element after another element
 moveBefore ()
 move content element before another element
 splitPage ()
 split page to new page at specified position
 splitPageNext ()
 split page to next page at specified position
 displayValidationError ()
 display validation errors
 cancelCreate ()
 cancel creating page content
 cancelUpdate ()
 cancel update
 deactivate ()
 gui function set enabled if is not enabled and vice versa
 getTemplateOptions ($a_type)
 Get table templates.

Additional Inherited Members

- Static Public Member Functions inherited from ilPageContentGUI
static _getCommonBBButtons ()
 Get common bb buttons.
- Data Fields inherited from ilPageContentGUI
 $content_obj
 $ilias
 $tpl
 $lng
 $ctrl
 $pg_obj
 $hier_id
 $dom
 $updated
 $target_script
 $return_location
- Protected Member Functions inherited from ilPageContentGUI
 getCharacteristicsOfCurrentStyle ($a_type)
 Get characteristics of current style.
- Static Protected Attributes inherited from ilPageContentGUI
static $common_bb_buttons

Detailed Description

Class ilPCListGUI.

User Interface for LM List Editing

Author
Alex Killing alex..nosp@m.kill.nosp@m.ing@g.nosp@m.mx.d.nosp@m.e
Version
Id:
class.ilPCFileListGUI.php 24238 2010-06-14 14:17:20Z akill

Definition at line 17 of file class.ilPCFileListGUI.php.

Member Function Documentation

ilPCFileListGUI::addFileItem ( )

Add file item.

This function is called from file list table and calls newItemAfter function.

Definition at line 412 of file class.ilPCFileListGUI.php.

References $files, and $ilCtrl.

{
global $ilCtrl;
$files = $this->content_obj->getFileList();
if (count($files) >= 1)
{
$ilCtrl->setParameterByClass("ilpcfileitemgui", "hier_id",
$files[count($files) - 1]["hier_id"]);
$ilCtrl->setParameterByClass("ilpcfileitemgui", "pc_id",
$files[count($files) - 1]["pc_id"]);
$ilCtrl->redirectByClass("ilpcfileitemgui", "newItemAfter");
}
else
{
$ilCtrl->redirect($this, "newFileItem");
}
}
ilPCFileListGUI::checkStyleSelection ( )

Checks whether style selection shoudl be available or not.

Definition at line 489 of file class.ilPCFileListGUI.php.

References ilPageContentGUI\getCharacteristics().

{
// check whether there is more than one style class
$chars = $this->getCharacteristics();
$classes = $this->content_obj->getAllClasses();
if (count($chars) > 1)
{
return true;
}
foreach ($classes as $class)
{
if ($class != "" && $class != "FileListItem")
{
return true;
}
}
return false;
}

+ Here is the call graph for this function:

ilPCFileListGUI::create ( )

create new file list in dom and update page in db

Definition at line 253 of file class.ilPCFileListGUI.php.

References $_POST, $_SESSION, insert(), and ilUtil\stripSlashes().

{
include_once("./Modules/File/classes/class.ilObjFile.php");
if ($_POST["file_ref_id"] == 0)
{
$fileObj = new ilObjFile();
$fileObj->setType("file");
$fileObj->setTitle($_FILES["Fobject"]["name"]["file"]);
$fileObj->setDescription("");
$fileObj->setFileName($_FILES["Fobject"]["name"]["file"]);
$fileObj->setFileType($_FILES["Fobject"]["type"]["file"]);
$fileObj->setFileSize($_FILES["Fobject"]["size"]["file"]);
$fileObj->setMode("filelist");
$fileObj->create();
// upload file to filesystem
$fileObj->createDirectory();
$fileObj->raiseUploadError(false);
$fileObj->getUploadFile($_FILES["Fobject"]["tmp_name"]["file"],
$_FILES["Fobject"]["name"]["file"]);
}
else
{
$fileObj = new ilObjFile($_POST["file_ref_id"]);
}
$_SESSION["il_text_lang_".$_GET["ref_id"]] = $_POST["flst_language"];
//echo "::".is_object($this->dom).":";
$this->content_obj = new ilPCFileList($this->dom);
$this->content_obj->create($this->pg_obj, $this->hier_id, $this->pc_id);
$this->content_obj->setListTitle(ilUtil::stripSlashes($_POST["flst_title"]), $_POST["flst_language"]);
$this->content_obj->appendItem($fileObj->getId(), $fileObj->getFileName(),
$fileObj->getFileType());
$this->updated = $this->pg_obj->update();
if ($this->updated === true)
{
$this->ctrl->returnToParent($this, "jump".$this->hier_id);
}
else
{
$this->insert();
}
}

+ Here is the call graph for this function:

ilPCFileListGUI::createFileItem ( )

insert new file item

Definition at line 605 of file class.ilPCFileListGUI.php.

References $_GET, ilPageContentGUI\$lng, and ilUtil\sendFailure().

Referenced by insertNewFileItem().

{
global $lng;
if ($_FILES["Fobject"]["name"]["file"] == "")
{
$_GET["subCmd"] = "-";
ilUtil::sendFailure($lng->txt("upload_error_file_not_found"));
return false;
}
include_once("./Modules/File/classes/class.ilObjFile.php");
$fileObj = new ilObjFile();
$fileObj->setType("file");
$fileObj->setTitle($_FILES["Fobject"]["name"]["file"]);
$fileObj->setDescription("");
$fileObj->setFileName($_FILES["Fobject"]["name"]["file"]);
$fileObj->setFileType($_FILES["Fobject"]["type"]["file"]);
$fileObj->setFileSize($_FILES["Fobject"]["size"]["file"]);
$fileObj->setMode("filelist");
$fileObj->create();
$fileObj->raiseUploadError(false);
// upload file to filesystem
$fileObj->createDirectory();
$fileObj->getUploadFile($_FILES["Fobject"]["tmp_name"]["file"],
$_FILES["Fobject"]["name"]["file"]);
return $fileObj;
}

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

ilPCFileListGUI::deleteFileItem ( )

Delete file items from list.

Definition at line 435 of file class.ilPCFileListGUI.php.

References $_POST, and $ilCtrl.

{
global $ilCtrl;
if (is_array($_POST["fid"]))
{
$ids = array();
foreach($_POST["fid"] as $k => $v)
{
$ids[] = $k;
}
$this->content_obj->deleteFileItems($ids);
}
$this->updated = $this->pg_obj->update();
$ilCtrl->redirect($this, "editFiles");
}
ilPCFileListGUI::edit ( )

edit properties form

Definition at line 301 of file class.ilPCFileListGUI.php.

References $lang, ilMDLanguageItem\_getLanguages(), ilPageContentGUI\displayValidationError(), formSelect(), and setTabs().

Referenced by saveProperties().

{
$this->setTabs(false);
// add paragraph edit template
$this->tpl->addBlockFile("ADM_CONTENT", "adm_content", "tpl.file_list_edit.html", "Services/COPage");
$this->tpl->setVariable("TXT_ACTION", $this->lng->txt("cont_edit_file_list_properties"));
$this->tpl->setVariable("FORMACTION", $this->ctrl->getFormAction($this));
// select fields for number of columns
$this->tpl->setVariable("TXT_TITLE", $this->lng->txt("title"));
$this->tpl->setVariable("INPUT_TITLE", "flst_title");
// todo: this doesnt work if title contains " quotes
// ... addslashes doesnt work
$this->tpl->setVariable("VALUE_TITLE", $this->content_obj->getListTitle());
// language
$this->tpl->setVariable("TXT_LANGUAGE", $this->lng->txt("language"));
require_once("Services/MetaData/classes/class.ilMDLanguageItem.php");
$select_lang = ilUtil::formSelect ($this->content_obj->getLanguage(),"flst_language",$lang,false,true);
$this->tpl->setVariable("SELECT_LANGUAGE", $select_lang);
// $this->tpl->parseCurrentBlock();
// operations
$this->tpl->setCurrentBlock("commands");
$this->tpl->setVariable("BTN_NAME", "saveProperties");
$this->tpl->setVariable("BTN_TEXT", $this->lng->txt("save"));
$this->tpl->setVariable("BTN_CANCEL", "cancelUpdate");
$this->tpl->setVariable("TXT_CANCEL", $this->lng->txt("cancel"));
$this->tpl->parseCurrentBlock();
}

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

ilPCFileListGUI::editFiles ( )

Edit Files.

Definition at line 363 of file class.ilPCFileListGUI.php.

References ilPageContentGUI\$tpl, and setTabs().

{
global $tpl;
$this->setTabs(false);
include_once("./Services/COPage/classes/class.ilPCFileListTableGUI.php");
$table_gui = new ilPCFileListTableGUI($this, "editFiles", $this->content_obj);
$tpl->setContent($table_gui->getHTML());
}

+ Here is the call graph for this function:

& ilPCFileListGUI::executeCommand ( )

execute command

Definition at line 33 of file class.ilPCFileListGUI.php.

References $cmd, $ret, and ilPageContentGUI\getCharacteristicsOfCurrentStyle().

{
// get next class that processes or forwards current command
$next_class = $this->ctrl->getNextClass($this);
$this->getCharacteristicsOfCurrentStyle("flist_li"); // scorm-2004
// get current command
$cmd = $this->ctrl->getCmd();
switch($next_class)
{
default:
$ret =& $this->$cmd();
break;
}
return $ret;
}

+ Here is the call graph for this function:

ilPCFileListGUI::ilPCFileListGUI ( $a_pg_obj,
$a_content_obj,
  $a_hier_id,
  $a_pc_id = "" 
)

Constructor public.

Definition at line 24 of file class.ilPCFileListGUI.php.

References ilPageContentGUI\ilPageContentGUI(), and ilPageContentGUI\setCharacteristics().

{
parent::ilPageContentGUI($a_pg_obj, $a_content_obj, $a_hier_id, $a_pc_id);
$this->setCharacteristics(array("FileListItem" => $this->lng->txt("cont_FileListItem")));
}

+ Here is the call graph for this function:

ilPCFileListGUI::insert ( )

insert new file list form

Definition at line 56 of file class.ilPCFileListGUI.php.

References $_GET, $_SESSION, $lang, ilMDLanguageItem\_getLanguages(), ilPageContentGUI\displayValidationError(), formSelect(), insertFromRepository(), selectFile(), and setTabs().

Referenced by create().

{
global $ilUser, $ilTabs;
if ($_GET["subCmd"] == "insertNew")
{
$_SESSION["cont_file_insert"] = "insertNew";
}
if ($_GET["subCmd"] == "insertFromRepository")
{
$_SESSION["cont_file_insert"] = "insertFromRepository";
}
if (($_GET["subCmd"] == "") && $_SESSION["cont_file_insert"] != "")
{
$_GET["subCmd"] = $_SESSION["cont_file_insert"];
}
switch ($_GET["subCmd"])
{
case "insertFromRepository":
break;
case "selectFile":
$this->selectFile();
break;
default:
$this->setTabs();
$ilTabs->setSubTabActive("cont_new_file");
// new file list form
$this->tpl->addBlockFile("ADM_CONTENT", "adm_content", "tpl.file_list_new.html", "Services/COPage");
$this->tpl->setCurrentBlock("new_file");
$this->tpl->setVariable("TXT_FILE", $this->lng->txt("file"));
$this->tpl->parseCurrentBlock();
$this->tpl->setVariable("TXT_ACTION", $this->lng->txt("cont_insert_file_list"));
$this->tpl->setVariable("FORMACTION", $this->ctrl->getFormAction($this));
if ($_SESSION["il_text_lang_".$_GET["ref_id"]] != "")
{
$s_lang = $_SESSION["il_text_lang_".$_GET["ref_id"]];
}
else
{
$s_lang = $ilUser->getLanguage();
}
// title
$this->tpl->setVariable("TXT_TITLE", $this->lng->txt("title"));
$this->tpl->setVariable("INPUT_TITLE", "flst_title");
// language
$this->tpl->setVariable("TXT_LANGUAGE", $this->lng->txt("language"));
require_once("Services/MetaData/classes/class.ilMDLanguageItem.php");
$select_lang = ilUtil::formSelect ($s_lang, "flst_language",$lang,false,true);
$this->tpl->setVariable("SELECT_LANGUAGE", $select_lang);
$this->tpl->parseCurrentBlock();
// operations
$this->tpl->setCurrentBlock("commands");
$this->tpl->setVariable("BTN_NAME", "create_flst");
$this->tpl->setVariable("BTN_TEXT", $this->lng->txt("save"));
$this->tpl->setVariable("BTN_CANCEL", "cancelCreate");
$this->tpl->setVariable("TXT_CANCEL", $this->lng->txt("cancel"));
$this->tpl->parseCurrentBlock();
break;
}
}

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

ilPCFileListGUI::insertFromRepository (   $a_cmd = "insert")

Insert file from repository.

Definition at line 198 of file class.ilPCFileListGUI.php.

References $_GET, $ilCtrl, ilPageContentGUI\$tpl, IL_FM_POSITIVE, setItemTabs(), and setTabs().

Referenced by insert(), and newFileItem().

{
global $ilTabs, $tree, $ilCtrl, $tpl;
if ($a_cmd == "insert")
{
$this->setTabs();
}
else
{
$this->setItemTabs($a_cmd);
}
$ilTabs->setSubTabActive("cont_file_from_repository");
include_once "./Services/COPage/classes/class.ilFileSelectorGUI.php";
$exp = new ilFileSelectorGUI($this->ctrl->getLinkTarget($this, $a_cmd));
if ($_GET["expand"] == "")
{
$expanded = $tree->readRootId();
}
else
{
$expanded = $_GET["expand"];
}
$exp->setExpand($expanded);
$exp->setTargetGet("sel_id");
//$this->ctrl->setParameter($this, "target_type", $a_type);
$ilCtrl->setParameter($this, "subCmd", "insertFromRepository");
$exp->setParamsGet($this->ctrl->getParameterArray($this, $a_cmd));
// filter
$exp->setFiltered(true);
$exp->setFilterMode(IL_FM_POSITIVE);
$exp->addFilter("root");
$exp->addFilter("cat");
$exp->addFilter("grp");
$exp->addFilter("fold");
$exp->addFilter("crs");
$exp->addFilter("file");
$sel_types = array('file');
$exp->setOutput(0);
$tpl->setContent($exp->getOutput());
}

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

ilPCFileListGUI::insertNewFileItem (   $a_file_ref_id = 0)

insert new file item after another item

Definition at line 576 of file class.ilPCFileListGUI.php.

References $_GET, createFileItem(), and newFileItem().

Referenced by newFileItem().

{
if ($a_file_ref_id == 0)
{
$file_obj = $this->createFileItem();
}
else
{
include_once("./Modules/File/classes/class.ilObjFile.php");
$file_obj = new ilObjFile($a_file_ref_id);
}
if (is_object($file_obj))
{
$this->content_obj->appendItem($file_obj->getId(),
$file_obj->getTitle(), $file_obj->getFileType());
$this->updated = $this->pg_obj->update();
if ($this->updated === true)
{
$this->ctrl->returnToParent($this, "jump".$this->hier_id);
}
}
$_GET["subCmd"] = "-";
$this->newFileItem();
}

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

ilPCFileListGUI::newFileItem ( )

New file item (called, if there is no file item in an existing.

Parameters
@return

Definition at line 521 of file class.ilPCFileListGUI.php.

References $_GET, $_SESSION, ilPageContentGUI\displayValidationError(), insertFromRepository(), insertNewFileItem(), and setItemTabs().

Referenced by insertNewFileItem().

{
global $ilTabs;
if ($_GET["subCmd"] == "insertNew")
{
$_SESSION["cont_file_insert"] = "insertNew";
}
if ($_GET["subCmd"] == "insertFromRepository")
{
$_SESSION["cont_file_insert"] = "insertFromRepository";
}
if (($_GET["subCmd"] == "") && $_SESSION["cont_file_insert"] != "")
{
$_GET["subCmd"] = $_SESSION["cont_file_insert"];
}
switch ($_GET["subCmd"])
{
case "insertFromRepository":
$this->insertFromRepository("newFileItem");
break;
case "selectFile":
$this->insertNewFileItem($_GET["file_ref_id"]);
break;
default:
$this->setItemTabs("newFileItem");
$ilTabs->setSubTabActive("cont_new_file");
// new file list form
$this->tpl->addBlockFile("ADM_CONTENT", "adm_content", "tpl.file_item_edit.html", "Services/COPage");
$this->tpl->setVariable("TXT_ACTION", $this->lng->txt("cont_insert_file_item"));
$this->tpl->setVariable("FORMACTION", $this->ctrl->getFormAction($this));
// file
$this->tpl->setVariable("TXT_FILE", $this->lng->txt("file"));
$this->tpl->parseCurrentBlock();
// operations
$this->tpl->setCurrentBlock("commands");
$this->tpl->setVariable("BTN_NAME", "insertNewFileItem");
$this->tpl->setVariable("BTN_TEXT", $this->lng->txt("save"));
$this->tpl->parseCurrentBlock();
break;
}
}

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

ilPCFileListGUI::savePositions ( )

Save positions of file items.

Definition at line 455 of file class.ilPCFileListGUI.php.

References $_POST, and $ilCtrl.

{
global $ilCtrl;
if (is_array($_POST["position"]))
{
$this->content_obj->savePositions($_POST["position"]);
}
$this->updated = $this->pg_obj->update();
$ilCtrl->redirect($this, "editFiles");
}
ilPCFileListGUI::savePositionsAndClasses ( )

Save positions of file items and style classes.

Definition at line 470 of file class.ilPCFileListGUI.php.

References $_POST, and $ilCtrl.

{
global $ilCtrl;
if (is_array($_POST["position"]))
{
$this->content_obj->savePositions($_POST["position"]);
}
if (is_array($_POST["class"]))
{
$this->content_obj->saveStyleClasses($_POST["class"]);
}
$this->updated = $this->pg_obj->update();
$ilCtrl->redirect($this, "editFiles");
}
ilPCFileListGUI::saveProperties ( )

save table properties in db and return to page edit screen

Definition at line 344 of file class.ilPCFileListGUI.php.

References $_POST, edit(), and ilUtil\stripSlashes().

{
$this->content_obj->setListTitle(ilUtil::stripSlashes($_POST["flst_title"]),
$_POST["flst_language"]);
$this->updated = $this->pg_obj->update();
if ($this->updated === true)
{
$this->ctrl->returnToParent($this, "jump".$this->hier_id);
}
else
{
$this->pg_obj->addHierIDs();
$this->edit();
}
}

+ Here is the call graph for this function:

ilPCFileListGUI::selectFile ( )

Select file.

Definition at line 138 of file class.ilPCFileListGUI.php.

References $_GET, $_SESSION, $lang, ilMDLanguageItem\_getLanguages(), ilPageContentGUI\displayValidationError(), formSelect(), and setTabs().

Referenced by insert().

{
global $ilTabs, $ilUser;
$this->setTabs();
$ilTabs->setSubTabActive("cont_file_from_repository");
// new file list form
$this->tpl->addBlockFile("ADM_CONTENT", "adm_content", "tpl.file_list_new.html", "Services/COPage");
$this->tpl->setCurrentBlock("rep_file");
$this->tpl->setVariable("TXT_FILE", $this->lng->txt("file"));
include_once("./Modules/File/classes/class.ilObjFile.php");
$file_obj = new ilObjFile($_GET["file_ref_id"]);
if (is_object($file_obj))
{
$this->tpl->setVariable("TXT_FILE_TITLE", $file_obj->getTitle());
$this->tpl->setVariable("FILE_REF_ID", $file_obj->getRefId());
}
$this->tpl->parseCurrentBlock();
$this->tpl->setVariable("TXT_ACTION", $this->lng->txt("cont_insert_file_list"));
$this->tpl->setVariable("FORMACTION", $this->ctrl->getFormAction($this));
if ($_SESSION["il_text_lang_".$_GET["ref_id"]] != "")
{
$s_lang = $_SESSION["il_text_lang_".$_GET["ref_id"]];
}
else
{
$s_lang = $ilUser->getLanguage();
}
// select fields for number of columns
$this->tpl->setVariable("TXT_TITLE", $this->lng->txt("title"));
$this->tpl->setVariable("INPUT_TITLE", "flst_title");
// language
$this->tpl->setVariable("TXT_LANGUAGE", $this->lng->txt("language"));
require_once("Services/MetaData/classes/class.ilMDLanguageItem.php");
$select_lang = ilUtil::formSelect ($s_lang, "flst_language",$lang,false,true);
$this->tpl->setVariable("SELECT_LANGUAGE", $select_lang);
// $this->tpl->parseCurrentBlock();
// operations
$this->tpl->setCurrentBlock("commands");
$this->tpl->setVariable("BTN_NAME", "create_flst");
$this->tpl->setVariable("BTN_TEXT", $this->lng->txt("save"));
$this->tpl->setVariable("BTN_CANCEL", "cancelCreate");
$this->tpl->setVariable("TXT_CANCEL", $this->lng->txt("cancel"));
$this->tpl->parseCurrentBlock();
}

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

ilPCFileListGUI::setItemTabs (   $a_cmd = "")

output tabs

Definition at line 638 of file class.ilPCFileListGUI.php.

References $ilCtrl.

Referenced by insertFromRepository(), and newFileItem().

{
global $ilTabs, $ilCtrl;
$ilTabs->addTarget("cont_back",
$this->ctrl->getParentReturn($this), "",
"");
if ($a_cmd != "")
{
$ilCtrl->setParameter($this, "subCmd", "insertNew");
$ilTabs->addSubTabTarget("cont_new_file",
$ilCtrl->getLinkTarget($this, $a_cmd), $a_cmd);
$ilCtrl->setParameter($this, "subCmd", "insertFromRepository");
$ilTabs->addSubTabTarget("cont_file_from_repository",
$ilCtrl->getLinkTarget($this, $a_cmd), $a_cmd);
$ilCtrl->setParameter($this, "subCmd", "");
}
}

+ Here is the caller graph for this function:

ilPCFileListGUI::setTabs (   $a_create = true)

Set Tabs.

Definition at line 376 of file class.ilPCFileListGUI.php.

References $cmd, $ilCtrl, and ilPageContentGUI\$lng.

Referenced by edit(), editFiles(), insert(), insertFromRepository(), and selectFile().

{
global $ilTabs, $ilCtrl, $lng;
if ($a_create)
{
$cmd = "insert";
$ilCtrl->setParameter($this, "subCmd", "insertNew");
$ilTabs->addSubTabTarget("cont_new_file",
$ilCtrl->getLinkTarget($this, $cmd), $cmd);
$ilCtrl->setParameter($this, "subCmd", "insertFromRepository");
$ilTabs->addSubTabTarget("cont_file_from_repository",
$ilCtrl->getLinkTarget($this, $cmd), $cmd);
$ilCtrl->setParameter($this, "subCmd", "");
}
else
{
$ilTabs->setBackTarget($lng->txt("pg"),
$this->ctrl->getParentReturn($this));
$ilTabs->addTarget("cont_ed_edit_prop",
$ilCtrl->getLinkTarget($this, "edit"), "edit",
get_class($this));
$ilTabs->addTarget("cont_ed_edit_files",
$ilCtrl->getLinkTarget($this, "editFiles"), "editFiles",
get_class($this));
}
}

+ Here is the caller graph for this function:


The documentation for this class was generated from the following file: