Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. class IndexPageController extends PageController {
  2. }
  3.  
  4. /**
  5. * Get all products marked as featured that can be purchased.
  6. */
  7.  
  8. class IndexPageController extends ProductCategory_Controller {
  9.  
  10. function FeaturedProducts()
  11. {
  12. return Product::get()->filter(array(
  13. 'Featured' => 1
  14. 'AllowPurchase' => 1
  15. ));
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement