MediaAdmin   A
last analyzed

Complexity

Total Complexity 6

Size/Duplication

Total Lines 58
Duplicated Lines 0 %

Coupling/Cohesion

Components 2
Dependencies 4

Importance

Changes 0
Metric Value
wmc 6
lcom 2
cbo 4
dl 0
loc 58
rs 10
c 0
b 0
f 0

5 Methods

Rating   Name   Duplication   Size   Complexity  
A createQuery() 0 10 2
A setRoot() 0 4 1
A id() 0 4 1
A configureDatagridFilters() 0 10 1
A configureRoutes() 0 13 1
1
<?php
2
3
declare(strict_types=1);
4
5
/*
6
 * This file is part of the Sonata Project package.
7
 *
8
 * (c) Thomas Rabaix <[email protected]>
9
 *
10
 * For the full copyright and license information, please view the LICENSE
11
 * file that was distributed with this source code.
12
 */
13
14
namespace Sonata\MediaBundle\Admin\PHPCR;
15
16
use Sonata\AdminBundle\Datagrid\DatagridMapper;
17
use Sonata\AdminBundle\Route\RouteCollection;
18
use Sonata\MediaBundle\Admin\BaseMediaAdmin as Admin;
19
20
/**
21
 * @final since sonata-project/media-bundle 3.21.0
22
 */
23
class MediaAdmin extends Admin
24
{
25
    /**
26
     * Path to the root node of media documents.
27
     *
28
     * @var string
29
     */
30
    protected $root;
31
32
    /**
33
     * @param string $root
34
     */
35
    public function setRoot($root): void
36
    {
37
        $this->root = $root;
38
    }
39
40
    public function createQuery($context = 'list')
41
    {
42
        $query = $this->getModelManager()->createQuery($this->getClass(), 'a', $this->root);
0 ignored issues
show
Unused Code introduced by
The call to ModelManagerInterface::createQuery() has too many arguments starting with $this->root.

This check compares calls to functions or methods with their respective definitions. If the call has more arguments than are defined, it raises an issue.

If a function is defined several times with a different number of parameters, the check may pick up the wrong definition and report false positives. One codebase where this has been known to happen is Wordpress.

In this case you can add the @ignore PhpDoc annotation to the duplicate definition and it will be ignored.

Loading history...
43
44
        foreach ($this->extensions as $extension) {
45
            $extension->configureQuery($this, $query, $context);
46
        }
47
48
        return $query;
49
    }
50
51
    public function id($object)
52
    {
53
        return $this->getUrlsafeIdentifier($object);
54
    }
55
56
    protected function configureDatagridFilters(DatagridMapper $datagridMapper): void
57
    {
58
        // TODO disabled filter due to no attached service for filter types: string, checkbox
59
//        $datagridMapper
60
//            ->add('name')
61
//            ->add('providerReference')
62
//            ->add('enabled')
63
//            ->add('context')
64
//        ;
65
    }
66
67
    protected function configureRoutes(RouteCollection $collection): void
68
    {
69
        // Allow path in id parameter
70
        $collection->add('view', $this->getRouterIdParameter().'/view', [], ['id' => '.+', '_method' => 'GET']);
71
        $collection->add(
72
            'show',
73
            $this->getRouterIdParameter().'/show',
74
            [
75
                '_controller' => sprintf('%s:%s', $this->baseControllerName, 'view'),
76
            ],
77
            ['id' => '.+', '_method' => 'GET']
78
        );
79
    }
80
}
81