|
1
|
|
|
<?php |
|
2
|
|
|
/** |
|
3
|
|
|
* DeviceGroup.php |
|
4
|
|
|
* |
|
5
|
|
|
* Scope that only includes devices with the specified group. |
|
6
|
|
|
* |
|
7
|
|
|
* This program is free software: you can redistribute it and/or modify |
|
8
|
|
|
* it under the terms of the GNU General Public License as published by |
|
9
|
|
|
* the Free Software Foundation, either version 3 of the License, or |
|
10
|
|
|
* (at your option) any later version. |
|
11
|
|
|
* |
|
12
|
|
|
* This program is distributed in the hope that it will be useful, |
|
13
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
14
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the |
|
15
|
|
|
* GNU General Public License for more details. |
|
16
|
|
|
* |
|
17
|
|
|
* You should have received a copy of the GNU General Public License |
|
18
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
19
|
|
|
* |
|
20
|
|
|
* @package LibreNMS |
|
21
|
|
|
* @link http://librenms.org |
|
22
|
|
|
* @copyright 2016 Tony Murray |
|
23
|
|
|
* @author Tony Murray <[email protected]> |
|
24
|
|
|
*/ |
|
25
|
|
|
|
|
26
|
|
|
namespace App\DataTables\Scopes; |
|
27
|
|
|
|
|
28
|
|
|
use Yajra\Datatables\Contracts\DataTableScopeContract; |
|
29
|
|
|
|
|
30
|
|
|
class DeviceGroup implements DataTableScopeContract |
|
31
|
|
|
{ |
|
32
|
|
|
|
|
33
|
|
|
private $group_id; |
|
34
|
|
|
|
|
35
|
|
|
|
|
36
|
|
|
/** |
|
37
|
|
|
* DeviceGroup constructor. |
|
38
|
|
|
* |
|
39
|
|
|
* @param integer $group_id |
|
40
|
|
|
*/ |
|
41
|
|
|
function __construct($group_id) |
|
|
|
|
|
|
42
|
|
|
{ |
|
43
|
|
|
$this->group_id = $group_id; |
|
44
|
|
|
} |
|
45
|
|
|
|
|
46
|
|
|
/** |
|
47
|
|
|
* Apply a query scope. |
|
48
|
|
|
* |
|
49
|
|
|
* @param \Illuminate\Database\Query\Builder|\Illuminate\Database\Eloquent\Builder $query |
|
50
|
|
|
* @return mixed |
|
51
|
|
|
*/ |
|
52
|
|
|
public function apply($query) |
|
53
|
|
|
{ |
|
54
|
|
|
return $query->whereHas('groups', function($q) { |
|
|
|
|
|
|
55
|
|
|
$q->where('id', '=', $this->group_id); |
|
56
|
|
|
}); |
|
57
|
|
|
} |
|
58
|
|
|
} |
Adding explicit visibility (
private,protected, orpublic) is generally recommend to communicate to other developers how, and from where this method is intended to be used.