Home
last modified time | relevance | path

Searched refs:iMaxWidthPx (Results 1 – 2 of 2) sorted by relevance

/dports/www/itop/web/core/
H A Dpdfbulkexport.class.inc.php222 $iMaxWidthPx = min($iDefaultMaxWidthPx, $oAttDef->Get('display_max_width'));
225 $fScale = min($iMaxWidthPx / $iWidth, $iMaxHeightPx / $iHeight);
H A Dattributedef.class.inc.php7340 $iMaxWidthPx = $this->Get('display_max_width').'px';
7345 $sRet = $this->GetHtmlForImageUrl($sDefaultImageUrl, $iMaxWidthPx, $iMaxHeightPx);
7351 $sRet = $this->GetHtmlForImageUrl($sCustomImageUrl, $iMaxWidthPx, $iMaxHeightPx);
7357 …return '<div class="'.$sCssClasses.'" style="width: '.$iMaxWidthPx.'; height: '.$iMaxHeightPx.';">…
7360 private function GetHtmlForImageUrl($sUrl, $iMaxWidthPx, $iMaxHeightPx) { argument
7361 …return '<img src="'.$sUrl.'" style="max-width: '.$iMaxWidthPx.'; max-height: '.$iMaxHeightPx.'">';