mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-12 23:14:18 +01:00
N°580 - Jean Dupont - Jean Dupont, auto-complete avec homonyme
This commit is contained in:
26
sources/Core/MetaModel/FriendlyNameType.php
Normal file
26
sources/Core/MetaModel/FriendlyNameType.php
Normal 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';
|
||||
}
|
||||
Reference in New Issue
Block a user