/// <summary>
/// Frontend definitoin name
/// </summary>
public
const
string
FrontendDefinitionName =
"ProductsFrontend"
;
/// <summary>
/// Detail view definition
/// </summary>
public
const
string
FrontendDetailViewName =
"ProductsFrontendDetails"
;
/// <summary>
/// Master view definition
/// </summary>
public
const
string
FrontendListViewName =
"ProductsFrontendList"
;
/// <summary>
/// Name of the view that displays only titles
/// </summary>
public
const
string
FrontendTitlesOnlyListViewName =
"Products sample list - Titles only"
;
/// <summary>
/// Name of the view that displays titles and days
/// </summary>
public
const
string
FrontendTitlesDatesListViewName =
"Products sample list - Titles and dates"
;
/// <summary>
/// Name of the view that displays title,s dates and full content
/// </summary>
public
const
string
FrontendTitlesDatesContentsListViewName =
"Products sample list - Titles, dates and full content"
;
/// <summary>
/// Name of the view that displays titles, dates and summary
/// </summary>
public
const
string
FrontendTitlesDatesSummariesListViewName =
"Products sample list - Titles, dates and summaries"
;
/// <summary>
/// Name of the view that displays the whole product item
/// </summary>
public
const
string
FrontendFullProductItemDetailViewName =
"Products sample - Full product"
;
/// <summary>
/// Definition name for the frontend commments list.
/// </summary>
public
static
readonly
string
FrontendCommentsDefinitionName =
"ProductsCommentsFrontend"
;
#endregion
#region Commands
/// <summary>
/// Common name for the command used to create a new item.
/// </summary>
public
const
string
CreateCommandName =
"create"
;
/// <summary>
/// Common name for the command used to save an item.
/// </summary>
public
const
string
SaveCommandName =
"save"
;
/// <summary>
/// Common name for a command used to cancel an operation.
/// </summary>
public
const
string
CancelCommandName =
"cancel"
;
/// <summary>
/// Common name used for a command that saves an item and resets the entry form.
/// </summary>
public
const
string
SaveAndContinueCommandName =
"saveAndContinue"
;
/// <summary>
/// Common name used for a command that publishes an item.
/// </summary>
public
const
string
PublishCommandName =
"publish"
;
/// <summary>
/// Common name used for a command that unpublishes an item.
/// </summary>
public
const
string
UnpublishCommandName =
"unpublish"
;
/// <summary>
/// Common name used for a command that performs a batch publish
/// </summary>
public
const
string
GroupPublishCommandName =
"groupPublish"
;
/// <summary>
/// Common name used for a command that edits an item.
/// </summary>
public
const
string
EditCommandName =
"edit"
;
/// <summary>
/// Common name used for a command that performs a batch unpublish
/// </summary>
public
const
string
GroupUnpublishCommandName =
"groupUnpublish"
;
/// <summary>
/// Common name used for a command that delets an item.
/// </summary>
public
const
string
DeleteCommandName =
"delete"
;
/// <summary>
/// Common name used for a command that displays the history of an item
/// </summary>
public
const
string
HistoryCommandName =
"history"
;
/// <summary>
/// Common name used for a command that opens an item in a preview mode.
/// </summary>
public
const
string
PreviewCommandName =
"preview"
;
/// <summary>
/// Common name used for a command that shows the permissions for a given secured
/// object.
/// </summary>
public
const
string
PermissionsCommandName =
"permissions"
;
/// <summary>
/// Common name used for a command that displays the history of an item.
/// </summary>
public
const
string
HistoryGridCommandName =
"historygrid"
;
#endregion