"git@gitlab.studip.de:tleilax/studip.git" did not exist on "c9be4d34e70e7cf1d8caea480b016661422ad110"
Select Git revision
courseware-index-app.js
Forked from
Stud.IP / Stud.IP
Source project has a limited visibility.
-
Marcus Eibrink-Lunzenauer authored
Closes #279.
Marcus Eibrink-Lunzenauer authoredCloses #279.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
DatabaseObject.class.php 4.07 KiB
<?php
# Lifter002: TEST
# Lifter007: TODO
# Lifter003: TODO
# Lifter010: TODO
// +--------------------------------------------------------------------------+
// This file is part of Stud.IP
// DatabaseObject.class.php
//
// Class to provide basic properties of an DatabseObject in Stud.IP
//
// Copyright (c) 2003 Alexander Willner <mail@AlexanderWillner.de>
// +--------------------------------------------------------------------------+
// 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 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.
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
// +--------------------------------------------------------------------------+
# Define all required constants ============================================= #
/**
* @const INSTANCEOF_STUDIPOBJECT Is instance of a studip object
* @access public
*/
define("INSTANCEOF_DATABASEOBJECT", "DatabaseObject");
# =========================================================================== #
/**
* DatabaseObject.class.php
*
* Class to provide basic properties of an DatabaseObject in Stud.IP
*
* @author Alexander Willner <mail@alexanderwillner.de>
* @copyright 2003 Stud.IP-Project
* @access public
* @package studip_core
* @modulegroup core
*/
class DatabaseObject extends AuthorObject
{
public $authorID;
public $objectID;
public $rangeID;
# Define constructor and destructor ========================================= #
/**
* Constructor
*
* @access public
*/
public function __construct()
{
/* For good OOP: Call constructor ------------------------------------- */
parent::__construct();
$this->instanceof = INSTANCEOF_DATABASEOBJECT;
/* -------------------------------------------------------------------- */
}
# =========================================================================== #
# Define public functions =================================================== #