當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Report::_output方法代碼示例

本文整理匯總了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);
     }
 }
開發者ID:alachaum,項目名稱:timetrex,代碼行數:8,代碼來源:T4SummaryReport.class.php

示例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);
     }
 }
開發者ID:alachaum,項目名稱:timetrex,代碼行數:11,代碼來源:ScheduleSummaryReport.class.php

示例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);
     }
 }
開發者ID:alachaum,項目名稱:timetrex,代碼行數:11,代碼來源:GeneralLedgerSummaryReport.class.php

示例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);
     }
 }
開發者ID:alachaum,項目名稱:timetrex,代碼行數:13,代碼來源:PayStubSummaryReport.class.php

示例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);
     }
 }
開發者ID:alachaum,項目名稱:timetrex,代碼行數:8,代碼來源:TimesheetDetailReport.class.php


注:本文中的Report::_output方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。