N°580 - Jean Dupont - Jean Dupont, auto-complete avec homonyme

This commit is contained in:
acognet
2021-08-18 10:41:38 +02:00
parent abe103eade
commit bf2d98a1bf

View File

@@ -0,0 +1,26 @@
<?php
/*
* @copyright Copyright (C) 2010-2021 Combodo SARL
* @license http://opensource.org/licenses/AGPL-3.0
*/
namespace Combodo\iTop\Core\MetaModel;
/**
* Class FriendlyNameType
*
* The various type of FriendlyNameType
*
* @package Combodo\iTop\Core\MetaModel
* @since 3.0.0
*/
class FriendlyNameType
{
/** @var string usual friendly name */
public const SHORT = 'short';
/** @var string complement of friendly name used in select box in order to help to choose the good element*/
public const COMPLEMENTARY = 'compl';
/** @var string long friendly name made whith short + complementary data*/
public const LONG = 'long';
}