Нет доступных действий для моего пользовательского триггера Drupal - PullRequest
0 голосов
/ 27 февраля 2011

Я пишу модуль Drupal (filemaker) и определил несколько пользовательских триггеров. Триггеры отображаются просто отлично, но говорят: «Нет доступных действий для этого триггера». в admin / build / trigger / filemaker.

Есть идеи, как сделать действия доступными для моего триггера?

Заранее спасибо.

/**
 * Implementation of hook_hook_info().
 */
function filemaker_hook_info() {
  return array(
    'filemaker' => array(
      'filemaker' => array(
        'create' => array(
          'runs when' => t('After creating a FileMaker record'),
        ),
        'update' => array(
          'runs when' => t('After updating a FileMaker record'),
        ),
      ),
    ),
  );
}

/**
 * Implementation of hook_filemaker().
 */
function filemaker_filemaker($op, $node) {
  $aids = _trigger_get_hook_aids('filemaker', $op);
  $context = array(
    'hook' => 'filemaker',
    'op' => $op,
    'node' => $node,
  );
  actions_do(array_keys($aids), $node, $context);
}

[...]
    // Fire off the hook.
    module_invoke_all('filemaker', 'create', $node);
[...]

1 Ответ

0 голосов
/ 27 февраля 2011

Понял. Нашел ответ здесь .

Требуется hook_action_info_alter ().

/**
 * Implementation of hook_action_info_alter().
 */
function filemaker_action_info_alter(&$info) {

  // Loop through each action.
  foreach ($info as $type => $data) {

    // Only add our trigger to node or system actions.
    if (stripos($type, "node_") === 0 || stripos($type, "system_") === 0) {

      // Don't remove any triggers that are already added to the approved list.
      if (isset($info[$type]['hooks']['application'])) {
        $info[$type]['hooks']['filemaker'] = array_merge($info[$type]['hooks']['filemaker'], array('create', 'update'));
      }

      // Add our trigger to the approved list of hooks.
      else {
        $info[$type]['hooks']['filemaker'] = array('create', 'update');
      }
    }
  }
}
...