Click or drag to resize

IContentItemWorkflowSuperAdminRightsEnabled Property


Gets and sets whether the content item has admin rights enabled. Admin rights will allow actions to the item that cannot normally be done by the user whose session is processing the request.

Namespace:  Ingeniux.CMS
Assembly:  Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.5.94
Syntax
bool AdminRightsEnabled { get; set; }

Property Value

Type: Boolean
Examples
Example checking AdmingRightsEnabled in a custom hook:
C#
var contentItem = session.Site.Asset("a/100") as IContentItemWorkflowSuper;
if(contentItem.AdminRightsEnabled){
    //Additional Actions
}
See Also