. */ 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(): array; /** * Returns a JSON like collection of items for a select component * * @return string */ public function getJsonItemsFromModel(): string; /** * Returns a collection of items for a select component * * @return array */ public function getItemsFromArray(): array; /** * Returns a collection of items for a select component * * @return string */ public function getJsonItemsFromArray(): string; }