. */ namespace SP\Mvc\View\Components; /** * Interface ItemAdapterInterface * * @package SP\Mvc\View\Components */ interface ItemAdapterInterface { /** * Returns a collection of items for a select component * * @return array */ public function getItemsFromModel(); /** * Returns a JSON like collection of items for a select component * * @return string */ public function getJsonItemsFromModel(); /** * Returns a collection of items for a select component * * @return array */ public function getItemsFromArray(); /** * Returns a collection of items for a select component * * @return string */ public function getJsonItemsFromArray(); }