moduleName; $translatedSingularModuleLabel = getTranslatedString($singularModuleNameKey, $this->moduleName); if($translatedSingularModuleLabel == $singularModuleNameKey) { $translatedSingularModuleLabel = getTranslatedString($this->moduleName, $this->moduleName); } return sprintf("%s: %s", $translatedSingularModuleLabel, $this->focusColumnValue('quote_no')); } function getWatermarkContent() { return $this->focusColumnValue('quotestatus'); } function buildHeaderModelColumnRight() { $issueDateLabel = getTranslatedString('Issued Date', $this->moduleName); $validDateLabel = getTranslatedString('Valid Date', $this->moduleName); $billingAddressLabel = getTranslatedString('Billing Address', $this->moduleName); $shippingAddressLabel = getTranslatedString('Shipping Address', $this->moduleName); $modelColumn2 = array( 'dates' => array( $issueDateLabel => $this->formatDate(date("Y-m-d")), $validDateLabel => $this->formatDate($this->focusColumnValue('validtill')), ), $billingAddressLabel => $this->buildHeaderBillingAddress(), $shippingAddressLabel => $this->buildHeaderShippingAddress() ); return $modelColumn2; } } ?>