whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
quickbooks
/
v3-php-sdk
/
src
/
Utility
/
Upload File:
files >> //home/kckglobal/www/portal/vendor/quickbooks/v3-php-sdk/src/Utility/ClassNamingUtil.php
<?php namespace QuickBooksOnline\API\Utility; /** * When parsing an JSON, converting the corresponding plural names to singular. */ class ClassNamingUtil { public static $uncountable = array( 'money', 'information', 'equipment' ); public static $irregular = array( 'move' => 'moves', 'foot' => 'feet', 'goose' => 'geese', 'sex' => 'sexes', 'child' => 'children', 'man' => 'men', 'person' => 'people', 'valve' => 'valves' ); public static $singular = array( '/(quiz)zes$/i' => "$1", '/(matr)ices$/i' => "$1ix", '/(vert|ind)ices$/i' => "$1ex", '/^(ox)en$/i' => "$1", '/(alias)es$/i' => "$1", '/(octop|vir)i$/i' => "$1us", '/(cris|ax|test)es$/i' => "$1is", '/(shoe)s$/i' => "$1", '/(o)es$/i' => "$1", '/(bus)es$/i' => "$1", '/([m|l])ice$/i' => "$1ouse", '/(x|ch|ss|sh)es$/i' => "$1", '/(m)ovies$/i' => "$1ovie", '/(s)eries$/i' => "$1eries", '/([^aeiouy]|qu)ies$/i' => "$1y", '/([lr])ves$/i' => "$1f", '/(tive)s$/i' => "$1", '/(hive)s$/i' => "$1", '/(li|wi|kni)ves$/i' => "$1fe", '/(shea|loa|lea|thie)ves$/i'=> "$1f", '/(^analy)ses$/i' => "$1sis", '/((a)naly|(b)a|(d)iagno|(p)arenthe|(p)rogno|(s)ynop|(t)he)ses$/i' => "$1$2sis", '/([ti])a$/i' => "$1um", '/(n)ews$/i' => "$1ews", '/(h|bl)ouses$/i' => "$1ouse", '/(corpse)s$/i' => "$1", '/(us)es$/i' => "$1", '/s$/i' => "" ); /** * If the given class Name is in plural format, converting it to singular. Otherwise, stay unchanged. * * @param $string * The String to be convert * @return $singularClassName * The singular format of class name. Unchanged if the name is Singular already */ public static function singularize($string) { // save some time in the case that singular and plural are the same if (in_array(strtolower($string), self::$uncountable)) { return $string; } // check for irregular plural forms foreach (self::$irregular as $result => $pattern) { $pattern = '/' . $pattern . '$/i'; if (preg_match($pattern, $string)) { return preg_replace($pattern, $result, $string); } } // check for matches using regular expressions foreach (self::$singular as $pattern => $result) { if (preg_match($pattern, $string)) { return preg_replace($pattern, $result, $string); } } return $string; } }
Copyright ©2021 || Defacer Indonesia