Drupal在内容列表中添加操作

时间:2012-07-30 08:11:51

标签: module drupal-7 action

是否可以在/ admin / content页面上添加操作。我们得到了“发布所选内容”或“删除所选内容”等等......

http://screencast.com/t/v2ZMedCqy3g

我正在尝试从模块安装中添加操作。

由于

1 个答案:

答案 0 :(得分:3)

您需要实施hook_node_operations

您可以查看pathauto_node_operations作为示例...

function pathauto_node_operations() {
  $operations['pathauto_update_alias'] = array(
    'label' => t('Update URL alias'), 
    'callback' => 'pathauto_node_update_alias_multiple', 
    'callback arguments' => array('bulkupdate', array('message' => TRUE)),
  );
  return $operations;
}

注意到指定的回调采用了一个节点ID数组,以及您在钩子实现中指定的其他回调参数(参见上面的示例)。

// The call back specified above ^
function pathauto_node_update_alias_multiple(array $nids, $op, array $options = array()) {
  $options += array('message' => FALSE);

  $nodes = node_load_multiple($nids);
  foreach ($nodes as $node) {
    pathauto_node_update_alias($node, $op, $options);
  }

  if (!empty($options['message'])) {
    drupal_set_message(format_plural(count($nids), 'Updated URL alias for 1 node.', 'Updated URL aliases for @count nodes.'));
  }
}