Completed
Push — master ( 719266...e4b221 )
by Nate
06:18 queued 04:34
created

ObjectsField::settingsHtmlVariables()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 9

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 9
ccs 0
cts 4
cp 0
rs 9.9666
c 0
b 0
f 0
cc 1
nc 1
nop 1
crap 2
1
<?php
2
3
/**
4
 * @copyright  Copyright (c) Flipbox Digital Limited
5
 * @license    https://flipboxfactory.com/software/hubspot/license
6
 * @link       https://www.flipboxfactory.com/software/hubspot/
7
 */
8
9
namespace flipbox\hubspot\services;
10
11
use Craft;
12
use flipbox\craft\integration\fields\Integrations;
13
use flipbox\craft\integration\services\IntegrationAssociations;
14
use flipbox\craft\integration\services\IntegrationField;
15
use flipbox\hubspot\fields\actions\SyncItemFrom;
16
use flipbox\hubspot\fields\actions\SyncItemTo;
17
use flipbox\hubspot\fields\actions\SyncTo;
18
use flipbox\hubspot\HubSpot;
19
use flipbox\hubspot\records\ObjectAssociation;
20
21
/**
22
 * @author Flipbox Factory <[email protected]>
23
 * @since 1.0.0
24
 */
25
class ObjectsField extends IntegrationField
26
{
27
    /**
28
     * @inheritdoc
29
     */
30
    protected $defaultAvailableActions = [
31
        SyncTo::class
32
    ];
33
34
    /**
35
     * @inheritdoc
36
     */
37
    protected $defaultAvailableItemActions = [
38
        SyncItemFrom::class,
39
        SyncItemTo::class,
40
    ];
41
42
    /**
43
     * @inheritdoc
44
     * @return ObjectAssociations
45
     */
46
    protected function associationService(): IntegrationAssociations
47
    {
48
        return HubSpot::getInstance()->getObjectAssociations();
49
    }
50
51
    /**
52
     * @inheritdoc
53
     */
54
    protected static function tableAlias(): string
55
    {
56
        return ObjectAssociation::tableAlias();
57
    }
58
59
    /*******************************************
60
     * SETTINGS
61
     *******************************************/
62
63
    /**
64
     * @inheritdoc
65
     */
66
    protected function settingsHtmlVariables(Integrations $field): array
67
    {
68
        return array_merge(
69
            parent::settingsHtmlVariables($field),
70
            [
71
                'objects' => $this->getObjects(),
72
            ]
73
        );
74
    }
75
76
    /*******************************************
77
     * OBJECTS
78
     *******************************************/
79
80
    /**
81
     * @return array
82
     */
83
    protected function getObjects(): array
84
    {
85
        return [
86
            resources\Companies::HUBSPOT_RESOURCE => [
87
                'label' => Craft::t('hubspot', 'Companies'),
88
                'value' => resources\Companies::HUBSPOT_RESOURCE
89
            ],
90
            resources\Contacts::HUBSPOT_RESOURCE => [
91
                'label' => Craft::t('hubspot', 'Contacts'),
92
                'value' => resources\Contacts::HUBSPOT_RESOURCE
93
            ],
94
            resources\ContactLists::HUBSPOT_RESOURCE => [
95
                'label' => Craft::t('hubspot', 'Contact Lists'),
96
                'value' => resources\ContactLists::HUBSPOT_RESOURCE
97
            ]
98
        ];
99
    }
100
101
    /**
102
     * @inheritdoc
103
     */
104
    public function getObjectLabel(Integrations $field): string
105
    {
106
        return $this->getObjects()[$field->object]['label'] ?? null;
107
    }
108
}
109