Skip to content

Instantly share code, notes, and snippets.

@mkorostoff
Last active August 29, 2015 14:09
Show Gist options
  • Save mkorostoff/4dfa9e447933b69b6043 to your computer and use it in GitHub Desktop.
Save mkorostoff/4dfa9e447933b69b6043 to your computer and use it in GitHub Desktop.
<?php
//DRUPAL 7 VERSION; DO NOT USE FOR DRUPAL 8
$query = new EntityFieldQuery();
$next = $query->propertyCondition('created', $created_time, '>')
->entityCondition('bundle', 'article')
->propertyOrderBy('created', 'ASC')
->range(0, 1)
->execute();
//DRUPAL 7 VERSION; DO NOT USE FOR DRUPAL 8
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment