Removed the AttributeWikiText which was strictly equivalent to AttributeText

SVN:trunk[1151]
This commit is contained in:
Romain Quetiez
2011-03-29 14:13:16 +00:00
parent 7ae02a7c5b
commit 30a1528a28
7 changed files with 10 additions and 43 deletions

View File

@@ -1517,24 +1517,6 @@ class AttributeTemplateHTML extends AttributeText
}
/**
* Specialization of a text: wiki formatting
*
* @package iTopORM
*/
class AttributeWikiText extends AttributeText
{
public function GetAsHTML($value, $oHostObject = null)
{
// [SELECT xxxx.... [label]] => hyperlink to a result list
// {SELECT xxxx.... [label]} => result list displayed inline
// [myclass/nnn [label]] => hyperlink to an object
// {myclass/nnn/attcode} => attribute displayed inline
// etc.
return parent::GetAsHTML($value);
}
}
/**
* Map a enum column to an attribute
*