Skip to content

Instantly share code, notes, and snippets.

@Syntaf
Created February 28, 2018 23:00
Show Gist options
  • Save Syntaf/080f8008d36a231585b1ee574e868b5b to your computer and use it in GitHub Desktop.
Save Syntaf/080f8008d36a231585b1ee574e868b5b to your computer and use it in GitHub Desktop.
if ($showMobile)
{
$pageSize = 23;
}
else
{
$pageSize = $_GET['pp'] ? $_GET['pp'] : 24;
}
// .....
$searchOptions = array(
// ...
'limit' => $showMobile ? $pageSize : 28
);
$service = SD\Search\SearchService::create();
$deals = $service->getDealsWithOptions($searchOptions);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment