"pre_insert" Trigger
Description
bool block_name.pre_insert();Example
bool categories.pre_update() {
return false;
}
bool categories.pre_delete() {
return false;
}
bool categories.pre_insert() {
return false;
}See also
Last updated