Skip to content

Instantly share code, notes, and snippets.

@jazzslider
Created April 10, 2017 19:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jazzslider/e7f2d72ae32b959e245c27fe66016393 to your computer and use it in GitHub Desktop.
Save jazzslider/e7f2d72ae32b959e245c27fe66016393 to your computer and use it in GitHub Desktop.
lotus.module
<?php
function lotus_cron() {
$old_nodes = \Drupal::service('lotus.old_nodes')->load();
foreach ($old_nodes as $node) {
$node->setPublished(false);
$node->save();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment