moodle/lib/grade/grade_object.php

204 lines
7.0 KiB
PHP
Raw Normal View History

2007-04-27 01:17:02 +00:00
<?php // $Id$
///////////////////////////////////////////////////////////////////////////
// //
// NOTICE OF COPYRIGHT //
// //
// Moodle - Modular Object-Oriented Dynamic Learning Environment //
// http://moodle.com //
// //
// Copyright (C) 2001-2003 Martin Dougiamas http://dougiamas.com //
// //
// This program is free software; you can redistribute it and/or modify //
// it under the terms of the GNU General Public License as published by //
// the Free Software Foundation; either version 2 of the License, or //
// (at your option) any later version. //
// //
// This program is distributed in the hope that it will be useful, //
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
// GNU General Public License for more details: //
// //
// http://www.gnu.org/copyleft/gpl.html //
// //
///////////////////////////////////////////////////////////////////////////
/**
* An abstract object that holds methods and attributes common to all grade_* objects defined here.
* @abstract
*/
class grade_object {
2007-04-27 01:17:02 +00:00
/**
* Array of class variables that are not part of the DB table fields
* @var array $nonfields
*/
var $nonfields = array('nonfields', 'required_fields');
2007-04-27 01:17:02 +00:00
/**
* Array of required fields (keys) and their default values (values).
* @var array $required_fields
*/
var $required_fields = array();
/**
* The PK.
* @var int $id
*/
var $id;
/**
* The first time this grade_calculation was created.
* @var int $timecreated
*/
var $timecreated;
/**
* The last time this grade_calculation was modified.
* @var int $timemodified
*/
var $timemodified;
/**
* Constructor. Optionally (and by default) attempts to fetch corresponding row from DB.
* @param object $params an object with named parameters for this grade item.
* @param boolean $fetch Whether to fetch corresponding row from DB or not.
*/
function grade_object($params=NULL, $fetch = true) {
if (!empty($params) && (is_array($params) || is_object($params))) {
$this->assign_to_this($params);
if ($fetch) {
$records = $this->fetch_all_using_this();
if ($records && count($records) > 0) {
$this->assign_to_this(current($records));
}
}
}
2007-04-27 01:17:02 +00:00
}
/**
* Updates this object in the Database, based on its object variables. ID must be set.
*
* @return boolean
*/
function update() {
$this->timemodified = mktime();
if (!empty($this->usermodified)) {
global $USER;
$this->usermodified = $USER->id;
2007-04-27 01:17:02 +00:00
}
$result = update_record($this->table, $this);
2007-04-27 01:17:02 +00:00
return $result;
}
/**
* Deletes this object from the database.
*/
function delete() {
2007-04-27 01:17:02 +00:00
return delete_records($this->table, 'id', $this->id);
}
/**
* Records this object in the Database, sets its id to the returned value, and returns that value.
* @return int PK ID if successful, false otherwise
*/
function insert() {
2007-04-27 01:17:02 +00:00
$this->set_timecreated();
$clone = $this;
// Unset non-set fields
foreach ($clone as $var => $val) {
if (empty($val)) {
unset($clone->$var);
}
}
global $USER;
$this->usermodified = $USER->id;
$this->id = insert_record($this->table, $clone, true);
2007-04-27 01:17:02 +00:00
return $this->id;
}
/**
* Uses the variables of this object to retrieve all matching objects from the DB.
* @return array $objects
*/
function fetch_all_using_this() {
2007-04-27 01:17:02 +00:00
$variables = get_object_vars($this);
$wheresql = '';
foreach ($variables as $var => $value) {
if (!empty($value) && !in_array($var, $this->nonfields)) {
$wheresql .= " $var = '$value' AND ";
}
}
// Trim trailing AND
$wheresql = substr($wheresql, 0, strrpos($wheresql, 'AND'));
$objects = get_records_select($this->table, $wheresql, 'id');
if (!empty($objects)) {
$full_objects = array();
// Convert the stdClass objects returned by the get_records_select method into proper objects
$classname = get_class($this);
foreach ($objects as $id => $stdobject) {
$full_objects[$id] = new $classname($stdobject, false);
}
return $full_objects;
} else {
return $objects;
}
2007-04-27 01:17:02 +00:00
}
/**
* If this object hasn't yet been saved in DB (empty $id), this method sets the timecreated variable
* to the current or given time. If a value is already set in DB,
* this method will do nothing, unless the $override parameter is set to true. This is to avoid
* unintentional overwrites.
*
* @param int $timestamp Optional timestamp to override current timestamp.
* @param boolean $override Whether to override an existing value for this field in the DB.
* @return boolean True if successful, false otherwise.
*/
function set_timecreated($timestamp = null, $override = false) {
2007-04-27 01:17:02 +00:00
if (empty($timestamp)) {
$timestamp = mktime();
}
if (empty($this->id)) {
$this->timecreated = $timestamp;
$this->timemodified = $timestamp;
} else {
$current_time = get_field($this->table, 'timecreated', 'id', $this->id);
if (empty($current_time) || $override) {
$this->timecreated = $timestamp;
$this->timemodified = $timestamp;
return $this->timecreated;
} else {
return false;
}
}
return $this->timecreated;
}
/**
* Given an associated array or object, cycles through each key/variable
* and assigns the value to the corresponding variable in this object.
*/
function assign_to_this($params) {
foreach ($params as $param => $value) {
if (in_object_vars($param, $this)) {
$this->$param = $value;
}
}
}
2007-04-27 01:17:02 +00:00
}
?>