ILIAS  Release_4_4_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
class.ilChatroomSmiliesGUI.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
4 
16 {
17 
23  /*public function __construct()
24  {
25 
26  }*/
27 
31  public function &executeCommand()
32  {
33  include_once 'Modules/Chatroom/classes/class.ilChatroomSmilies.php';
34  ilChatroomSmilies::initial();
35  }
36 
45  public static function _getExistingSmiliesTable($a_ref)
46  {
47  global $lng, $ilCtrl;
48 
49  include_once "Modules/Chatroom/classes/class.ilChatroomSmiliesTableGUI.php";
50 
51  $table = new ilChatroomSmiliesTableGUI( $a_ref, 'smiley' );
52 
53  include_once('Modules/Chatroom/classes/class.ilChatroomSmilies.php');
54 
56  $table->setData( $values );
57 
58  return $table->getHTML();
59  }
60 
61 }
62 
63 ?>