| Current File : /home/jvzmxxx/wiki1/vendor/data-values/validators/Validators.php |
<?php
/**
* Entry point of the DataValues Validators library.
*
* @since 0.1
* @codeCoverageIgnore
*
* @licence GNU GPL v2+
* @author Jeroen De Dauw < jeroendedauw@gmail.com >
*/
if ( defined( 'DATAVALUES_VALIDATORS_VERSION' ) ) {
// Do not initialize more than once.
return 1;
}
define( 'DATAVALUES_VALIDATORS_VERSION', '0.1.2' );
if ( defined( 'MEDIAWIKI' ) ) {
$GLOBALS['wgExtensionCredits']['datavalues'][] = array(
'path' => __DIR__,
'name' => 'DataValues Validators',
'version' => DATAVALUES_VALIDATORS_VERSION,
'author' => array(
'[https://www.mediawiki.org/wiki/User:Jeroen_De_Dauw Jeroen De Dauw]',
'The Wikidata team',
),
'url' => 'https://github.com/DataValues/Validators',
'description' => 'Contains common ValueValidator implementations',
'license-name' => 'GPL-2.0+'
);
}