Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
<?php
2
// This file is part of Moodle - http://moodle.org/
3
//
4
// Moodle is free software: you can redistribute it and/or modify
5
// it under the terms of the GNU General Public License as published by
6
// the Free Software Foundation, either version 3 of the License, or
7
// (at your option) any later version.
8
//
9
// Moodle is distributed in the hope that it will be useful,
10
// but WITHOUT ANY WARRANTY; without even the implied warranty of
11
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
// GNU General Public License for more details.
13
//
14
// You should have received a copy of the GNU General Public License
15
// along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
16
 
17
/**
18
 * A widget layout contains information on how to display data.
19
 *
20
 * @package    block_dash
21
 * @copyright  2022 bdecent gmbh <https://bdecent.de>
22
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
23
 */
24
 
25
namespace block_dash\local\data_custom;
26
 
27
use block_dash\local\widget\abstract_layout;
28
 
29
/**
30
 * Layout section for the contacts widget.
31
 */
32
class custom_layout extends abstract_layout {
33
 
34
    /**
35
     * Tempalte mustache file name, the layout uses.
36
     *
37
     * @return string
38
     */
39
    public function get_mustache_template_name() {
40
        return $this->get_data_source()->get_mustache_template_name();
41
    }
42
 
43
    /**
44
     * Is the layout supports the fields method.
45
     *
46
     * @return bool
47
     */
48
    public function supports_field_visibility() {
49
        return false;
50
    }
51
 
52
    /**
53
     * Is the layout supports the filter method.
54
     *
55
     * @return bool
56
     */
57
    public function supports_filtering() {
58
        return false;
59
    }
60
 
61
    /**
62
     * Is the layout supports the pagination.
63
     *
64
     * @return bool
65
     */
66
    public function supports_pagination() {
67
        return true;
68
    }
69
 
70
    /**
71
     * Is the layout supports the sorting.
72
     *
73
     * @return bool
74
     */
75
    public function supports_sorting() {
76
        return false;
77
    }
78
}