Home
last modified time | relevance | path

Searched refs:sStateValue (Results 1 – 3 of 3) sorted by relevance

/dports/www/itop/web/application/
H A Ddisplayblock.class.inc.php841 foreach($aStates as $sStateValue)
843 …$aStateLabels[$sStateValue] = htmlentities($oAttDef->GetValueLabel($sStateValue), ENT_QUOTES, 'UTF…
845 $aCounts[$sStateValue] = (array_key_exists($sStateValue, $aCountsQueryResults))
846 ? $aCountsQueryResults[$sStateValue]
849 if ($aCounts[$sStateValue] == 0)
851 $aCounts[$sStateValue] = '-';
856 $oSingleGroupByValueFilter->AddCondition($sStateAttrCode, $sStateValue, '=');
864 $aCounts[$sStateValue] = "<a href=\"$sHyperlink\">{$aCounts[$sStateValue]}</a>";
/dports/www/itop/web/core/
H A Dmetamodel.class.php2420 * @param string $sStateValue
2426 public static function GetStateLabel($sClass, $sStateValue) argument
2430 return $oAttDef->GetValueLabel($sStateValue);
2435 * @param string $sStateValue
2441 public static function GetStateDescription($sClass, $sStateValue) argument
2445 return $oAttDef->GetValueDescription($sStateValue);
4714 foreach($aStates as $sStateValue)
4716 if (!in_array($sStateValue, $aAllowedValues))
4718 …lass][] = "Attribute '".$sStateAttCode."' (object state) has a state ($sStateValue) which is not a…
H A Ddbobject.class.php1145 $sStateValue = $this->Get($sStateAttCode);
1146 return MetaModel::GetStateLabel(get_class($this), $sStateValue);
1159 $sStateValue = $this->Get($sStateAttCode);
1160 return MetaModel::GetStateDescription(get_class($this), $sStateValue);