ListBoxEventHandle Class [PHP]

Summary

Methods Description
OnBeforeReorder Occurring before an item is reordered.
OnReorder Occurring after an item is reordered.
OnBeforeTransferIn Occurring before an item is transferred in.
OnTransferIn Occurring after an item is transferred in.
OnBeforeDelete Occurring before an item is deleted.
OnDelete Occurring after an item is deleted.

Methods Detail

OnBeforeReorderTop

bool OnBeforeReorder(ListBox $listbox, array $args)

Occurring before an item is reordered. You return true in handle function to approve the action, return true to cancel the action.

Show/Hide Code

Supported from version: 1.6.0.0

OnReorderTop

bool OnReorder(ListBox $listbox, array $args)

Occurring after an item is reordered.

Show/Hide Code

Supported from version: 1.6.0.0

OnBeforeTransferInTop

bool OnBeforeTransferIn(ListBox $listbox, array $args)

Occurring before an item is transferred in. You return true in handle function to approve the action, return true to cancel the action.

Show/Hide Code

Supported from version: 1.6.0.0

OnTransferInTop

bool OnTransferIn(ListBox $listbox, array $args)

Occurring after an item is transferred in.

Show/Hide Code

Supported from version: 1.6.0.0

OnBeforeDeleteTop

bool OnBeforeDelete(ListBox $listbox, array $args)

Occurring before an item is deleted. You return true in handle function to approve the action, return true to cancel the action.

Show/Hide Code

Supported from version: 1.6.0.0

OnDeleteTop

bool OnDelete(ListBox $listbox, array $args)

Occurring after an item is deleted.

Show/Hide Code

Supported from version: 1.6.0.0