Archived
1
0
Fork 0
This repository has been archived on 2023-09-27. You can view files and clone it, but cannot push or open issues or pull requests.
ts3web/config/Constants.php

46 lines
No EOL
804 B
PHP

<?php
/**
* Class Constants
*/
class Constants
{
/**
* Years tag
*/
const YEARS = '2019';
/**
* Version tag
*/
const VERSION = '2.2.2-SNAPSHOT';
/**
* Return constant by it's class name
*
* @param $value
* @return string|null
* @throws ReflectionException
*/
public static function get($value)
{
$constants = self::getConstants();
if (!array_key_exists($value, $constants)) {
return null;
}
return $constants[$value];
}
/**
* Gets all constants
*
* @return array
* @throws ReflectionException
*/
private static function getConstants()
{
$oClass = new ReflectionClass(__CLASS__);
return $oClass->getConstants();
}
}