Sulu\Bundle\AdminBundle\Navigation\NavigationItem::getHeaderTitle PHP Method

getHeaderTitle() public method

Returns the title of the header.
public getHeaderTitle ( ) : string
return string The title of the header
    public function getHeaderTitle()
    {
        return $this->headerTitle;
    }

Usage Example

Example #1
0
 public function testCopyChildless()
 {
     $copy = $this->item1->copyChildless();
     $this->assertEquals($this->item1->getAction(), $copy->getAction());
     $this->assertEquals($this->item1->getIcon(), $copy->getIcon());
     $this->assertEquals($this->item1->getHeaderIcon(), $copy->getHeaderIcon());
     $this->assertEquals($this->item1->getHeaderTitle(), $copy->getHeaderTitle());
     $this->assertEquals($this->item1->getId(), $copy->getId());
 }