-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathDiamanteDeskBundle.php
110 lines (103 loc) · 3.74 KB
/
DiamanteDeskBundle.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<?php
/*
* Copyright (c) 2014 Eltrino LLC (http://eltrino.com)
*
* Licensed under the Open Software License (OSL 3.0).
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://opensource.org/licenses/osl-3.0.php
*
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to [email protected] so we can send you a copy immediately.
*/
namespace Diamante\DeskBundle;
use Diamante\DeskBundle\DependencyInjection\Compiler;
use Doctrine\DBAL\Types\Type;
use Oro\Bundle\DataAuditBundle\Model\AuditFieldTypeRegistry;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\HttpKernel\Bundle\Bundle;
class DiamanteDeskBundle extends Bundle
{
/**
* @var array
*/
private $dataAuditTypes
= [
'status',
'priority',
'user_type',
'attachment_file',
'source'
];
public function boot()
{
if (!Type::hasType('branch_logo')) {
Type::addType(
'branch_logo',
'Diamante\DeskBundle\Infrastructure\Persistence\Doctrine\DBAL\Types\BranchLogoType'
);
}
if (!Type::hasType('priority')) {
Type::addType(
'priority',
'Diamante\DeskBundle\Infrastructure\Persistence\Doctrine\DBAL\Types\TicketPriorityType'
);
}
if (!Type::hasType('attachment_file')) {
Type::addType(
'attachment_file',
'Diamante\DeskBundle\Infrastructure\Persistence\Doctrine\DBAL\Types\AttachmentFileType'
);
}
if (!Type::hasType('status')) {
Type::addType(
'status',
'Diamante\DeskBundle\Infrastructure\Persistence\Doctrine\DBAL\Types\TicketStatusType'
);
}
if (!Type::hasType('source')) {
Type::addType(
'source',
'Diamante\DeskBundle\Infrastructure\Persistence\Doctrine\DBAL\Types\TicketSourceType'
);
}
if (!Type::hasType('ticket_sequence_number')) {
Type::addType(
'ticket_sequence_number',
'Diamante\DeskBundle\Infrastructure\Persistence\Doctrine\DBAL\Types\TicketSequenceNumberType'
);
}
if (!Type::hasType('ticket_unique_id')) {
Type::addType(
'ticket_unique_id',
'Diamante\DeskBundle\Infrastructure\Persistence\Doctrine\DBAL\Types\TicketUniqueIdType'
);
}
foreach ($this->dataAuditTypes as $type) {
if (!AuditFieldTypeRegistry::hasType($type)) {
AuditFieldTypeRegistry::addType($type, $type);
}
}
$em = $this->container->get('doctrine.orm.default_entity_manager');
$conn = $em->getConnection();
$conn->getDatabasePlatform()
->registerDoctrineTypeMapping('FILE', 'string');
}
/**
* @see Symfony\Component\HttpKernel\Bundle\Bundle::build()
*
* @param ContainerBuilder $container
*/
public function build(ContainerBuilder $container)
{
$container->addCompilerPass(new Compiler\TagCompilerPass())
->addCompilerPass(new Compiler\RegisterSubscribersPass())
->addCompilerPass(new Compiler\RegisterNotificationOptionsProvidersPass())
->addCompilerPass(new Compiler\FilterTypesPass())
->addCompilerPass(new Compiler\RegisterPropertyHandlersPass())
->addCompilerPass(new Compiler\SendChangedEntitiesToMessageQueueCompilerPass())
->addCompilerPass(new Compiler\AssetExtensionPass());
}
}