5 include_once(
"Services/Table/classes/class.ilTable2GUI.php");
40 public function __construct($a_parent_obj, $a_parent_cmd, $a_style_obj)
44 $this->ctrl = $DIC->ctrl();
45 $this->lng = $DIC->language();
46 $this->access = $DIC->access();
47 $this->rbacsystem = $DIC->rbac()->system();
49 $lng = $DIC->language();
50 $ilAccess = $DIC->access();
51 $lng = $DIC->language();
57 $this->style_obj = $a_style_obj;
60 $this->
addColumn($this->lng->txt(
"thumbnail"),
"",
"1");
61 $this->
addColumn($this->lng->txt(
"file"),
"",
"33%");
62 $this->
addColumn($this->lng->txt(
"sty_width_height"),
"",
"33%");
63 $this->
addColumn($this->lng->txt(
"size"),
"",
"33%");
66 $this->
setRowTemplate(
"tpl.style_image_row.html",
"Services/Style/Content");
71 if ($this->parent_obj->checkWrite()) {
86 $this->
setData($this->style_obj->getImages());
98 $thumbfile = $this->style_obj->getThumbnailsDirectory() .
"/" . $a_set[
"entry"];
99 $image_file = $this->style_obj->getImagesDirectory() .
"/" . $a_set[
"entry"];
100 if (!is_file($thumbfile) || strtolower(pathinfo($a_set[
"entry"], PATHINFO_EXTENSION)) ==
"svg") {
101 $thumbfile = $image_file;
103 if (is_file($thumbfile)) {
104 $this->tpl->setCurrentBlock(
"thumbnail");
105 $this->tpl->setVariable(
"IMG_ALT", $a_set[
"entry"]);
106 $this->tpl->setVariable(
"IMG_SRC", $thumbfile);
107 $this->tpl->parseCurrentBlock();
110 $image_size = @getimagesize($image_file);
112 if ($image_size[0] > 0 && $image_size[1] > 0) {
113 $this->tpl->setVariable(
115 $image_size[0] .
"px x " . $image_size[1] .
"px" 120 $this->tpl->setVariable(
"VAL_FILENAME", $a_set[
"entry"]);
121 $this->tpl->setVariable(
"VAL_SIZE", $a_set[
"size"]);
122 $this->tpl->setVariable(
"FILE", $a_set[
"entry"]);
getItems()
Get items of current folder.
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
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.
addMultiCommand($a_cmd, $a_text)
Add Command button.
fillRow($a_set)
Fill table row.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
TableGUI class for style editor (image list)
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.
__construct($a_parent_obj, $a_parent_cmd, $a_style_obj)
Constructor.
setEnableHeader($a_enableheader)
Set Enable Header.
setEnableTitle($a_enabletitle)
Set Enable Title.