function _bootstrap_carousel_delete_nodes in bootstrap_carousel 7
Delete bootstrap_carousel nodes.
1 call to _bootstrap_carousel_delete_nodes()
- bootstrap_carousel_uninstall in ./
bootstrap_carousel.install  - Implements hook_uninstall().
 
File
- ./
bootstrap_carousel.install, line 130  - Install file for Bootstrap Carousel module.
 
Code
function _bootstrap_carousel_delete_nodes() {
  $query = <<<QUERY
    SELECT n.nid
      FROM {node} n
     WHERE n.type = :type
QUERY;
  $args = array(
    ':type' => CAROUSEL_NODE_TYPE,
  );
  $carousel_nodes = db_query($query, $args);
  foreach ($carousel_nodes as $node) {
    node_delete($node->nid);
  }
}