68 lines
1.9 KiB
PHP
68 lines
1.9 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Vvveb
|
|
*
|
|
* Copyright (C) 2022 Ziadin Givan
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
namespace Vvveb\Component\Product;
|
|
|
|
use Vvveb\System\Component\ComponentBase;
|
|
use Vvveb\System\Event;
|
|
use function Vvveb\url;
|
|
|
|
class Vendors extends ComponentBase {
|
|
public static $defaultOptions = [
|
|
'start' => 0,
|
|
//'language_id' => 1,
|
|
'count' => ['url', 4],
|
|
'vendor_id' => NULL,
|
|
'order' => ['url', 'price asc'],
|
|
'category_id' => NULL,
|
|
'limit' => 7,
|
|
'page' => 1,
|
|
'type' => 'tags',
|
|
'parents_only' => false,
|
|
'parents_children_only' => false,
|
|
'parents_without_children' => false,
|
|
'filter' => false,
|
|
];
|
|
|
|
function results() {
|
|
$category = new \Vvveb\Sql\VendorSQL();
|
|
$results = $category->getAll($this->options);
|
|
|
|
$filter = [];
|
|
|
|
if (isset($this->options['filter'])) {
|
|
$filter = $this->options['filter']['vendor_id'] ?? [];
|
|
}
|
|
|
|
foreach ($results['vendor'] as &$vendor) {
|
|
if ($filter) {
|
|
$vendor['active'] = in_array($vendor['vendor_id'], $filter);
|
|
}
|
|
$vendor['url'] = url('product/vendor/index', $vendor);
|
|
}
|
|
|
|
list($results) = Event :: trigger(__CLASS__,__FUNCTION__, $results);
|
|
|
|
return $results;
|
|
}
|
|
}
|