USP_SIMPLEDATALIST_SITEIMAGECATEGORIES

Returns all the categories (folders) in the image library

Definition

Copy


CREATE procedure dbo.[USP_SIMPLEDATALIST_SITEIMAGECATEGORIES]
as
  select
    [FOLDERID] as [VALUE],
    [FOLDERNAME] as [LABEL]
  from dbo.[SITEFOLDERS]
  where [TYPE] = 2
  and [DELETED] = 0
  order by [FOLDERNAME] asc