Taxons: Rework of CSS & markup in the console (portal still to come).

This commit is contained in:
Molkobain
2018-09-27 16:45:04 +02:00
parent 58525f247e
commit 5fa4b4cb88
10 changed files with 87 additions and 52 deletions

View File

@@ -6786,7 +6786,7 @@ class AttributeTagSet extends AttributeSet
* @throws \CoreException
* @throws \OQLException
*/
public function GetJsonForWidget($oValue, $aArgs)
public function GetJsonForWidget($oValue, $aArgs = array())
{
$aJson = array();
@@ -9415,7 +9415,7 @@ abstract class AttributeSet extends AttributeDBFieldVoid
* @throws \CoreException
* @throws \OQLException
*/
public function GetJsonForWidget($oValue, $aArgs)
public function GetJsonForWidget($oValue, $aArgs = array())
{
$aJson = array();
@@ -9871,7 +9871,7 @@ class AttributeClassAttCodeSet extends AttributeSet
}
$value = $aLocalizedValues;
}
return implode(' ', $value);
$value = implode('', $value);
}
return '<span class="'.implode(' ', $this->aCSSClasses).'">'.$value.'</span>';
}
@@ -10059,7 +10059,7 @@ class AttributeQueryAttCodeSet extends AttributeSet
}
$value = $aLocalizedValues;
}
$value = implode(' ', $value);
$value = implode('', $value);
}
return '<span class="'.implode(' ', $this->aCSSClasses).'">'.$value.'</span>';