You are here

function eck__property_delete__form_submit in Entity Construction Kit (ECK) 7.3

Property delete form submit.

File

./eck.properties.inc, line 297
Properties.

Code

function eck__property_delete__form_submit($form, &$state) {
  $values = $state['values'];
  $entity_type = $values['entity_type'];
  $property = $values['property'];
  $entity_type
    ->removeProperty($property);
  $entity_type
    ->save();
  EntityType::loadAll(NULL, TRUE);
  $state['redirect'] = eck__entity_type__path() . "/{$entity_type->name}/property";
}