system/modules/Ecommerce/Ecommerce.php 1 location
|
@@ 463-466 (lines=4) @@
|
| 460 |
|
public function getFavoriteCount() { |
| 461 |
|
if (Users\User::$cur->id) { |
| 462 |
|
return \Ecommerce\Favorite::getCount(['user_id', Users\User::$cur->id]); |
| 463 |
|
} else { |
| 464 |
|
$favs = !empty($_COOKIE['ecommerce_favitems']) ? json_decode($_COOKIE['ecommerce_favitems'], true) : []; |
| 465 |
|
return count($favs); |
| 466 |
|
} |
| 467 |
|
} |
| 468 |
|
|
| 469 |
|
public function siteSearch($search) { |
system/modules/Ecommerce/models/Item.php 1 location
|
@@ 417-420 (lines=4) @@
|
| 414 |
|
if (\Users\User::$cur->id) { |
| 415 |
|
$fav = \Ecommerce\Favorite::get([['user_id', \Users\User::$cur->id], ['item_id', $this->id]]); |
| 416 |
|
return (bool) $fav; |
| 417 |
|
} else { |
| 418 |
|
$favs = !empty($_COOKIE['ecommerce_favitems']) ? json_decode($_COOKIE['ecommerce_favitems'], true) : []; |
| 419 |
|
return in_array($this->id, $favs); |
| 420 |
|
} |
| 421 |
|
} |
| 422 |
|
} |