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

ApiSettings::categoriesLoadThumbnails()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
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