本文整理匯總了PHP中Report::_output方法的典型用法代碼示例。如果您正苦於以下問題:PHP Report::_output方法的具體用法?PHP Report::_output怎麽用?PHP Report::_output使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Report
的用法示例。
在下文中一共展示了Report::_output方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1:
function _output($format = NULL)
{
if ($format == 'pdf_form' or $format == 'pdf_form_government' or ($format == 'pdf_form_print' or $format == 'pdf_form_print_government') or $format == 'efile_xml') {
return $this->_outputPDFForm($format);
} else {
return parent::_output($format);
}
}
示例2:
function _output($format = NULL)
{
//Individual Schedules
//Group - Combined (all branch/department combined together)
//Group - Separated (branch/department all separated.)
if (in_array($format, $this->special_output_format)) {
return $this->_outputPDFSchedule($format);
} else {
return parent::_output($format);
}
}
示例3: TTnew
function _output($format = NULL)
{
$psf = TTnew('PayStubFactory');
$export_type_options = Misc::trimSortPrefix($psf->getOptions('export_general_ledger'));
Debug::Arr($export_type_options, 'Format: ' . $format, __FILE__, __LINE__, __METHOD__, 10);
if (isset($export_type_options[$format])) {
return $this->_outputExportGeneralLedger($format);
} else {
return parent::_output($format);
}
}
示例4: TTnew
function _output($format = NULL)
{
$psf = TTnew('PayStubFactory');
$export_type_options = Misc::trimSortPrefix($psf->getOptions('export_type'));
//Debug::Arr($export_type_options, 'Format: '. $format, __FILE__, __LINE__, __METHOD__,10);
if ($format == 'pdf_employee_pay_stub' or $format == 'pdf_employee_pay_stub_print' or $format == 'pdf_employer_pay_stub' or $format == 'pdf_employer_pay_stub_print') {
return $this->_outputPDFPayStub($format);
} elseif (strlen($format) >= 4 and isset($export_type_options[$format])) {
return $this->_outputExportPayStub($format);
} else {
return parent::_output($format);
}
}
示例5:
function _output($format = NULL)
{
if ($format == 'pdf_timesheet' or $format == 'pdf_timesheet_print' or $format == 'pdf_timesheet_detail' or $format == 'pdf_timesheet_detail_print') {
return $this->_outputPDFTimesheet($format);
} else {
return parent::_output($format);
}
}