Skip to content
Snippets Groups Projects
Select Git revision
  • e91944131bf2bc1e11e6cc93c7634179876ac143
  • 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

CoursewareCourseManager.vue

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'));