ILIAS  Release_5_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
class.ilAssQuestionPreviewToolbarGUI.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
4 require_once 'Services/UIComponent/Toolbar/classes/class.ilToolbarGUI.php';
5 
13 {
17  public $lng = null;
18 
20 
21  public function __construct(ilLanguage $lng)
22  {
23  $this->lng = $lng;
24 
26  }
27 
28  public function build()
29  {
30  $this->addFormButton($this->lng->txt('qpl_reset_preview'), $this->getResetPreviewCmd(), '', true);
31  }
32 
34  {
35  $this->resetPreviewCmd = $resetPreviewCmd;
36  }
37 
38  public function getResetPreviewCmd()
39  {
41  }
42 }