Skip to content
Snippets Groups Projects
Select Git revision
  • a3da1483a9e689846179159355badfec8073dbec
  • main default protected
  • step-3263
  • feature/plugins-cli
  • feature/vite
  • step-2484-peerreview
  • biest/issue-5051
  • tests/simplify-jsonapi-tests
  • fix/typo-in-1a70031
  • feature/broadcasting
  • database-seeders-and-factories
  • feature/peer-review-2
  • feature-feedback-jsonapi
  • feature/peerreview
  • feature/balloon-plus
  • feature/stock-images-unsplash
  • tic-2588
  • 5.0
  • 5.2
  • biest/unlock-blocks
  • biest-1514
21 results

EvaluationTreeEditView.class.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.
    EvaluationTreeEditView.class.php 108.64 KiB
    <?php
    # Lifter002: TODO
    # Lifter005: TODO
    # Lifter007: TODO
    # Lifter003: TODO
    # Lifter010: TODO
    // +--------------------------------------------------------------------------+
    // This file is part of Stud.IP
    // Copyright (C) 2001-2004 Stud.IP
    // +--------------------------------------------------------------------------+
    // 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.
    // +--------------------------------------------------------------------------+
    
    use Studip\Button, Studip\LinkButton;
    
    # Include all required files ================================================ #
    require_once 'lib/evaluation/evaluation.config.php';
    require_once EVAL_LIB_COMMON;
    require_once EVAL_FILE_EVALTREE;
    require_once EVAL_FILE_EVAL;
    # ====================================================== end: including files #
    
    /**
     * Class to print out the an evaluation's admin-tree
     *
     * @author  Christian Bauer <alfredhitchcock@gmx.net>
     * @copyright   2004 Stud.IP-Project
     * @access  public
     * @package     evaluation
     * @modulegroup evaluation_modules
     */
    
    
    # defines ==================================================================== #
    
    /**
     * @const NO_TEMPLATE_GROUP  title of the template without temtplateID
     * @access private
     */
    define('NO_TEMPLATE_GROUP', _('keine Vorlage'));
    
    /**
     * @const NO_TEMPLATE_GROUP_TITLE  title of questiongroup without title
     * @access private
     */
    define('NO_QUESTION_GROUP_TITLE', _('*Fragenblock*'));
    
    /**
     * @const NO_TEMPLATE  title of a template without title
     * @access private
     */
    define('NO_TEMPLATE', _('*unbekannt*'));
    
    /**
     * @const NEW_EVALUATION_TITLE  title of a new question block
     * @access public
     */
    define('NEW_EVALUATION_TITLE', _('Neue Evaluation'));