/** * Get the width of text * * Breaks up a text into lines if needed * * @param WT_Report_HTML $html * * @return array */ function getWidth($html) { // Setup the style name $html->setCurrentStyle("footnotenum"); // Check for the largest font size in the box $fsize = $html->getCurrentStyleHeight(); if ($fsize > $html->largestFontHeight) { $html->largestFontHeight = $fsize; } // Returns the Object if already numbered else false if (empty($this->num)) { $html->checkFootnote($this); } // Get the line width for the text in points + a little margin $lw = $html->GetStringWidth($this->numText); // Line Feed counter - Number of lines in the text $lfct = $html->countLines($this->numText); // If there is still remaining wrap width... if ($this->wrapWidthRemaining > 0) { // Check with line counter too! if ($lw >= $this->wrapWidthRemaining or $lfct > 1) { $newtext = ""; $wrapWidthRemaining = $this->wrapWidthRemaining; $lines = explode("\n", $this->numText); // Go throught the text line by line foreach ($lines as $line) { // Line width in points + a little margin $lw = $html->GetStringWidth($line); // If the line has to be wraped if ($lw > $wrapWidthRemaining) { $words = explode(" ", $line); $addspace = count($words); $lw = 0; foreach ($words as $word) { $addspace--; $lw += $html->GetStringWidth($word . " "); if ($lw <= $wrapWidthRemaining) { $newtext .= $word; if ($addspace != 0) { $newtext .= " "; } } else { $lw = $html->GetStringWidth($word . " "); $newtext .= "\n{$word}"; if ($addspace != 0) { $newtext .= " "; } // Reset the wrap width to the cell width $wrapWidthRemaining = $this->wrapWidthCell; } } } else { $newtext .= $line; } // Check the Line Feed counter if ($lfct > 1) { // Add a new line feed as long as it’s not the last line $newtext .= "\n"; // Reset the line width $lw = 0; // Reset the wrap width to the cell width $wrapWidthRemaining = $this->wrapWidthCell; } $lfct--; } $this->numText = $newtext; $lfct = substr_count($this->numText, "\n"); return array($lw, 1, $lfct); } } $l = 0; $lfct = substr_count($this->numText, "\n"); if ($lfct > 0) { $l = 2; } return array($lw, $l, $lfct); }