mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-09 02:54:26 +00:00
45 lines
1.4 KiB
PHP
45 lines
1.4 KiB
PHP
<?php
|
|
/*
|
|
* This file is part of Phraseanet
|
|
*
|
|
* (c) 2005-2015 Alchemy
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
namespace Alchemy\Phrasea\Controller\Prod;
|
|
|
|
use Alchemy\Phrasea\Application;
|
|
use Alchemy\Phrasea\Controller\Controller;
|
|
use Alchemy\Phrasea\Helper\Record as RecordHelper;
|
|
use Alchemy\Phrasea\Out\Module\PDF as PDFExport;
|
|
use Symfony\Component\HttpFoundation\Response;
|
|
|
|
class PrinterController extends Controller
|
|
{
|
|
public function postPrinterAction(Application $app)
|
|
{
|
|
$printer = new RecordHelper\Printer($app, $app['request']);
|
|
|
|
return $app['twig']->render('prod/actions/printer_default.html.twig', ['printer' => $printer, 'message' => '']);
|
|
}
|
|
|
|
public function printAction(Application $app)
|
|
{
|
|
$printer = new RecordHelper\Printer($app, $app['request']);
|
|
|
|
$layout = $app['request']->request->get('lay');
|
|
|
|
foreach ($printer->get_elements() as $record) {
|
|
$app['phraseanet.logger']($record->get_databox())->log($record, \Session_Logger::EVENT_PRINT, $layout, '');
|
|
}
|
|
$PDF = new PDFExport($app, $printer->get_elements(), $layout);
|
|
|
|
$response = new Response($PDF->render(), 200, array('Content-Type' => 'application/pdf'));
|
|
$response->headers->set('Pragma', 'public', true);
|
|
$response->setMaxAge(0);
|
|
|
|
return $response;
|
|
}
|
|
}
|