मुझे विशिष्ट तिथियों वाली संस्थाओं का चयन करने की आवश्यकता है।
निम्न को किस प्रकार स्वरूपित किया जाना चाहिए। क्या मुझे 15-मई -2010 को पार्स करने की आवश्यकता है
इसके अलावा मुझे त्रुटि पृष्ठ कैसे मिलता है।
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;
}