system/modules/Ecommerce/Ecommerce.php 1 location
|
@@ 451-454 (lines=4) @@
|
| 448 |
|
public function getFavoriteCount() { |
| 449 |
|
if (Users\User::$cur->id) { |
| 450 |
|
return \Ecommerce\Favorite::getCount(['user_id', Users\User::$cur->id]); |
| 451 |
|
} else { |
| 452 |
|
$favs = !empty($_COOKIE['ecommerce_favitems']) ? json_decode($_COOKIE['ecommerce_favitems'], true) : []; |
| 453 |
|
return count($favs); |
| 454 |
|
} |
| 455 |
|
} |
| 456 |
|
|
| 457 |
|
public function siteSearch($search) { |
system/modules/Ecommerce/models/Item.php 1 location
|
@@ 411-414 (lines=4) @@
|
| 408 |
|
if (\Users\User::$cur->id) { |
| 409 |
|
$fav = \Ecommerce\Favorite::get([['user_id', \Users\User::$cur->id], ['item_id', $this->id]]); |
| 410 |
|
return (bool) $fav; |
| 411 |
|
} else { |
| 412 |
|
$favs = !empty($_COOKIE['ecommerce_favitems']) ? json_decode($_COOKIE['ecommerce_favitems'], true) : []; |
| 413 |
|
return in_array($this->id, $favs); |
| 414 |
|
} |
| 415 |
|
} |
| 416 |
|
} |