1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/* |
4
|
|
|
* Copyright (C) 2020 Joe Zegarra. |
5
|
|
|
* |
6
|
|
|
* This library is free software; you can redistribute it and/or |
7
|
|
|
* modify it under the terms of the GNU Lesser General Public |
8
|
|
|
* License as published by the Free Software Foundation; either |
9
|
|
|
* version 3 of the License, or (at your option) any later version. |
10
|
|
|
* |
11
|
|
|
* This library is distributed in the hope that it will be useful, |
12
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
13
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
14
|
|
|
* Lesser General Public License for more details. |
15
|
|
|
* |
16
|
|
|
* You should have received a copy of the GNU Lesser General Public |
17
|
|
|
* License along with this library; if not, write to the Free Software |
18
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, |
19
|
|
|
* MA 02110-1301 USA |
20
|
|
|
*/ |
21
|
|
|
|
22
|
|
|
namespace FacturaScripts\Plugins\fsRepublicaDominicana; |
23
|
|
|
|
24
|
|
|
use FacturaScripts\Core\Base\InitClass; |
|
|
|
|
25
|
|
|
use FacturaScripts\Dinamic\Lib\AssetManager; |
|
|
|
|
26
|
|
|
|
27
|
|
|
/** |
28
|
|
|
* Description of Init |
29
|
|
|
* |
30
|
|
|
* @author Joe Zegarra |
31
|
|
|
*/ |
32
|
|
|
class Init extends InitClass |
33
|
|
|
{ |
34
|
|
|
public function init() |
35
|
|
|
{ |
36
|
|
|
$this->loadExtension(new Extension\Model\Cliente()); |
37
|
|
|
$this->loadExtension(new Extension\Model\FacturaCliente()); |
38
|
|
|
$this->loadExtension(new Extension\Model\FacturaProveedor()); |
39
|
|
|
$this->loadExtension(new Extension\Controller\EditCliente()); |
40
|
|
|
$this->loadExtension(new Extension\Controller\EditFacturaCliente()); |
41
|
|
|
$this->loadExtension(new Extension\Controller\EditFacturaProveedor()); |
42
|
|
|
AssetManager::add('js', \FS_ROUTE . '/Plugins/fsRepublicaDominicana/Assets/JS/CommonDomFunctions.js'); |
|
|
|
|
43
|
|
|
} |
44
|
|
|
|
45
|
|
|
public function update() |
46
|
|
|
{ |
47
|
|
|
// |
48
|
|
|
} |
49
|
|
|
} |
50
|
|
|
|
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