Backend\Modules\ContentBlocks\Entity\ContentBlock::getTitle PHP Method

getTitle() public method

public getTitle ( ) : string
return string
    public function getTitle()
    {
        return $this->title;
    }

Usage Example

Beispiel #1
0
 /**
  * Parse the content block and the revisions
  */
 protected function parse()
 {
     parent::parse();
     $this->tpl->assign('id', $this->contentBlock->getId());
     $this->tpl->assign('title', $this->contentBlock->getTitle());
     $this->tpl->assign('revision_id', $this->contentBlock->getRevisionId());
     $this->parseRevisionsDataGrid();
 }
All Usage Examples Of Backend\Modules\ContentBlocks\Entity\ContentBlock::getTitle