예제 #1
0
파일: Icon.php 프로젝트: myclabs/muih
 /**
  * @return $this
  */
 public function glyphicon()
 {
     $this->uiElement->glyphicon();
     return $this;
 }
예제 #2
0
파일: IconTest.php 프로젝트: myclabs/muih
 public function testGlyphicon()
 {
     $tag = new Icon('foo', false);
     $tag->glyphicon();
     $this->assertEquals('<i class="glyphicon glyphicon-foo"></i>', $tag->getHTML());
 }