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
 * Transforms data to image element.
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
 * Transforms data to image element.
28
 *
29
 * @package block_dash
30
 */
31
class image_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
 
43
        if (($url = $this->get_option('customurl')) && ($labelfield = $this->get_option('label_field'))) {
44
            $url = $this->update_placeholders($record, urldecode($url));
45
            return \html_writer::img($url, $this->get_option('title'), [
46
                'class' => 'img-responsive',
47
                'role' => 'presentation ',
48
            ]);
49
        }
50
 
51
        if ($data) {
52
            return \html_writer::img($data, $this->get_option('title'), [
53
                'class' => 'img-responsive',
54
                'role' => 'presentation ',
55
            ]);
56
        }
57
 
58
        return $data;
59
    }
60
 
61
    /**
62
     * Need custom value for transform data, which table uses the attribute dynamically.
63
     *
64
     * @return bool
65
     */
66
    public function is_needs_construct_data() {
67
        return true;
68
    }
69
 
70
    /**
71
     * Set the options before transform the data. this will usefull for dynamic field setup.
72
     *
73
     * @param string $field
74
     * @param string $customvalue
75
     *
76
     * @return void
77
     */
78
    public function set_transform_field($field, $customvalue=null) {
79
        $this->set_option('label_field', $field);
80
 
81
        if ($customvalue !== null) {
82
            $this->set_option('customurl', new \moodle_url($customvalue));
83
        }
84
    }
85
}