Skip to content
Snippets Groups Projects
Select Git revision
  • cae6febc3efa76da31d581b4bc52e4afb494a254
  • main default protected
  • studip-rector
  • ci-opt
  • course-members-export-as-word
  • data-vue-app
  • pipeline-improvements
  • webpack-optimizations
  • rector
  • icon-renewal
  • http-client-and-factories
  • jsonapi-atomic-operations
  • vueify-messages
  • tic-2341
  • 135-translatable-study-areas
  • extensible-sorm-action-parameters
  • sorm-configuration-trait
  • jsonapi-mvv-routes
  • docblocks-for-magic-methods
19 results

messaging.inc.php

Blame
  • Forked from Stud.IP / Stud.IP
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    AuthorObject.class.php 3.65 KiB
    <?php
    # Lifter002: TEST
    # Lifter007: TODO
    # Lifter003: TODO
    # Lifter010: TODO
    // +--------------------------------------------------------------------------+
    // This file is part of Stud.IP
    // AuthorObject.class.php
    //
    // Class to provide basic properties of an object 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("ERROR_NORMAL", "1");
    define("ERROR_CRITICAL", "8");
    
    
    /**
     * AuthorObject.class.php
     *
     * Class to provide basic properties of an object in Stud.IP
     *
     * @author      Alexander Willner <mail@alexanderwillner.de>
     * @copyright   2003 Stud.IP-Project
     * @access      public
     * @package     studip_core
     * @modulegroup core
     */
    class AuthorObject
    {
    
        /**
         * Holds the code and description of an internal error
         * @access   private
         * @var      array $errorArray
         */
        public $errorArray;
    
        /**
         * Holds the type of object. See INSTANCEOF_*
         * @access   private
         * @var      string $instanceof
         */
        public $instanceof;
    
        /**
         * Constructor
         * @access   public
         */
        public function __construct()
        {
            $this->instanceof = 'AuthorObject';
            $this->errorArray = [];
        }