2020-08-21 23:28:46 +02:00
|
|
|
<?php
|
2022-11-29 21:21:26 +01:00
|
|
|
/*
|
|
|
|
|
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 2019 - 2022 Jan Böhmer (https://github.com/jbtronics)
|
|
|
|
|
*
|
|
|
|
|
* 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/>.
|
|
|
|
|
*/
|
2020-08-21 23:28:46 +02:00
|
|
|
|
|
|
|
|
namespace App\Repository\Parts;
|
|
|
|
|
|
|
|
|
|
|
2022-12-18 20:34:25 +01:00
|
|
|
use App\Entity\ProjectSystem\Project;
|
|
|
|
|
use App\Repository\StructuralDBElementRepository;
|
2022-08-14 19:32:53 +02:00
|
|
|
use InvalidArgumentException;
|
2020-08-21 23:28:46 +02:00
|
|
|
|
2022-12-18 20:34:25 +01:00
|
|
|
class DeviceRepository extends StructuralDBElementRepository
|
2020-08-21 23:28:46 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
|
|
public function getParts(object $element, array $order_by = ['name' => 'ASC']): array
|
|
|
|
|
{
|
2022-12-18 20:34:25 +01:00
|
|
|
if (!$element instanceof Project) {
|
2022-08-14 19:32:53 +02:00
|
|
|
throw new InvalidArgumentException('$element must be an Device!');
|
2020-08-21 23:28:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//TODO: Change this later, when properly implemented devices
|
|
|
|
|
return [];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getPartsCount(object $element): int
|
|
|
|
|
{
|
2022-12-18 20:34:25 +01:00
|
|
|
if (!$element instanceof Project) {
|
2022-08-14 19:32:53 +02:00
|
|
|
throw new InvalidArgumentException('$element must be an Device!');
|
2020-08-21 23:28:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//TODO: Change this later, when properly implemented devices
|
|
|
|
|
//Prevent user from deleting devices, to not accidentally remove filled devices from old versions
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
}
|