ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilBuddySystemSubjectDependentRelationStateButtonRenderer.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
26 {
27  protected function getTemplateVariablePrefix(): string
28  {
29  if ($this->relation->isOwnedByActor()) {
30  return 'REQUESTER_';
31  }
32 
33  return 'REQUESTEE_';
34  }
35 
36  protected function render(): void
37  {
38  if ($this->relation->isOwnedByActor()) {
39  $this->tpl->setCurrentBlock('requester_container');
40  } else {
41  $this->tpl->setCurrentBlock('requestee_container');
42  }
43  parent::render();
44  $this->tpl->parseCurrentBlock();
45  }
46 }