You are here

mark_as_read.action.inc in Drupal Commons 7.3

Action to set the state of a user in a group.

File

modules/commons/commons_trusted_contacts/includes/actions/mark_as_read.action.inc
View source
<?php

/**
 * @file
 * Action to set the state of a user in a group.
 */
function commons_trusted_contacts_mark_as_read_action_info() {
  return array(
    'commons_trusted_contacts_mark_as_read_action' => array(
      'type' => 'privatemsg_message',
      'label' => t('Mark as read'),
      'configurable' => FALSE,
    ),
  );
}
function commons_trusted_contacts_mark_as_read_action($privatemsg_message) {
  db_update('pm_index')
    ->fields(array(
    'is_new' => PRIVATEMSG_READ,
  ))
    ->condition('mid', $privatemsg_message->mid)
    ->execute();
}

Functions

Namesort descending Description
commons_trusted_contacts_mark_as_read_action
commons_trusted_contacts_mark_as_read_action_info @file Action to set the state of a user in a group.