public function FlexiformFormEntityManagerDefault::skipOnSave in Flexiform 7
Mark an entity to be skipped or not on save.
Parameters
string $namespace: The namespace of the entity to skip.
bool $skip: Whether to skip this entity on save.
File
- includes/
flexiform.form_entity_manager.inc, line 320 - Contains the default entity manager for flexiforms.
Class
- FlexiformFormEntityManagerDefault
- Class that manages entities in a flexiform.
Code
public function skipOnSave($namespace, $skip) {
$this->skip_save[$namespace] = $skip;
}