Proyectos de Subversion Moodle

Rev

Autoría | Ultima modificación | Ver Log |

<?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle 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 3 of the License, or
// (at your option) any later version.
//
// Moodle 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 Moodle.  If not, see <http://www.gnu.org/licenses/>.

/**
 * Strings for component 'report_coursestats', language 'en'
 *
 * @package   report
 * @subpackage coursestats
 * @copyright 2017 Paulo Jr.
 * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
 */

defined('MOODLE_INTERNAL') || die;

define('ALL_USAGE_TYPE', 'all');
define('ALL_CATEGORIES', -1);
define('NULL_USAGE_TYPE', 'null');
define('FORUM_USAGE_TYPE', 'forum');
define('REPOSITORY_USAGE_TYPE', 'repository');
define('ACTIVITY_USAGE_TYPE', 'activity');
define('PLUGIN_TABLE_NAME', 'report_coursestats');
define('NEWS_FORUM_NAME', 'news');
define('FORUM_TABLE_NAME', 'forum');
define('COURSE_TABLE_NAME', 'course');
define('COURSE_CATEGORIES_TABLE_NAME', 'course_categories');
define('REPOSITORY_MODULES', serialize(array('resource', 'url', 'folder')));
define('CREATED_COURSES', 'created');
define('USED_COURSES', 'used');
define('NOTUSED_COURSES', 'notused');