more content types

This commit is contained in:
root 2018-09-26 13:38:44 +02:00
parent 0d77de6c9f
commit e6ead3ce8f

View file

@ -23,11 +23,11 @@ class PodcastRorController extends ControllerBase {
private function query() {
//TODO: estrai argomento dall'url
$arg = 'ror_news';
$arg = array('ror_news', 'redazionali', 'news_trasmissioni');
$query = \Drupal::entityQuery('node');
$query
->condition('status', '1')
->condition('type', $arg)
->condition('type', $arg, 'IN')
->sort('nid', 'DESC')
->range(0, 20);
$nids = $query->execute();