tags. * This allows _b() to print any "block" of text that will have linebreaks in standard HTML. * * @param string $strString * @param boolean $blnHtmlEntities */ function _b($strString, $blnHtmlEntities = true) { // Text Block Print if ($blnHtmlEntities && (gettype($strString) != 'object')) print(nl2br(QApplication::HtmlEntities($strString))); else print(nl2br($strString)); } /** * Standard Print-Translated function. Note: Because translation typically * occurs on coded text strings, NO HTML ESCAPING will be performed on the string. * * Uses QApplication::Translate() to perform the translation (if applicable) * * @param string $strString string value to print via translation */ function _t($strString) { // Print, via Translation (if applicable) print(QApplication::Translate($strString)); } function _i($intNumber) { // Not Yet Implemented // Print Integer with Localized Formatting } function _f($intNumber) { // Not Yet Implemented // Print Float with Localized Formatting } function _c($strString) { // Not Yet Implemented // Print Currency with Localized Formatting } ////////////////////////////////////// ?>