Prado\Collections\TListItemCollection::createNewListItem PHP 메소드

createNewListItem() 보호된 메소드

protected createNewListItem ( $text = null ) : TListItem
리턴 Prado\Web\UI\WebControls\TListItem new item.
    protected function createNewListItem($text = null)
    {
        $item = new TListItem();
        if ($text !== null) {
            $item->setText($text);
        }
        return $item;
    }