PHP Classes

File: htdocs/language/english/logger.php

Recommend this page to a friend!
  Packages of Michael Beck   Xoops 2.5   htdocs/language/english/logger.php   Download  
File: htdocs/language/english/logger.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Xoops 2.5
Modular content management publication system
Author: By
Last change: Merge pull request #1586 from mambax7/feature/Cannot_use_bool_as_array

fix for Cannot use bool as array
copyright update
Merge branch 'feature/php8_templates' of https://github.com/mambax7/XoopsCore25 into feature/php8_templates

# Conflicts:
# htdocs/themes/xswatch4/modules/publisher/publisher_item.tpl
Merge xswatch4
Date: 2 months ago
Size: 1,987 bytes
 

Contents

Class file image Download
<?php
/*
 You may not change or alter any portion of this comment or credits
 of supporting developers from this source code or any supporting source code
 which is considered copyrighted (c) material of the original comment or credit authors.

 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.
*/

/**
 * Xoops Language
 *
 * @copyright (c) 2000-2025 XOOPS Project (https://xoops.org)
 * @license GNU GPL 2 (https://www.gnu.org/licenses/gpl-2.0.html)
 * @package kernel
 * @subpackage Xoops Logger Language
 * @since 2.4.0
 * @author trabis <lusopoemas@gmail.com>
 */
if (!defined('XOOPS_ROOT_PATH')) {
    throw new \
RuntimeException('Restricted access');
}

// _LANGCODE: en
// _CHARSET : UTF-8
// Translator: XOOPS Translation Team
define('_LOGGER_DEBUG', 'Debug');
define('_LOGGER_INCLUDED_FILES', 'Included files');
define('_LOGGER_FILES', '%s files');
define('_LOGGER_MEM_USAGE', 'Memory usage');
define('_LOGGER_MEM_ESTIMATED', '%s [Estimated]');
define('_LOGGER_NONE', 'None');
define('_LOGGER_ALL', 'All');
define('_LOGGER_ERRORS', 'Errors');
define('_LOGGER_DEPRECATED', 'Deprecated');
define('_LOGGER_QUERIES', 'Queries');
define('_LOGGER_BLOCKS', 'Blocks');
define('_LOGGER_EXTRA', 'Extra');
define('_LOGGER_TIMERS', 'Timers');

define('_LOGGER_TIMETOLOAD', '%s took %s seconds to load.');

define('_LOGGER_TOTAL', 'Total');

define('_LOGGER_NOT_CACHED', 'Not cached');
define('_LOGGER_CACHED', 'Cached (regenerates every %s seconds)');

define('_LOGGER_UNKNOWN', 'Unknown');
define('_LOGGER_E_USER_NOTICE', 'Notice');
define('_LOGGER_E_USER_WARNING', 'Warning');
define('_LOGGER_E_USER_ERROR', 'Error');
define('_LOGGER_E_NOTICE', 'Notice');
define('_LOGGER_E_WARNING', 'Warning');
define('_LOGGER_E_STRICT', 'Strict');
define('_LOGGER_FILELINE', '%s in file %s line %s');