コード例 #1
0
ファイル: HtmlList.php プロジェクト: jcheron/phalcon-jquery
 /**
  * {@inheritDoc}
  * @see \Ajax\common\html\html5\HtmlCollection::createItem()
  */
 protected function createItem($value)
 {
     $item = new HtmlDoubleElement("item-" . $this->identifier . "-" . $this->count());
     $item->setTagName("li");
     $item->setContent($value);
     return $item;
 }