ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
class.ilChatroomSmiliesTableGUI.php
Go to the documentation of this file.
1<?php
2
3/* Copyright (c) 1998-2010 ILIAS open source, Extended GPL, see docs/LICENSE */
4
5include_once('Services/Table/classes/class.ilTable2GUI.php');
6include_once("./Services/UIComponent/AdvancedSelectionList/classes/class.ilAdvancedSelectionListGUI.php");
7
19{
20 private $gui = null;
21
32 public function __construct($a_ref, $cmd)
33 {
34 global $lng, $ilCtrl;
35
36 parent::__construct( $a_ref, $cmd );
37
38 $this->gui = $a_ref;
39
40 $this->setTitle( $lng->txt( 'chatroom_available_smilies' ) );
41 $this->setId( 'chatroom_smilies_tbl' );
42
43 $this->addColumn( '', 'checkbox', '2%', true );
44 $this->addColumn( $lng->txt( 'chatroom_smiley_image' ), '', '28%' );
45 $this->addColumn( $lng->txt( 'chatroom_smiley_keyword' ), 'keyword', '55%' );
46 $this->addColumn( $lng->txt( 'actions' ), '', '15%' );
47
48 $this->setFormAction( $ilCtrl->getFormAction( $a_ref ) );
49 $this->setRowTemplate( 'tpl.chatroom_smiley_list_row.html', 'Modules/Chatroom' );
50 $this->setSelectAllCheckbox( 'smiley_id' );
51
52 $this->addMultiCommand(
53 "smiley-deleteMultipleObject", $lng->txt( "chatroom_delete_selected" )
54 );
55 }
56
63 public function fillRow($a_set)
64 {
65 global $ilCtrl;
66
67 $this->tpl->setVariable( 'VAL_SMILEY_ID', $a_set['smiley_id'] );
68 $this->tpl->setVariable( 'VAL_SMILEY_PATH', $a_set['smiley_fullpath'] );
69 $this->tpl->setVariable( 'VAL_SMILEY_KEYWORDS', $a_set['smiley_keywords'] );
70 $this->tpl->setVariable(
71 'VAL_SMILEY_KEYWORDS_NONL',
72 str_replace( "\n", "", $a_set['smiley_keywords'] )
73 );
74 $this->tpl->setVariable(
75 'VAL_SORTING_TEXTINPUT',
76 ilUtil::formInput( 'sorting[' . $a_set['id'] . ']',
77 $a_set['sorting'] )
78 );
79
80 $ilCtrl->setParameter( $this->gui, 'topic_id', $a_set['id'] );
81
82 $current_selection_list = new ilAdvancedSelectionListGUI();
83 $current_selection_list->setListTitle( $this->lng->txt( "actions" ) );
84 $current_selection_list->setId( "act_" . $a_set['smiley_id'] );
85
86 $current_selection_list->addItem(
87 $this->lng->txt( "edit" ),
88 '',
89 $ilCtrl->getLinkTarget( $this->gui, 'smiley-showEditSmileyEntryFormObject' ) .
90 "&smiley_id=" . $a_set['smiley_id']
91 );
92 $current_selection_list->addItem(
93 $this->lng->txt( "delete" ),
94 '',
95 $ilCtrl->getLinkTarget( $this->gui, 'smiley-showDeleteSmileyFormObject' ) .
96 "&smiley_id=" . $a_set['smiley_id']
97 );
98
99 $this->tpl->setVariable( 'VAL_ACTIONS', $current_selection_list->getHTML() );
100 }
101
102}
User interface class for advanced drop-down selection lists.
Class ilChatroomSmiliesTableGUI.
fillRow($a_set)
Fills table rows with content from $a_set.
Class ilTable2GUI.
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.
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
addMultiCommand($a_cmd, $a_text)
Add Command button.
setSelectAllCheckbox($a_select_all_checkbox)
Set the name of the checkbox that should be toggled with a select all button.
setId($a_val)
Set id.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
static formInput($varname, $value, $disabled=false)
create html input area
global $ilCtrl
Definition: ilias.php:18
global $lng
Definition: privfeed.php:40
$cmd
Definition: sahs_server.php:35