是否可以在 /admin/content 页面上添加操作。我们得到了“发布所选内容”或“删除所选内容”等...
http://screencast.com/t/v2ZMedCqy3g
我正在尝试从模块安装中添加一个操作。
谢谢
是否可以在 /admin/content 页面上添加操作。我们得到了“发布所选内容”或“删除所选内容”等...
http://screencast.com/t/v2ZMedCqy3g
我正在尝试从模块安装中添加一个操作。
谢谢
你需要实施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.'));
}
}