c3jsBase::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 1 Features 0
Metric Value
c 1
b 1
f 0
dl 0
loc 5
rs 9.4285
cc 1
eloc 3
nc 1
nop 2
1
<?php
2
/**
3
 * Copyright (c) 2014 - Arno van Rossum <[email protected]>
4
 *
5
 * Permission is hereby granted, free of charge, to any person obtaining a copy
6
 * of this software and associated documentation files (the "Software"), to deal
7
 * in the Software without restriction, including without limitation the rights
8
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
 * copies of the Software, and to permit persons to whom the Software is
10
 * furnished to do so, subject to the following conditions:
11
 *
12
 * The above copyright notice and this permission notice shall be included in
13
 * all copies or substantial portions of the Software.
14
 *
15
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
 * THE SOFTWARE.
22
 */
23
24
namespace OCA\ocUsageCharts\Adapters\c3js;
25
26
use OCA\ocUsageCharts\Entity\ChartConfig;
27
use OCA\ocUsageCharts\Owncloud\User;
28
29
30
/**
31
 * @author Arno van Rossum <[email protected]>
32
 */
33
abstract class c3jsBase
34
{
35
    /**
36
     * @var ChartConfig
37
     */
38
    private $config;
39
40
    /**
41
     * @var User
42
     */
43
    protected $user;
44
45
    /**
46
     * @param ChartConfig $chartConfig
47
     * @param User $user
48
     */
49
    public function __construct(ChartConfig $chartConfig, User $user)
50
    {
51
        $this->config = $chartConfig;
52
        $this->user = $user;
53
    }
54
55
    /**
56
     * Load the frontend files needed
57
     */
58
    public function loadFrontend()
59
    {
60
        \OCP\Util::addStyle('ocusagecharts', 'c3/c3');
61
        \OCP\Util::addScript('ocusagecharts', 'd3/d3.min');
62
        \OCP\Util::addScript('ocusagecharts', 'c3/c3.min');
63
        \OCP\Util::addScript('ocusagecharts', 'c3_initGraphs');
64
    }
65
66
    public function getConfig()
67
    {
68
        return $this->config;
69
    }
70
}