定制 guidofaecke/dompdf-module 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

guidofaecke/dompdf-module

最新稳定版本:0.8.0

Composer 安装命令:

composer require guidofaecke/dompdf-module

包简介

A Laminas module for incorporating DOMPDF support - Originally by Raymond Kolbe

README 文档

README

The DOMPDF module integrates the DOMPDF library with Laminas with minimal effort on the consumer's end.

Requirements

Installation

Installation of DOMPDFModule uses PHP Composer. For more information about PHP Composer, please visit the official PHP Composer site.

Installation steps

  1. cd my/project/directory

  2. Add the module to the project by:

    composer require guidofaecke/dompdf-module

  3. open my/project/directory/config/application.config.php and add the following key to your modules:

    'DOMPDFModule',

Configuration options

You can override options via the dompdf_module key in your local or global config files. See DOMPDFModule/config/module.config.php for config options.

Usage

<?php

namespace Application\Controller;

use Laminas\Mvc\Controller\AbstractActionController;
use DOMPDFModule\View\Model\PdfModel;

class ReportController extends AbstractActionController
{
    public function monthlyReportPdfAction()
    {
        $pdf = new PdfModel();
        $pdf->setOption('fileName', 'monthly-report');            // "pdf" extension is automatically appended
        $pdf->setOption('display', PdfModel::DISPLAY_ATTACHMENT); // Triggers browser to prompt "save as" dialog
        $pdf->setOption('paperSize', 'a4');                       // Defaults to "8x11"
        $pdf->setOption('paperOrientation', 'landscape');         // Defaults to "portrait"
        
        // To set view variables
        $pdf->setVariables(array(
          'message' => 'Hello'
        ));
        
        return $pdf;
    }
}

Development

So you want to contribute? Fantastic! Don't worry, it's easy. Local builds, tests, and code quality checks can be executed using Docker.

Quick Start

  1. Install Docker CE.
  2. Run the following from your terminal:
docker build -t guidofaecke/dompdf-module .
docker run -v composer-cache:/var/lib/composer -v ${PWD}:/opt/app guidofaecke/dompdf-module

Super easy, right? Here's a quick walk through as to what's going on.

  • docker build -t guidofaecke/dompdf-module . builds a docker image that will be used for each run (i.e. each time docker run is executed) and tags it with the name guidofaecke/dompdf-module.
  • docker run -v composer-cache:/var/lib/composer -v ${PWD}:/opt/app guidofaecke/dompdf-module runs the default build in a new Docker container derived from the image tagged guidofaecke/dompdf-module. The root of the project and PHP Composer cache volume are mounted so that artifacts generated during the build process are available to you on your local machine.

Note: You only need to run the first command once in order to build the image. The second command is what executes the build (build, tests, code quality checks, etc.).

统计信息

  • 总下载量: 17
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 62
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2023-05-16