You are here

function ftools_unlink_form_submit in Features Tools 7.2

Same name and namespace in other branches
  1. 7 ftools.module \ftools_unlink_form_submit()

@todo Please document this function.

See also

http://drupal.org/node/1354

File

./ftools.module, line 312
ftools module

Code

function ftools_unlink_form_submit($form, &$form_state) {
  foreach ($form_state['values']['unlink_options'] as $key => $value) {
    if ($value) {
      _ftools_exec_unlink($key);
    }
  }
}