Sulu\Bundle\AdminBundle\Navigation\NavigationItem::getHeaderIcon PHP 메소드

getHeaderIcon() 공개 메소드

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

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