Gc\Media\Icon\Collection::getSelect PHP Method

getSelect() public method

Get array for input select
public getSelect ( ) : array
return array
    public function getSelect()
    {
        $select = array();
        $icons = $this->getIcons();
        foreach ($icons as $icon) {
            $select[$icon->getId()] = $icon->getName();
        }
        return $select;
    }