2 ///////////////////////////////////////////////////////////////////////////
4 // NOTICE OF COPYRIGHT //
6 // Moodle - Modular Object-Oriented Dynamic Learning Environment //
7 // http://moodle.org //
9 // Copyright (C) 1999-onwards Moodle Pty Ltd http://moodle.com //
11 // This program is free software; you can redistribute it and/or modify //
12 // it under the terms of the GNU General Public License as published by //
13 // the Free Software Foundation; either version 2 of the License, or //
14 // (at your option) any later version. //
16 // This program is distributed in the hope that it will be useful, //
17 // but WITHOUT ANY WARRANTY; without even the implied warranty of //
18 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
19 // GNU General Public License for more details: //
21 // http://www.gnu.org/copyleft/gpl.html //
23 ///////////////////////////////////////////////////////////////////////////
25 class data_field_number
extends data_field_base
{
28 function data_field_number($field=0, $data=0) {
29 parent
::data_field_base($field, $data);
32 function update_content($recordid, $value, $name='') {
33 $content = new object;
34 $content->fieldid
= $this->field
->id
;
35 $content->recordid
= $recordid;
36 $value = trim($value);
37 if (strlen($value) > 0) {
38 $content->content
= floatval($value);
40 $content->content
= null;
42 if ($oldcontent = get_record('data_content','fieldid', $this->field
->id
, 'recordid', $recordid)) {
43 $content->id
= $oldcontent->id
;
44 return update_record('data_content', $content);
46 return insert_record('data_content', $content);
50 function display_browse_field($recordid, $template) {
51 if ($content = get_record('data_content', 'fieldid', $this->field
->id
, 'recordid', $recordid)) {
52 if (strlen($content->content
) < 1) {
55 $number = $content->content
;
56 $decimals = trim($this->field
->param1
);
57 // only apply number formatting if param1 contains an integer number >= 0:
58 if (preg_match("/^\d+$/", $decimals)) {
59 $decimals = $decimals * 1;
60 // removes leading zeros (eg. '007' -> '7'; '00' -> '0')
61 $str = format_float($number, $decimals, true);
62 // For debugging only:
63 # $str .= " ($decimals)";
72 function display_search_field($value = '') {
73 return '<input type="text" size="16" name="f_'.$this->field
->id
.'" value="'.$value.'" />';
76 function parse_search_field() {
77 return optional_param('f_'.$this->field
->id
, '', PARAM_NOTAGS
);
81 function generate_sql($tablealias, $value) {
82 return " ({$tablealias}.fieldid = {$this->field->id} AND {$tablealias}.content = '$value') ";
85 function get_sort_sql($fieldname) {
87 switch ($CFG->dbfamily
) {
89 // string in an arithmetic operation is converted to a floating-point number
90 return '('.$fieldname.'+0.0)';
93 return 'CAST('.$fieldname.' AS REAL)';
95 // the rest, just the field name. TODO: Analyse behaviour under MSSQL and Oracle