IPageHooksOnAfterMove Method
|
Custom hook that fires after a
Page is moved.
Namespace:
Ingeniux.CMS.Models.Hooks
Assembly:
Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.6.308
Syntax void OnAfterMove(
IPage sourcecontentItem,
IPage targetcontentItem,
EnumCopyActions relation,
IUserWriteSession session
)
Sub OnAfterMove (
sourcecontentItem As IPage,
targetcontentItem As IPage,
relation As EnumCopyActions,
session As IUserWriteSession
)
void OnAfterMove(
IPage^ sourcecontentItem,
IPage^ targetcontentItem,
EnumCopyActions relation,
IUserWriteSession^ session
)
abstract OnAfterMove :
sourcecontentItem : IPage *
targetcontentItem : IPage *
relation : EnumCopyActions *
session : IUserWriteSession -> unit
Parameters
- sourcecontentItem
- Type: Ingeniux.CMSIPage
Source Page being moved. - targetcontentItem
- Type: Ingeniux.CMSIPage
Target Page location, either parent or sibling to the page. - relation
- Type: Ingeniux.CMS.EnumsEnumCopyActions
Contains information about what relation the new Page location will have to the targetcontentItem. - session
- Type: Ingeniux.CMSIUserWriteSession
IUserWriteSession in which the Page is loaded in.
See Also