mirror of
https://github.com/retailcrm/NameCaseLib.git
synced 2025-02-06 09:09:23 +03:00
40 lines
609 B
PHP
40 lines
609 B
PHP
<?php
|
|
/**
|
|
* Description of NCL
|
|
*
|
|
* @author seagull
|
|
*/
|
|
class NCL
|
|
{
|
|
/**
|
|
* @static integer
|
|
*/
|
|
static $MAN = 1;
|
|
|
|
/**
|
|
* @static integer
|
|
*/
|
|
static $WOMAN = 2;
|
|
|
|
/**
|
|
* @static integer
|
|
* Падежи
|
|
*/
|
|
static $IMENITLN = 0;
|
|
static $RODITLN = 1;
|
|
static $DATELN = 2;
|
|
static $VINITELN = 3;
|
|
static $TVORITELN = 4;
|
|
static $PREDLOGN = 5;
|
|
static $UaNazyvnyi = 0;
|
|
static $UaRodovyi = 1;
|
|
static $UaDavalnyi = 2;
|
|
static $UaZnahidnyi = 3;
|
|
static $UaOrudnyi = 4;
|
|
static $UaMiszevyi = 5;
|
|
static $UaKlychnyi = 6;
|
|
|
|
}
|
|
|
|
?>
|