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
 * Designates the field definition as an identifier (database record ID).
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
 * Designates the field definition as an identifier (database record ID).
28
 *
29
 * @package block_dash
30
 */
31
class identifier_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 format
36
     *
37
     * @param mixed $data Raw data associated with this field definition.
38
     * @param \stdClass $record Full record from database.
39
     * @return mixed
40
     */
41
    public function transform_data($data, \stdClass $record) {
42
        return $data;
43
    }
44
}