├── Changelog ├── LICENSE ├── README.md ├── chooser.php ├── config.inc.php.dist ├── createpdf.php ├── css ├── core.css ├── jquery.datetimepicker.css ├── reset.css ├── select2.css ├── tablesorter.css ├── zabbix.color.css ├── zabbix.default.css └── zabbix.report.css ├── fixrights.sh ├── fonts ├── AvantGardeConBol.afm ├── AvantGardeGothicBook.afm ├── AvantGardeGothicDemi.afm ├── Courier-Bold.afm ├── Courier-BoldOblique.afm ├── Courier-Oblique.afm ├── Courier.afm ├── Helvetica-Bold.afm ├── Helvetica-BoldOblique.afm ├── Helvetica-Oblique.afm ├── Helvetica.afm ├── Symbol.afm ├── Times-Bold.afm ├── Times-BoldItalic.afm ├── Times-Italic.afm ├── Times-Roman.afm ├── ZapfDingbats.afm ├── php_Courier-Bold.afm ├── php_Courier-BoldOblique.afm ├── php_Courier-Oblique.afm ├── php_Courier.afm ├── php_Helvetica-Bold.afm ├── php_Helvetica-BoldOblique.afm ├── php_Helvetica-Oblique.afm ├── php_Helvetica.afm ├── php_Symbol.afm ├── php_Times-Bold.afm ├── php_Times-BoldItalic.afm ├── php_Times-Italic.afm ├── php_Times-Roman.afm ├── php_ZapfDingbats.afm ├── php_a0100131.afm └── php_a010013l.afm ├── images ├── asc.gif ├── bg.gif ├── desc.gif ├── general │ └── zabbix.png ├── select2-spinner.gif ├── select2.png ├── select2x2.png └── zabbix_logo.png ├── inc ├── ZabbixAPI.class.php ├── class.ezpdf.php ├── class.pdf.php ├── createpdf.functions.php ├── index.functions.php └── pdf.functions.php ├── index.php ├── js ├── jquery.datetimepicker.css ├── jquery.datetimepicker.js ├── jquery.js ├── jquery.tablesorter.min.js ├── jquery.validate.min.js ├── select2.min.js └── zip │ ├── datetimepicker-master │ ├── .gitignore │ ├── MIT-LICENSE.txt │ ├── README.md │ ├── bower.json │ ├── build │ │ ├── jquery.datetimepicker.full.js │ │ ├── jquery.datetimepicker.full.min.js │ │ └── jquery.datetimepicker.min.js │ ├── datetimepicker.jquery.json │ ├── doc.tpl │ ├── index.html │ ├── jquery.datetimepicker.css │ ├── jquery.datetimepicker.js │ ├── jquery.datetimepicker.min.js │ ├── jquery.js │ ├── package.json │ └── screen │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.1.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ └── 6.png │ └── master.zip ├── logout.php └── report-rename.php /Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/Changelog -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/README.md -------------------------------------------------------------------------------- /chooser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/chooser.php -------------------------------------------------------------------------------- /config.inc.php.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/config.inc.php.dist -------------------------------------------------------------------------------- /createpdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/createpdf.php -------------------------------------------------------------------------------- /css/core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/css/core.css -------------------------------------------------------------------------------- /css/jquery.datetimepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/css/jquery.datetimepicker.css -------------------------------------------------------------------------------- /css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/css/reset.css -------------------------------------------------------------------------------- /css/select2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/css/select2.css -------------------------------------------------------------------------------- /css/tablesorter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/css/tablesorter.css -------------------------------------------------------------------------------- /css/zabbix.color.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/css/zabbix.color.css -------------------------------------------------------------------------------- /css/zabbix.default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/css/zabbix.default.css -------------------------------------------------------------------------------- /css/zabbix.report.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/css/zabbix.report.css -------------------------------------------------------------------------------- /fixrights.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/fixrights.sh -------------------------------------------------------------------------------- /fonts/AvantGardeConBol.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/fonts/AvantGardeConBol.afm -------------------------------------------------------------------------------- /fonts/AvantGardeGothicBook.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/fonts/AvantGardeGothicBook.afm -------------------------------------------------------------------------------- /fonts/AvantGardeGothicDemi.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/fonts/AvantGardeGothicDemi.afm -------------------------------------------------------------------------------- /fonts/Courier-Bold.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/fonts/Courier-Bold.afm -------------------------------------------------------------------------------- /fonts/Courier-BoldOblique.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/fonts/Courier-BoldOblique.afm -------------------------------------------------------------------------------- /fonts/Courier-Oblique.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/fonts/Courier-Oblique.afm -------------------------------------------------------------------------------- /fonts/Courier.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/fonts/Courier.afm -------------------------------------------------------------------------------- /fonts/Helvetica-Bold.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/fonts/Helvetica-Bold.afm -------------------------------------------------------------------------------- /fonts/Helvetica-BoldOblique.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/fonts/Helvetica-BoldOblique.afm -------------------------------------------------------------------------------- /fonts/Helvetica-Oblique.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/fonts/Helvetica-Oblique.afm -------------------------------------------------------------------------------- /fonts/Helvetica.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/fonts/Helvetica.afm -------------------------------------------------------------------------------- /fonts/Symbol.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/fonts/Symbol.afm -------------------------------------------------------------------------------- /fonts/Times-Bold.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/fonts/Times-Bold.afm -------------------------------------------------------------------------------- /fonts/Times-BoldItalic.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/fonts/Times-BoldItalic.afm -------------------------------------------------------------------------------- /fonts/Times-Italic.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/fonts/Times-Italic.afm -------------------------------------------------------------------------------- /fonts/Times-Roman.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/fonts/Times-Roman.afm -------------------------------------------------------------------------------- /fonts/ZapfDingbats.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/fonts/ZapfDingbats.afm -------------------------------------------------------------------------------- /fonts/php_Courier-Bold.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/fonts/php_Courier-Bold.afm -------------------------------------------------------------------------------- /fonts/php_Courier-BoldOblique.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/fonts/php_Courier-BoldOblique.afm -------------------------------------------------------------------------------- /fonts/php_Courier-Oblique.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/fonts/php_Courier-Oblique.afm -------------------------------------------------------------------------------- /fonts/php_Courier.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/fonts/php_Courier.afm -------------------------------------------------------------------------------- /fonts/php_Helvetica-Bold.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/fonts/php_Helvetica-Bold.afm -------------------------------------------------------------------------------- /fonts/php_Helvetica-BoldOblique.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/fonts/php_Helvetica-BoldOblique.afm -------------------------------------------------------------------------------- /fonts/php_Helvetica-Oblique.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/fonts/php_Helvetica-Oblique.afm -------------------------------------------------------------------------------- /fonts/php_Helvetica.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/fonts/php_Helvetica.afm -------------------------------------------------------------------------------- /fonts/php_Symbol.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/fonts/php_Symbol.afm -------------------------------------------------------------------------------- /fonts/php_Times-Bold.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/fonts/php_Times-Bold.afm -------------------------------------------------------------------------------- /fonts/php_Times-BoldItalic.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/fonts/php_Times-BoldItalic.afm -------------------------------------------------------------------------------- /fonts/php_Times-Italic.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/fonts/php_Times-Italic.afm -------------------------------------------------------------------------------- /fonts/php_Times-Roman.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/fonts/php_Times-Roman.afm -------------------------------------------------------------------------------- /fonts/php_ZapfDingbats.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/fonts/php_ZapfDingbats.afm -------------------------------------------------------------------------------- /fonts/php_a0100131.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/fonts/php_a0100131.afm -------------------------------------------------------------------------------- /fonts/php_a010013l.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/fonts/php_a010013l.afm -------------------------------------------------------------------------------- /images/asc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/images/asc.gif -------------------------------------------------------------------------------- /images/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/images/bg.gif -------------------------------------------------------------------------------- /images/desc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/images/desc.gif -------------------------------------------------------------------------------- /images/general/zabbix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/images/general/zabbix.png -------------------------------------------------------------------------------- /images/select2-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/images/select2-spinner.gif -------------------------------------------------------------------------------- /images/select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/images/select2.png -------------------------------------------------------------------------------- /images/select2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/images/select2x2.png -------------------------------------------------------------------------------- /images/zabbix_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/images/zabbix_logo.png -------------------------------------------------------------------------------- /inc/ZabbixAPI.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/inc/ZabbixAPI.class.php -------------------------------------------------------------------------------- /inc/class.ezpdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/inc/class.ezpdf.php -------------------------------------------------------------------------------- /inc/class.pdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/inc/class.pdf.php -------------------------------------------------------------------------------- /inc/createpdf.functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/inc/createpdf.functions.php -------------------------------------------------------------------------------- /inc/index.functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/inc/index.functions.php -------------------------------------------------------------------------------- /inc/pdf.functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/inc/pdf.functions.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/index.php -------------------------------------------------------------------------------- /js/jquery.datetimepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/js/jquery.datetimepicker.css -------------------------------------------------------------------------------- /js/jquery.datetimepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/js/jquery.datetimepicker.js -------------------------------------------------------------------------------- /js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/js/jquery.js -------------------------------------------------------------------------------- /js/jquery.tablesorter.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/js/jquery.tablesorter.min.js -------------------------------------------------------------------------------- /js/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/js/jquery.validate.min.js -------------------------------------------------------------------------------- /js/select2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/js/select2.min.js -------------------------------------------------------------------------------- /js/zip/datetimepicker-master/.gitignore: -------------------------------------------------------------------------------- 1 | parse.php 2 | bower_components 3 | node_modules 4 | -------------------------------------------------------------------------------- /js/zip/datetimepicker-master/MIT-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/js/zip/datetimepicker-master/MIT-LICENSE.txt -------------------------------------------------------------------------------- /js/zip/datetimepicker-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/js/zip/datetimepicker-master/README.md -------------------------------------------------------------------------------- /js/zip/datetimepicker-master/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/js/zip/datetimepicker-master/bower.json -------------------------------------------------------------------------------- /js/zip/datetimepicker-master/build/jquery.datetimepicker.full.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/js/zip/datetimepicker-master/build/jquery.datetimepicker.full.js -------------------------------------------------------------------------------- /js/zip/datetimepicker-master/build/jquery.datetimepicker.full.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/js/zip/datetimepicker-master/build/jquery.datetimepicker.full.min.js -------------------------------------------------------------------------------- /js/zip/datetimepicker-master/build/jquery.datetimepicker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/js/zip/datetimepicker-master/build/jquery.datetimepicker.min.js -------------------------------------------------------------------------------- /js/zip/datetimepicker-master/datetimepicker.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/js/zip/datetimepicker-master/datetimepicker.jquery.json -------------------------------------------------------------------------------- /js/zip/datetimepicker-master/doc.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/js/zip/datetimepicker-master/doc.tpl -------------------------------------------------------------------------------- /js/zip/datetimepicker-master/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/js/zip/datetimepicker-master/index.html -------------------------------------------------------------------------------- /js/zip/datetimepicker-master/jquery.datetimepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/js/zip/datetimepicker-master/jquery.datetimepicker.css -------------------------------------------------------------------------------- /js/zip/datetimepicker-master/jquery.datetimepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/js/zip/datetimepicker-master/jquery.datetimepicker.js -------------------------------------------------------------------------------- /js/zip/datetimepicker-master/jquery.datetimepicker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/js/zip/datetimepicker-master/jquery.datetimepicker.min.js -------------------------------------------------------------------------------- /js/zip/datetimepicker-master/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/js/zip/datetimepicker-master/jquery.js -------------------------------------------------------------------------------- /js/zip/datetimepicker-master/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/js/zip/datetimepicker-master/package.json -------------------------------------------------------------------------------- /js/zip/datetimepicker-master/screen/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/js/zip/datetimepicker-master/screen/1.png -------------------------------------------------------------------------------- /js/zip/datetimepicker-master/screen/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/js/zip/datetimepicker-master/screen/2.png -------------------------------------------------------------------------------- /js/zip/datetimepicker-master/screen/3.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/js/zip/datetimepicker-master/screen/3.1.png -------------------------------------------------------------------------------- /js/zip/datetimepicker-master/screen/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/js/zip/datetimepicker-master/screen/3.png -------------------------------------------------------------------------------- /js/zip/datetimepicker-master/screen/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/js/zip/datetimepicker-master/screen/4.png -------------------------------------------------------------------------------- /js/zip/datetimepicker-master/screen/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/js/zip/datetimepicker-master/screen/5.png -------------------------------------------------------------------------------- /js/zip/datetimepicker-master/screen/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/js/zip/datetimepicker-master/screen/6.png -------------------------------------------------------------------------------- /js/zip/master.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/js/zip/master.zip -------------------------------------------------------------------------------- /logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/logout.php -------------------------------------------------------------------------------- /report-rename.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinm76/zabbix-pdf-report/HEAD/report-rename.php --------------------------------------------------------------------------------