Advertisement
Guest User

Untitled

a guest
Oct 7th, 2013
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.38 KB | None | 0 0
  1. $query = new EntityFieldQuery();
  2. $query->entityCondition('entity_type', 'commerce_product')
  3.       ->propertyCondition('status', 1)
  4.       ->propertyCondition('type', 'games')
  5.       ->fieldCondition('field_platform', 'tid', 76) // 76 is the ID for PlayStation 3
  6.       ->fieldOrderBy('commerce_price', 'amount', 'ASC');
  7. $result = $query->execute();
  8.  
  9. ------
  10.  
  11. Returns:
  12.  
  13. array(0) {
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement