Hi,
Does anyone know if there is a SQL query that can be used to get a list of all tabs (pages) in a website (portal) that are public (All users checked in permissions)?
Thanks
Tom
SELECT DISTINCT t.TabID, t.TabName, t.TabPath, t.PortalID, t.IsVisible, t.DisableLink FROM Tabs t INNER JOIN vw_TabPermissions tp ON tp.TabID = t.TabID WHERE t.IsDeleted = 0 AND t.PortalID = 1 AND tp.RoleID = -1 -- All Users AND tp.PermissionKey = 'VIEW' AND tp.AllowAccess = 1 ORDER BY t.TabPath;
Is this what you need?
These Forums are for the discussion of the open source CMS DNN platform and ecosystem.
For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:
Awesome! Simply post in the forums using the link below and we'll get you started.