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

getHeaderIcon() public method

Returns the icon of the header.
public getHeaderIcon ( ) : string
return string
    public function getHeaderIcon()
    {
        return $this->headerIcon;
    }

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());
 }