Prado\Collections\TListItemCollection::createNewListItem PHP Method

createNewListItem() protected method

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