Skip to content

Instantly share code, notes, and snippets.

@patrickmaciel
Created February 28, 2012 18:29
Show Gist options
  • Save patrickmaciel/1934161 to your computer and use it in GitHub Desktop.
Save patrickmaciel/1934161 to your computer and use it in GitHub Desktop.
banners - banner_locais - banner_canais - banner_tipos - banners_banner_canais
<?php
$banners = $this->Banner->find('all', array(
'conditions' => array(
'and' => array(
'BannerLocal.alias' => 'pifb',
'Banner.BannerCanal.canal' => '*',
'Banner.ativo' => true,
'Banner.excluido' => false
),
'or' => array(
'BannerLocal.alias' => 'pifb',
'BannerCanal.canal' => 'home',
'Banner.ativo' => true,
'Banner.excluido' => false
)
),
'order' => 'rand()',
'limit' => 7
));
debug($banners);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment