本文整理汇总了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);
}
}