PHP code example of holabs / printer

1. Go to this page and download the library: Download holabs/printer library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

holabs / printer example snippets




namespace App\Presenters;

use Holabs\Printer;

class PrinterPresenter extends Presenter {

	/** @var string @persistent */
	public $id = NULL;

	/** @var Printer @inject */
	public $printer;

	/**
	 * @param int[]|array $eid Entity ids
	 */
	public function actionPrint(array $eid = []){
		$job = $this->printer->createJob($this->id, ... $eid);

		// Send to output from printer
		$this->printer->printJob($job);
		
		// Or using presenter method - Job implement IResponse
		$this->sendResponse($job);
	}

}