ご注意ください:
- これは、Magento コア ファイルをオーバーライドするため、良い方法ではありません。モデル内でこれらのファイルをオーバーライドする必要があります。
- これは完全な解決策ではありませんが、理解を深めてさらに先へ進むためのヒントです。(これはヘッダーのみを出力し、データは出力しません)
お客様に PDF エクスポート機能を追加するように案内します (デフォルトでは CSV と Excel があります)。
app/code/core/Mage/Adminhtml/Block/Widget/Grid.phpを編集し、次の関数を追加します
public function getPdfFile(){
$this->_isExport = true;
$this->_prepareGrid();
$this->getCollection()->getSelect()->limit();
$this->getCollection()->setPageSize(0);
$this->getCollection()->load();
$this->_afterLoadCollection();
$pdf = new Zend_Pdf();
$page = new Zend_Pdf_Page(Zend_Pdf_Page::SIZE_A4);
$font = Zend_Pdf_Font::fontWithName(Zend_Pdf_Font::FONT_TIMES);
$page->setFont($font, 12);
$width = $page->getWidth();
$i=0;
foreach ($this->_columns as $column) {
if (!$column->getIsSystem()) {
$i+=10;
$header = $column->getExportHeader();
$page->drawText($header, $i, $page->getHeight()-20);
$width = $font->widthForGlyph($font->glyphNumberForCharacter($header));
$i+=($width/$font->getUnitsPerEm()*12)*strlen($header)+10;
}
}
$pdf->pages[] = $page;
return $pdf->render();
}
app/code/core/Mage/Adminhtml/controllers/CustomerController.phpを編集し、次の関数を追加します
public function exportPdfAction(){
$fileName = 'customers.pdf';
$content = $this->getLayout()->createBlock('adminhtml/customer_grid')->getPdfFile();
$this->_prepareDownloadResponse($fileName, $content);
}
app/code/core/Mage/Adminhtml/Block/Customer/Grid.phpを編集し、見つけます
$this->addExportType('*/*/exportCsv', Mage::helper('customer')->__('CSV'));
$this->addExportType('*/*/exportXml', Mage::helper('customer')->__('Excel XML'));
PDFエクスポートを追加
$this->addExportType('*/*/exportCsv', Mage::helper('customer')->__('CSV'));
$this->addExportType('*/*/exportXml', Mage::helper('customer')->__('Excel XML'));
$this->addExportType('*/*/exportPdf', Mage::helper('customer')->__('PDF'));
管理画面を更新すると、顧客を PDF としてエクスポートできます。