13 lines
206 B
PHP
13 lines
206 B
PHP
|
<?php
|
||
|
|
||
|
App::uses('AppController', 'Controller');
|
||
|
|
||
|
class PdfController extends AppController {
|
||
|
|
||
|
public function applicationGetPdf(){
|
||
|
$this->layout = 'pdf';
|
||
|
$this->render('/Pdf/opening');
|
||
|
}
|
||
|
}
|
||
|
?>
|