有人试过将 TinyButStrong 与 CakePHP 一起使用吗?
我对 TinyButStrong 一无所知,但似乎是从模板生成 Word 文档的好方法。但我不确定如何将其与 CakePHP 应用程序集成。
感谢您的任何想法/建议。
此致,
托尼。
最佳答案
我想你的意思是 TinyButStrong 带有 OpenTBS 插件,它可以使用模板合并 DOCX(以及其他 Ms Office 和 OpenOffice 文档)。
这是一种在 CakePHP Controller 中添加导出操作的方法,该操作旨在生成要下载的 Docx。
以下代码适用于 CakePHP 1.3 版,未在 2.0 版中测试。
脚步 :
1) 在 vendor 目录下的子目录下添加 TBS 和 OpenTBS 类:
供应商/tbs/tbs_class.php
供应商/tbs/tbs_plugin_opentbs.php
2) 创建一个 CakePHP 助手,将简化 TBS + OpenTBS 的准备工作:
应用程序/ View /helpers/tbs.php
<?php
class TbsHelper extends AppHelper {
function getOpenTbs() {
App::import('Vendor', 'tbs/tbs_class');
App::import('Vendor', 'tbs/tbs_plugin_opentbs');
$tbs = new clsTinyButStrong; // new instance of TBS
$tbs->Plugin(TBS_INSTALL, OPENTBS_PLUGIN); // load OpenTBS plugin
return $tbs;
}
}
3)现在在应该生成Docx的 Controller 中添加一个新的“导出”操作:
应用程序/ Controller /example_controller.php
<?php
class ExamplesController extends AppController {
var $name = 'Examples';
function export() {
// Stop Cake from displaying action's execution time, this can corrupt the exported file
// Re-ativate in order to see bugs
Configure::write('debug',0);
// Make the Tbs helper available in the view
$this->helpers[] = 'Tbs';
// Set available data in the view
$this->set('records', $this->Example->find('all'));
}
}
4)最后就是创建相应的 View 。不要忘记将您的 DOCX 模板与 View 放在同一文件夹中。
app/views/examples/export.ctp (下)
app/views/examples/export_template1.docx (与 Ms Office 一起构建)
<?php
ob_end_clean(); // Just in case, to be sure
// Get a new instance of TBS with the OpenTBS plug-in
$otbs = $tbs->getOpenTbs();
// Load the DOCX template which is supposed to be placed in the same folder
$otbs->LoadTemplate(dirname(__FILE__).'/export_template1.docx');
// Merge data in the template
$otbs->MergeBlock('r', $records);
// End the merge and export
$file_name = 'export.docx';
$otbs->Show(OPENTBS_DOWNLOAD, $file_name);
exit; // Just in case, to be sure
TinyButStrong 提供了合并 PHP 全局变量的功能,但建议不要在 CakePHP 中使用此类功能。相反,您应该将 MergeBlock() 和 MergeField() 与 Controller 为 View 设置的数据一起使用。
如果您遇到错误,请不要忘记禁用该行
Configure::write('debug', 0);
这将显示 CakePHP 错误。否则 CakePHP 将隐藏所有错误,包括 PHP 错误。
不要忘记 OpenTBS 也有 Debug模式。如果需要,请参阅 manual。
你也可以把它变成一个库(在你的应用程序的任何地方使用)。
关于php - CakePHP + TinyButStrong,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8547192/