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 a percentage label.
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 a percentage label.
28
 *
29
 * @package block_dash
30
 */
31
class percent_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
     * @throws \coding_exception
41
     */
42
    public function transform_data($data, \stdClass $record) {
43
 
44
        if (($percentfor = $this->get_option('outof'))) {
45
            $data = $data / $percentfor;
46
        }
47
 
48
        return round($data * 100) . '%';
49
    }
50
 
51
    /**
52
     * Need custom value for transform data, which table uses the attribute dynamically.
53
     *
54
     * @return bool
55
     */
56
    public function is_needs_construct_data() {
57
        return true;
58
    }
59
 
60
    /**
61
     * Set the options before transform the data. this will usefull for dynamic field setup.
62
     *
63
     * @param string $field
64
     * @param int $customvalue
65
     *
66
     * @return void
67
     */
68
    public function set_transform_field($field, $customvalue=null) {
69
        $customvalue = $customvalue ?: 100;
70
        $customvalue = intval($customvalue);
71
        $this->set_option('outof', $customvalue);
72
    }
73
}