SetFont('','',10); // SalesPlatform.ru begin //$this->setFontFamily('times'); $this->setFontFamily('helvetica'); // SalesPlatform.ru end } function getFontSize() { return $this->FontSizePt; } function setFontFamily($family) { $this->FontFamily = $family; } function GetStringHeight($sa,$w) { if(empty($sa)) return 0; $sa = str_replace("\r","",$sa); // remove the last newline if (substr($sa,-1) == "\n") $sa = substr($sa,0,-1); $blocks = explode("\n",$sa); $wmax = $w - (2 * $this->cMargin); $lines = 0; $spacesize = $this->GetCharWidth(32); foreach ($blocks as $block) { if (!empty($block)) { $words = explode(" ",$block); $cw = 0; for ($i = 0;$i < count($words);$i++) { if ($i != 0) $cw += $spacesize; $wordwidth = $this->GetStringWidth($words[$i]); $cw += $wordwidth; if ($cw > $wmax) { // linebreak $cw = $wordwidth; $lines++; } } } $lines++; } return ($lines * ($this->FontSize * $this->cell_height_ratio)) + 2; } function SetFont($family, $style='', $size='') { if($family == '') { $family = $this->FontFamily; } //Select a font; size given in points if ($size == 0) { $size = $this->FontSizePt; } // try to add font (if not already added) $fontdata = $this->AddFont($family, $style); $this->FontFamily = $fontdata['family']; $this->FontStyle = $fontdata['style']; $this->CurrentFont = &$this->fonts[$fontdata['fontkey']]; $this->SetFontSize($size); } //SalesPlatform.ru begin public function setFooterModel($footerModel, $footerFrame) { $this->footerModel = $footerModel; $this->footerFrame = $footerFrame; } public function Footer() { $this->SetFont('','', 8); if ($this->footerFrame->h > 0) { $this->writeHTMLCell($this->footerFrame->w,$this->footerFrame->h, $this->footerFrame->x, $this->footerFrame->y+20, $this->footerModel->getContent()); } } //SalesPlatform.ru end } ?>