Completed
Push — master ( 275319...6575c1 )
by Scott
01:53
created

ApiSettings   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 42
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 4
lcom 0
cbo 0
dl 0
loc 42
rs 10
c 1
b 0
f 0

4 Methods

Rating   Name   Duplication   Size   Complexity  
A categoriesHideEmpty() 0 4 1
A categoriesLoadThumbnails() 0 4 1
A categoriesSelect() 0 4 1
A isEnabled() 0 4 1
1
<?php namespace Bedard\Shop\Models;
2
3
use Model;
4
5
/**
6
 * Api Settings Model.
7
 */
8
class ApiSettings extends Model
9
{
10
    /**
11
     * @var array   Behaviors
12
     */
13
    public $implement = ['System.Behaviors.SettingsModel'];
14
15
    /**
16
     * @var string  Settings code
17
     */
18
    public $settingsCode = 'bedard_shop_settings_api';
19
20
    /**
21
     * @var string  Settings fields
22
     */
23
    public $settingsFields = 'fields.yaml';
24
25
    public static function categoriesHideEmpty()
26
    {
27
        return self::get('categories_hide_empty', false);
28
    }
29
30
    public static function categoriesLoadThumbnails()
31
    {
32
        return self::get('categories_load_thumbnails', false);
33
    }
34
35
    public static function categoriesSelect()
36
    {
37
        return self::get('categories_select', []);
38
    }
39
40
    /**
41
     * Determines if the HTTP API is enabled.
42
     *
43
     * @return bool
44
     */
45
    public static function isEnabled()
46
    {
47
        return self::get('is_enabled', false);
48
    }
49
}
50