tmgmt_local.rules.inc

Rules integration.

File

translators/tmgmt_local/tmgmt_local.rules.inc
View source
<?php

/**
 * @file
 * Rules integration.
 */

/**
 * Implements hook_rules_action_info().
 */
function tmgmt_local_rules_action_info() {
  $info['tmgmt_local_rules_task_assign'] = array(
    'label' => t('Assign translation task'),
    'group' => t('Translation Management'),
    'parameter' => array(
      'task' => array(
        'type' => 'tmgmt_local_task',
        'label' => t('Translation task'),
        'description' => t('The translation task that should be assigned to the configured user.'),
      ),
      'user' => array(
        'type' => 'user',
        'label' => t('user'),
        'description' => t('The assigned user.'),
      ),
    ),
  );
  $info['tmgmt_local_rules_task_unassign'] = array(
    'label' => t('Unassign translation task'),
    'group' => t('Translation Management'),
    'parameter' => array(
      'task' => array(
        'type' => 'tmgmt_local_task',
        'label' => t('Translation task'),
        'description' => t('The translation task which will be unassigned.'),
      ),
    ),
    'access callback' => 'tmgmt_local_rules_task_access',
  );
  return $info;
}

/**
 * Rules callback to assign a translation task to assignee.
 */
function tmgmt_local_rules_task_assign(TMGMTLocalTask $task, stdClass $assignee) {
  $task
    ->assign($assignee);
  $task
    ->save();
}

/**
 * Rules callback to unassign a translation task.
 */
function tmgmt_local_rules_task_unassign(TMGMTLocalTask $task) {
  $task
    ->unassign();
  $task
    ->save();
}

/**
 * Access callback to the unassign task rules action.
 */
function tmgmt_local_rules_task_access() {
  return user_access('administer translation tasks') || user_access('provide translation services');
}

Functions

Namesort descending Description
tmgmt_local_rules_action_info Implements hook_rules_action_info().
tmgmt_local_rules_task_access Access callback to the unassign task rules action.
tmgmt_local_rules_task_assign Rules callback to assign a translation task to assignee.
tmgmt_local_rules_task_unassign Rules callback to unassign a translation task.