sTitle = $sTitle; } /** * @return string */ public function GetType(): string { return static::TAB_TYPE; } /** * @return string */ public function GetTitle(): string { return $this->sTitle; } //------------------------------- // iUIBlock implementation //------------------------------- /** * @inheritDoc */ public function GetParameters(): array { return [ 'sBlockId' => $this->GetId(), 'sTitle' => $this->GetTitle(), 'sType' => $this->GetType(), 'oBlock' => $this, ]; } }