You are here

function cmf_admin_comments_form_submit in Content Management Filter 5

Same name and namespace in other branches
  1. 6.2 comment.inc \cmf_admin_comments_form_submit()
  2. 6 comment.inc \cmf_admin_comments_form_submit()
  3. 7 comment.inc \cmf_admin_comments_form_submit()

Handle post-validation form submission. \n Execute the chosen 'Update option' on the selected comments, such as publishing, unpublishing or deleting.

Parameters

the ID of the passed form:

array with the form properties values:

See also

cmf_admin_comments_form()

cmf_admin_comments_form_validate()

File

./comment.inc, line 121
Content management filter module file

Code

function cmf_admin_comments_form_submit($form_id, $form_values) {
  $operations = comment_operations();
  if ($operations[$form_values['operation']][1]) {

    // extract the appropriate database query operation
    $query = $operations[$form_values['operation']][1];
    foreach ($form_values['comments'] as $cid => $value) {
      if ($value) {

        // perform the update action, then refresh node statistics
        db_query($query, $cid);
        $comment = _comment_load($cid);
        _comment_update_node_statistics($comment->nid);

        // Allow modules to respond to the updating of a comment.
        comment_invoke_comment($comment, $form_values['operation']);
      }
    }
    cache_clear_all();
    drupal_set_message(t('The update has been performed.'));
    if (arg(0) == 'user' && is_numeric(arg(1)) && arg(1) > 0) {
      return 'user/' . arg(1) . '/user-content';
    }
    else {
      return 'admin/content/filter';
    }
  }
}