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
 * Transform data to user's profile image URL.
19
 *
20
 * @package    block_dash
21
 * @copyright  2019 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_grid\field\attribute;
26
/**
27
 * Transform data to user's profile image URL.
28
 *
29
 * @package block_dash
30
 */
31
class widget_attribute extends abstract_field_attribute {
32
 
33
    /**
34
     * After records are relieved from database each field has a chance to transform the data.
35
     * Example: Convert unix timestamp into a human readable date fsormat
36
     *
37
     * @param mixed $data
38
     * @param \stdClass $record Entire row
39
     * @return mixed
40
     * @throws \moodle_exception
41
     */
42
    public function transform_data($data, \stdClass $record) {
43
        global $PAGE, $DB;
44
        $widget = $this->get_option('widget');
45
        $method = $this->get_option('method');
46
        $callback = $this->get_option('callback');
47
        if ($widget && $method) {
48
            if (method_exists($widget, $method)) {
49
                $data = $widget->$method($record);
50
            }
51
        }
52
 
53
        if ($callback) {
54
            $data = $callback($record, $data);
55
        }
56
 
57
        return $data;
58
    }
59
}