|
Server IP : 127.0.0.1 / Your IP : 127.0.0.1 Web Server : Apache/2.4.10 (Win32) OpenSSL/1.0.1i PHP/5.6.3 System : Windows NT WIN-R7LTCC7BPLI 6.3 build 9200 (Windows Server 2012 R2 Datacenter Edition) i586 User : GerbangSIPAD ( 0) PHP Version : 5.6.3 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF Directory (0777) : C:/xampp5/htdocs/bhumie/protected/extensions/yii-pdf/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
Yii-PDF Change Log
==================
### Version 0.4.0 (2013-08-21)
* Added composer support
### Version 0.3.2 (2013-04-05)
* func_get_args() is using through a variable now (for PHP < 5.3.0)
### Version 0.3 (2012-07-07)
* Fixed default constructor params [thanks to zitter]
### Version 0.2a (2012-02-05)
* Fixed method name (mpdf) for some case-sensitive *nix OS filesystems (it may cause for some errors) [thanks to Hylke]
### Version 0.2 (2012-01-18)
* Parameter `'defaultParams'` is not required anymore (will be used constructor's default params of selected library)
* Added a few helper constants for `Output()` method (detailed info located in extension's class)
```php
<?php
class EYiiPdf extends CApplicationComponent
{
...
const OUTPUT_TO_BROWSER = "I";
const OUTPUT_TO_DOWNLOAD = "D";
const OUTPUT_TO_FILE = "F";
const OUTPUT_TO_STRING = "S";
...
}
#Example (make sure that target directory is writable)
$html2pdf->Output('/path/to/file.pdf', EYiiPdf::OUTPUT_TO_FILE);
?>
```
* Some small fixes
### Version 0.1 (2012-01-16)
* Initial release