Ich muss Entitäten mit bestimmten Daten auswählen.
Wie soll folgendes formatiert werden? Muss ich den 15. Mai 2010 analysieren?
Auch wie ich die Fehlerseite bekomme.
function events2() {
$query = new EntityFieldQuery();
$query
->entityCondition('entity_type', 'node', '=')
->propertyCondition('status', 1, '=')
->propertyCondition('type', 'event')
->propertyCondition('field_event_date', '15-May-2010', '=');
$result = $query->execute();
return $result;
}