마지막으로 이름이 지정된 모듈을 만듭니다. drush_delete
내부 drush_delete.drush.inc
파일이 코드를 넣어 :
<?php
/**
* @file
* The Drush Delete drush commands.
*/
/**
* Implements hook_drush_command().
*/
function drush_delete_drush_command() {
$items['node-delete'] = array(
'description' => dt("Delete nodes."),
'aliases' => array('nd'),
'arguments' => array(
'nids' => dt('The nids of the nodes to delete'),
),
'examples' => array(
'drush node-delete 1' => dt('Delete the node with nid = 1.'),
'drush node-delete 1 2 3' => dt('Delete the nodes with nid = 1, 2 and 3.'),
),
);
return $items;
}
/**
* Callback for the node-delete command
*/
function drush_drush_delete_node_delete() {
$nids = func_get_args();
$nids = array_filter($nids, 'is_numeric');
$nids = array_map('intval', $nids);
$nids = array_unique($nids);
$nids = array_values($nids);
$cant = count($nids);
if ($cant > 0) {
node_delete_multiple($nids);
drush_print(dt("Deleted nodes:"));
drush_print(implode(' ', $nids));
}
else {
drush_set_error('DRUSH_ERROR_CODE', dt("You must enter at least one nid"));
}
}
모듈을 설치하고 실행 drush cc drush
하여 drush 캐시를 지우고 다음과 같은 명령을 사용하십시오.
노드를 삭제하려면 다음을 사용하십시오.
drush node-delete 1
drush nd 1
여러 노드를 삭제하려면 다음을 사용하십시오.
drush node-delete 1 2 3
drush nd 1 2 3
이 모듈에서 명령을 찾을 수 있습니다.
https://github.com/adrian-cid/drush_commands