1 | <?php |
||
2 | /** |
||
3 | * Analytics |
||
4 | * |
||
5 | * SPDX-FileCopyrightText: 2019-2022 Marcel Scherello |
||
6 | * SPDX-License-Identifier: AGPL-3.0-or-later |
||
7 | */ |
||
8 | |||
9 | use OCP\Util; |
||
0 ignored issues
–
show
|
|||
10 | |||
11 | Util::addStyle('analytics', 'style'); |
||
12 | Util::addStyle('analytics', '3rdParty/datatables.min'); |
||
13 | Util::addScript('analytics', '3rdParty/moment.min'); |
||
14 | Util::addScript('analytics', '3rdParty/cloner'); |
||
15 | Util::addScript('analytics', 'app'); |
||
16 | Util::addScript('analytics', 'filter'); |
||
17 | Util::addScript('analytics', 'visualization'); |
||
18 | Util::addScript('analytics', 'userGuidance'); |
||
19 | Util::addScript('analytics', '3rdParty/datatables.min'); |
||
20 | Util::addScript('analytics', '3rdParty/chart.umd'); |
||
21 | Util::addScript('analytics', '3rdParty/chartjs-adapter-moment'); |
||
22 | Util::addScript('analytics', '3rdParty/chartjs-plugin-datalabels.min'); |
||
23 | Util::addScript('analytics', '3rdParty/chartjs-plugin-zoom.min'); |
||
24 | ?> |
||
25 | |||
26 | <div id="app-content"> |
||
27 | <?php print_unescaped($this->inc('part.content')); ?> |
||
28 | </div> |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"]
, you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths