ILIAS  trunk Revision v11.0_alpha-1713-gd8962da2f67
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjEmployeeTalkSeriesListGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
30 {
34  public function init(): void
35  {
36  parent::init();
37 
38  $this->static_link_enabled = true;
39  $this->delete_enabled = true;
40  $this->cut_enabled = false;
41  $this->info_screen_enabled = false;
42  $this->copy_enabled = false;
43  $this->subscribe_enabled = false;
44  $this->link_enabled = false;
45 
46  $this->type = ilObjEmployeeTalkSeries::TYPE;
47  $this->gui_class_name = strtolower(self::class);
49  }
50 
51  public function insertTimingsCommand(): void
52  {
53  }
54 
55  public function insertCommonSocialCommands(bool $header_actions = false): void
56  {
57  }
58 
59  public function getCommandLink(string $cmd): string
60  {
61  $this->ctrl->setParameterByClass(strtolower(ilObjEmployeeTalkSeriesGUI::class), "ref_id", $this->ref_id);
62  return $this->ctrl->getLinkTargetByClass(strtolower(ilObjEmployeeTalkSeriesGUI::class), $cmd);
63  }
64 }