EditNCFTipoMovimiento   A
last analyzed

Complexity

Total Complexity 5

Size/Duplication

Total Lines 34
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 20
c 1
b 0
f 0
dl 0
loc 34
rs 10
wmc 5

3 Methods

Rating   Name   Duplication   Size   Complexity  
A execAfterAction() 0 17 3
A getModelClassName() 0 3 1
A getPageData() 0 8 1
1
<?php
2
3
/*
4
 * Copyright (C) 2019 joenilson.
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\Controller;
23
24
use FacturaScripts\Core\Base\DataBase\DataBaseWhere;
0 ignored issues
show
Bug introduced by
The type FacturaScripts\Core\Base\DataBase\DataBaseWhere was not found. Maybe you did not declare it correctly or list all dependencies?

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:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
25
use FacturaScripts\Core\Lib\ExtendedController\EditController;
26
use FacturaScripts\Plugins\fsRepublicaDominicana\Model\NCFTipoMovimiento;
27
28
/**
29
 * Description of EditNCFTipoMovimiento
30
 *
31
 * @author joenilson
32
 */
33
class EditNCFTipoMovimiento extends EditController
34
{
35
    public function getModelClassName(): string
36
    {
37
        return 'NCFTipoMovimiento';
38
    }
39
40
    public function getPageData(): array
41
    {
42
        $pagedata = parent::getPageData();
43
        $pagedata['menu'] = 'RepublicaDominicana';
44
        $pagedata['title'] = 'edit-ncf-movement-type';
45
        $pagedata['icon'] = 'fas fa-tasks';
46
47
        return $pagedata;
48
    }
49
50
    public function execAfterAction($action)
51
    {
52
        switch ($action) {
53
            case 'busca_movimiento':
54
                $this->setTemplate(false);
55
                $tipomovimiento = new NCFTipoMovimiento();
56
                $where = [new DatabaseWhere('tipomovimiento', $_REQUEST['tipomovimiento'])];
57
                $movimientos = $tipomovimiento->all($where);
58
                if ($movimientos) {
59
                    //header('Content-Type: application/json');
60
                    echo json_encode(['movimientos' => $movimientos], JSON_THROW_ON_ERROR);
61
                } else {
62
                    echo '';
63
                }
64
                break;
65
            default:
66
                break;
67
        }
68
    }
69
70
}
71