Created
April 10, 2017 19:22
-
-
Save jazzslider/e7f2d72ae32b959e245c27fe66016393 to your computer and use it in GitHub Desktop.
lotus.module
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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