5 include_once(
"Services/Table/classes/class.ilTable2GUI.php");
40 $this->ctrl = $DIC->ctrl();
41 $this->lng = $DIC->language();
42 $this->access = $DIC->access();
43 $this->
user = $DIC->user();
45 $lng = $DIC->language();
46 $ilAccess = $DIC->access();
49 $lng->loadLanguageModule(
"mep");
53 $this->
addColumn(
$lng->txt(
"mep_title_and_description"),
"",
"100%");
57 "tpl.clipboard_tbl_row.html",
68 if ($this->parent_obj->mode ==
"getObject") {
69 $this->
addMultiCommand(
"insert", $this->parent_obj->getInsertButtonTitle());
83 $objs =
$ilUser->getClipboardObjects(
"mob");
84 $objs2 =
$ilUser->getClipboardObjects(
"incl");
85 $objs = array_merge($objs, $objs2);
101 if ($a_set[
"type"] ==
"mob") {
104 $med = $mob->getMediaItem(
"Standard");
105 $target = $med->getThumbnailTarget();
107 $this->tpl->setCurrentBlock(
"thumbnail");
108 $this->tpl->setVariable(
"IMG_THUMB", $target);
109 $this->tpl->parseCurrentBlock();
112 $med->getLocationType() ==
"Reference") {
113 $size = @getimagesize($med->getLocation());
118 $w = (int) (
$size[0] / $r);
119 $h = (int) (
$size[1] / $r);
120 $this->tpl->setVariable(
126 } elseif ($a_set[
"type"] ==
"incl") {
127 $this->tpl->setCurrentBlock(
"thumbnail");
128 $this->tpl->setVariable(
132 $this->tpl->parseCurrentBlock();
136 if ($this->parent_obj->mode !=
"getObject" && $a_set[
"type"] ==
"mob") {
138 $this->tpl->setCurrentBlock(
"edit");
139 $ilCtrl->setParameter($this->parent_obj,
"clip_item_id", $a_set[
"id"]);
140 $ilCtrl->setParameterByClass(
"ilObjMediaObjectGUI",
"clip_item_id", $a_set[
"id"]);
141 $this->tpl->setVariable(
144 "ilObjMediaObjectGUI",
146 array(
"ilEditClipboardGUI")
149 $this->tpl->setVariable(
"TEXT_OBJECT", $a_set[
"title"] .
150 " [" . $a_set[
"id"] .
"]");
151 $this->tpl->parseCurrentBlock();
153 $this->tpl->setCurrentBlock(
"show");
154 $this->tpl->setVariable(
"TEXT_OBJECT2", $a_set[
"title"] .
155 " [" . $a_set[
"id"] .
"]");
156 $this->tpl->parseCurrentBlock();
159 include_once(
"./Services/MediaObjects/classes/class.ilObjMediaObjectGUI.php");
160 if ($a_set[
"type"] ==
"mob") {
161 $this->tpl->setVariable(
166 $this->tpl->setVariable(
"CHECKBOX_ID", $a_set[
"type"] .
":" . $a_set[
"id"]);
static sortArray( $array, $a_array_sortby, $a_array_sortorder=0, $a_numeric=false, $a_keep_keys=false)
sortArray
TableGUI clipboard items.
setDefaultOrderField($a_defaultorderfield)
Set Default order field.
fillRow($a_set)
Standard Version of Fill Row.
static deducibleSize($a_mime)
checks if mime type is provided by getimagesize()
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
getItems()
Get items from user clipboard.
setSelectAllCheckbox($a_select_all_checkbox, $a_select_all_on_top=false)
Set the name of the checkbox that should be toggled with a select all button.
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
addMultiCommand($a_cmd, $a_text)
Add Command button.
static img($a_src, $a_alt=null, $a_width="", $a_height="", $a_border=0, $a_id="", $a_class="")
Build img tag.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
__construct(Container $dic, ilPlugin $plugin)
addColumn( $a_text, $a_sort_field="", $a_width="", $a_is_checkbox_action_column=false, $a_class="", $a_tooltip="", $a_tooltip_with_html=false)
Add a column to the header.
setEnableHeader($a_enableheader)
Set Enable Header.
__construct($a_parent_obj, $a_parent_cmd)
Constructor.