mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-12 20:43:25 +00:00
62 lines
1.8 KiB
PHP
62 lines
1.8 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Phraseanet
|
|
*
|
|
* (c) 2005-2012 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 Silex\Application,
|
|
Silex\ControllerProviderInterface,
|
|
Silex\ControllerCollection;
|
|
use Alchemy\Phrasea\Helper\Record as RecordHelper,
|
|
Alchemy\Phrasea\Out\Module\PDF as PDFExport;
|
|
use Symfony\Component\HttpFoundation\Response;
|
|
|
|
/**
|
|
*
|
|
* @license http://opensource.org/licenses/gpl-3.0 GPLv3
|
|
* @link www.phraseanet.com
|
|
*/
|
|
class Printer implements ControllerProviderInterface
|
|
{
|
|
|
|
public function connect(Application $app)
|
|
{
|
|
$controllers = $app['controllers_factory'];
|
|
|
|
$controllers->post('/', function(Application $app) {
|
|
$printer = new RecordHelper\Printer($app['phraseanet.core'], $app['request']);
|
|
|
|
return $app['twig']->render('prod/actions/printer_default.html.twig', array('printer' => $printer, 'message' => ''));
|
|
}
|
|
);
|
|
|
|
$controllers->post('/print.pdf', function(Application $app) {
|
|
$printer = new RecordHelper\Printer($app['phraseanet.core'], $app['request']);
|
|
|
|
$request = $app['request'];
|
|
|
|
$session = \Session_Handler::getInstance($app['phraseanet.appbox']);
|
|
|
|
$layout = $request->get('lay');
|
|
|
|
foreach ($printer->get_elements() as $record) {
|
|
$session->get_logger($record->get_databox())
|
|
->log($record, \Session_Logger::EVENT_PRINT, $layout, '');
|
|
}
|
|
$PDF = new PDFExport($printer->get_elements(), $layout);
|
|
|
|
return new Response($PDF->render(), 200, array('Content-Type' => 'application/pdf'));
|
|
}
|
|
);
|
|
|
|
return $controllers;
|
|
}
|
|
}
|