├── BACA DULU.txt ├── LICENSE ├── README.md ├── assets ├── css │ ├── AdminLTE.css │ ├── AdminLTE.min.css │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ ├── font.css │ ├── laporan.css │ ├── skins │ │ ├── skin-blue.css │ │ └── skin-blue.min.css │ └── style.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── img │ ├── boxed-bg.jpg │ ├── boxed-bg.png │ ├── default-50x50.gif │ ├── favicon.png │ ├── icons.png │ └── logo-blue.png ├── js │ ├── app.js │ ├── app.min.js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery.maskMoney.min.js │ └── npm.js └── plugins │ ├── chosen │ ├── css │ │ ├── chosen-sprite.png │ │ ├── chosen-sprite@2x.png │ │ └── chosen.min.css │ └── js │ │ └── chosen.jquery.min.js │ ├── datatables │ ├── dataTables.bootstrap.css │ ├── dataTables.bootstrap.js │ ├── images │ │ ├── sort_asc.png │ │ ├── sort_asc_disabled.png │ │ ├── sort_both.png │ │ ├── sort_desc.png │ │ └── sort_desc_disabled.png │ └── jquery.dataTables.js │ ├── datepicker │ ├── bootstrap-datepicker.min.js │ └── datepicker.min.css │ ├── fastclick │ ├── fastclick.js │ └── fastclick.min.js │ ├── font-awesome-4.6.3 │ ├── HELP-US-OUT.txt │ ├── css │ │ ├── font-awesome.css │ │ └── font-awesome.min.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ ├── less │ │ ├── animated.less │ │ ├── bordered-pulled.less │ │ ├── core.less │ │ ├── fixed-width.less │ │ ├── font-awesome.less │ │ ├── icons.less │ │ ├── larger.less │ │ ├── list.less │ │ ├── mixins.less │ │ ├── path.less │ │ ├── rotated-flipped.less │ │ ├── screen-reader.less │ │ ├── stacked.less │ │ └── variables.less │ └── scss │ │ ├── _animated.scss │ │ ├── _bordered-pulled.scss │ │ ├── _core.scss │ │ ├── _fixed-width.scss │ │ ├── _icons.scss │ │ ├── _larger.scss │ │ ├── _list.scss │ │ ├── _mixins.scss │ │ ├── _path.scss │ │ ├── _rotated-flipped.scss │ │ ├── _screen-reader.scss │ │ ├── _stacked.scss │ │ ├── _variables.scss │ │ └── font-awesome.scss │ ├── html2pdf_v4.03 │ ├── _LGPL.txt │ ├── _changelog.txt │ ├── _class │ │ ├── exception.class.php │ │ ├── locale.class.php │ │ ├── myPdf.class.php │ │ ├── parsingCss.class.php │ │ ├── parsingHtml.class.php │ │ └── tcpdfConfig.php │ ├── _lisez_moi.txt │ ├── _read_me.txt │ ├── _tcpdf_5.0.002 │ │ ├── 2dbarcodes.php │ │ ├── CHANGELOG.TXT │ │ ├── LICENSE.TXT │ │ ├── README.TXT │ │ ├── barcodes.php │ │ ├── cache │ │ │ ├── chapter_demo_1.txt │ │ │ ├── chapter_demo_2.txt │ │ │ ├── table_data_demo.txt │ │ │ └── utf8test.txt │ │ ├── config │ │ │ ├── lang │ │ │ │ ├── bra.php │ │ │ │ ├── eng.php │ │ │ │ ├── ger.php │ │ │ │ └── ita.php │ │ │ ├── tcpdf_config.php │ │ │ └── tcpdf_config_alt.php │ │ ├── doc │ │ │ └── read_me.txt │ │ ├── examples │ │ │ └── read_me.txt │ │ ├── fonts │ │ │ ├── README.TXT │ │ │ ├── ZarBold.ctg.z │ │ │ ├── ZarBold.z │ │ │ ├── almohanad.ctg.z │ │ │ ├── almohanad.php │ │ │ ├── almohanad.z │ │ │ ├── arialunicid0.php │ │ │ ├── courier.php │ │ │ ├── dejavu-fonts-ttf-2.30 │ │ │ │ ├── AUTHORS │ │ │ │ ├── BUGS │ │ │ │ ├── LICENSE │ │ │ │ ├── NEWS │ │ │ │ ├── README │ │ │ │ ├── langcover.txt │ │ │ │ ├── status.txt │ │ │ │ └── unicover.txt │ │ │ ├── dejavusans.ctg.z │ │ │ ├── dejavusans.php │ │ │ ├── dejavusans.z │ │ │ ├── dejavusansb.ctg.z │ │ │ ├── dejavusansb.php │ │ │ ├── dejavusansb.z │ │ │ ├── dejavusansbi.ctg.z │ │ │ ├── dejavusansbi.php │ │ │ ├── dejavusansbi.z │ │ │ ├── dejavusanscondensed.ctg.z │ │ │ ├── dejavusanscondensed.php │ │ │ ├── dejavusanscondensed.z │ │ │ ├── dejavusanscondensedb.ctg.z │ │ │ ├── dejavusanscondensedb.php │ │ │ ├── dejavusanscondensedb.z │ │ │ ├── dejavusanscondensedbi.ctg.z │ │ │ ├── dejavusanscondensedbi.php │ │ │ ├── dejavusanscondensedbi.z │ │ │ ├── dejavusanscondensedi.ctg.z │ │ │ ├── dejavusanscondensedi.php │ │ │ ├── dejavusanscondensedi.z │ │ │ ├── dejavusansi.ctg.z │ │ │ ├── dejavusansi.php │ │ │ ├── dejavusansi.z │ │ │ ├── dejavusansmono.ctg.z │ │ │ ├── dejavusansmono.php │ │ │ ├── dejavusansmono.z │ │ │ ├── dejavusansmonob.ctg.z │ │ │ ├── dejavusansmonob.php │ │ │ ├── dejavusansmonob.z │ │ │ ├── dejavusansmonobi.ctg.z │ │ │ ├── dejavusansmonobi.php │ │ │ ├── dejavusansmonobi.z │ │ │ ├── dejavusansmonoi.ctg.z │ │ │ ├── dejavusansmonoi.php │ │ │ ├── dejavusansmonoi.z │ │ │ ├── dejavuserif.ctg.z │ │ │ ├── dejavuserif.php │ │ │ ├── dejavuserif.z │ │ │ ├── dejavuserifb.ctg.z │ │ │ ├── dejavuserifb.php │ │ │ ├── dejavuserifb.z │ │ │ ├── dejavuserifbi.ctg.z │ │ │ ├── dejavuserifbi.php │ │ │ ├── dejavuserifbi.z │ │ │ ├── dejavuserifcondensed.ctg.z │ │ │ ├── dejavuserifcondensed.php │ │ │ ├── dejavuserifcondensed.z │ │ │ ├── dejavuserifcondensedb.ctg.z │ │ │ ├── dejavuserifcondensedb.php │ │ │ ├── dejavuserifcondensedb.z │ │ │ ├── dejavuserifcondensedbi.ctg.z │ │ │ ├── dejavuserifcondensedbi.php │ │ │ ├── dejavuserifcondensedbi.z │ │ │ ├── dejavuserifcondensedi.ctg.z │ │ │ ├── dejavuserifcondensedi.php │ │ │ ├── dejavuserifcondensedi.z │ │ │ ├── dejavuserifi.ctg.z │ │ │ ├── dejavuserifi.php │ │ │ ├── dejavuserifi.z │ │ │ ├── freefont-20090104 │ │ │ │ ├── AUTHORS │ │ │ │ ├── COPYING │ │ │ │ ├── CREDITS │ │ │ │ ├── ChangeLog │ │ │ │ ├── INSTALL │ │ │ │ └── README │ │ │ ├── freemono.ctg.z │ │ │ ├── freemono.php │ │ │ ├── freemono.z │ │ │ ├── freemonob.ctg.z │ │ │ ├── freemonob.php │ │ │ ├── freemonob.z │ │ │ ├── freemonobi.ctg.z │ │ │ ├── freemonobi.php │ │ │ ├── freemonobi.z │ │ │ ├── freemonoi.ctg.z │ │ │ ├── freemonoi.php │ │ │ ├── freemonoi.z │ │ │ ├── freesans.ctg.z │ │ │ ├── freesans.php │ │ │ ├── freesans.z │ │ │ ├── freesansb.ctg.z │ │ │ ├── freesansb.php │ │ │ ├── freesansb.z │ │ │ ├── freesansbi.ctg.z │ │ │ ├── freesansbi.php │ │ │ ├── freesansbi.z │ │ │ ├── freesansi.ctg.z │ │ │ ├── freesansi.php │ │ │ ├── freesansi.z │ │ │ ├── freeserif.ctg.z │ │ │ ├── freeserif.php │ │ │ ├── freeserif.z │ │ │ ├── freeserifb.ctg.z │ │ │ ├── freeserifb.php │ │ │ ├── freeserifb.z │ │ │ ├── freeserifbi.ctg.z │ │ │ ├── freeserifbi.php │ │ │ ├── freeserifbi.z │ │ │ ├── freeserifi.ctg.z │ │ │ ├── freeserifi.php │ │ │ ├── freeserifi.z │ │ │ ├── helvetica.php │ │ │ ├── helveticab.php │ │ │ ├── helveticabi.php │ │ │ ├── helveticai.php │ │ │ ├── hysmyeongjostdmedium.php │ │ │ ├── kozgopromedium.php │ │ │ ├── kozminproregular.php │ │ │ ├── msungstdlight.php │ │ │ ├── stsongstdlight.php │ │ │ ├── symbol.php │ │ │ ├── times.php │ │ │ ├── timesb.php │ │ │ ├── timesbi.php │ │ │ ├── timesi.php │ │ │ ├── uni2cid_ac15.php │ │ │ ├── uni2cid_ag15.php │ │ │ ├── uni2cid_aj16.php │ │ │ ├── uni2cid_ak12.php │ │ │ ├── utils │ │ │ │ ├── README.TXT │ │ │ │ ├── enc │ │ │ │ │ ├── cp1250.map │ │ │ │ │ ├── cp1251.map │ │ │ │ │ ├── cp1252.map │ │ │ │ │ ├── cp1253.map │ │ │ │ │ ├── cp1254.map │ │ │ │ │ ├── cp1255.map │ │ │ │ │ ├── cp1257.map │ │ │ │ │ ├── cp1258.map │ │ │ │ │ ├── cp874.map │ │ │ │ │ ├── iso-8859-1.map │ │ │ │ │ ├── iso-8859-11.map │ │ │ │ │ ├── iso-8859-15.map │ │ │ │ │ ├── iso-8859-16.map │ │ │ │ │ ├── iso-8859-2.map │ │ │ │ │ ├── iso-8859-4.map │ │ │ │ │ ├── iso-8859-5.map │ │ │ │ │ ├── iso-8859-7.map │ │ │ │ │ ├── iso-8859-9.map │ │ │ │ │ ├── koi8-r.map │ │ │ │ │ └── koi8-u.map │ │ │ │ ├── freetype6.dll │ │ │ │ ├── makeallttffonts.php │ │ │ │ ├── makefont.php │ │ │ │ ├── pfm2afm │ │ │ │ ├── pfm2afm.exe │ │ │ │ ├── src │ │ │ │ │ ├── pfm2afm-src.tar.gz │ │ │ │ │ ├── readme.txt │ │ │ │ │ └── ttf2ufm-src.tar.gz │ │ │ │ ├── ttf2ufm │ │ │ │ ├── ttf2ufm.exe │ │ │ │ └── zlib1.dll │ │ │ ├── zapfdingbats.php │ │ │ └── zarbold.php │ │ ├── htmlcolors.php │ │ ├── images │ │ │ └── read_me.txt │ │ ├── qrcode.php │ │ ├── tcpdf.crt │ │ ├── tcpdf.fdf │ │ ├── tcpdf.php │ │ └── unicode_data.php │ ├── examples │ │ ├── about.php │ │ ├── bookmark.php │ │ ├── exemple00.php │ │ ├── exemple01.php │ │ ├── exemple02.php │ │ ├── exemple03.php │ │ ├── exemple04.php │ │ ├── exemple05.php │ │ ├── exemple06.php │ │ ├── exemple07.php │ │ ├── exemple08.php │ │ ├── exemple09.php │ │ ├── exemple10.php │ │ ├── exemple11.php │ │ ├── exemple12.php │ │ ├── exemple13.php │ │ ├── forms.php │ │ ├── groups.php │ │ ├── js1.php │ │ ├── js2.php │ │ ├── js3.php │ │ ├── qrcode.php │ │ ├── radius.php │ │ ├── regle.php │ │ ├── res │ │ │ ├── about.php │ │ │ ├── bas_page.png │ │ │ ├── exemple00.php │ │ │ ├── exemple01.php │ │ │ ├── exemple02.php │ │ │ ├── exemple03.php │ │ │ ├── exemple04.php │ │ │ ├── exemple05.php │ │ │ ├── exemple06.css │ │ │ ├── exemple06.php │ │ │ ├── exemple07a.php │ │ │ ├── exemple07b.php │ │ │ ├── exemple08.php │ │ │ ├── exemple09.png.php │ │ │ ├── exemple10.php │ │ │ ├── exemple10a.gif │ │ │ ├── exemple10b.jpg │ │ │ ├── exemple10c.gif │ │ │ ├── exemple11.php │ │ │ ├── exemple12.php │ │ │ ├── exemple13.php │ │ │ ├── forms.php │ │ │ ├── logo.gif │ │ │ ├── logo.png │ │ │ ├── off.png │ │ │ ├── puce.gif │ │ │ ├── puce2.gif │ │ │ ├── regle.png │ │ │ ├── svg.php │ │ │ └── tcpdf_logo.jpg │ │ ├── svg.php │ │ ├── svg_tiger.php │ │ ├── svg_tree.php │ │ ├── ticket.php │ │ └── utf8.php │ ├── html2pdf.class.php │ └── locale │ │ ├── ca.csv │ │ ├── cs.csv │ │ ├── da.csv │ │ ├── de.csv │ │ ├── en.csv │ │ ├── es.csv │ │ ├── fr.csv │ │ ├── it.csv │ │ ├── nl.csv │ │ ├── pt.csv │ │ └── tr.csv │ ├── jQuery │ └── jQuery-2.1.3.min.js │ ├── jQueryUI │ └── jquery-ui.min.js │ └── slimScroll │ ├── jquery.slimscroll.js │ └── jquery.slimscroll.min.js ├── config ├── database.php ├── fungsi_rupiah.php └── fungsi_tanggal.php ├── content.php ├── database └── i_persediaan_obat.sql ├── images └── user │ ├── 1469574176_users-7.png │ ├── indrasatya.jpg │ ├── kadina.png │ └── user-default.png ├── index.php ├── login-check.php ├── logout.php ├── main.php ├── modules ├── beranda │ └── view.php ├── lap-obat-masuk │ ├── cetak.php │ └── view.php ├── lap-stok │ ├── cetak.php │ └── view.php ├── obat-masuk │ ├── form.php │ ├── obat.php │ ├── proses.php │ └── view.php ├── obat │ ├── form.php │ ├── proses.php │ └── view.php ├── password │ ├── proses.php │ └── view.php ├── profil │ ├── form.php │ ├── proses.php │ └── view.php └── user │ ├── form.php │ ├── proses.php │ └── view.php ├── sidebar-menu.php └── top-menu.php /BACA DULU.txt: -------------------------------------------------------------------------------- 1 | Aplikasi Persediaan Obat pada Apotek 2 | ========================================================================================================================================== 3 | 4 | Bahasa Pemrograman : PHP v.7.0.13 5 | Database : MySQL 6 | Extension : MySQLi Extension 7 | CSS Framework : Bootstrap 8 | Template : AdminLTE v.2.0.4 9 | Report : html2pdf_v4.03 10 | Tools : - Sublime, 11 | - XAMPP 7.0.13 12 | 13 | ========================================================================================================================================== 14 | 15 | PETUNJUK PENGGUNAAN 16 | 17 | 1. Install XAMPP, Download disini https://www.apachefriends.org 18 | 2. Setelah XAMPP terinstall, buka Xampp Control Panel lalu Start Apache dan MySQL. 19 | 3. Download Aplikasi Persediaan Obat dari github (https://github.com/indrasatya/aplikasi-persediaan-obat), lalu extract file dan ubah nama folder menjadi Aplikasi-Persediaan-Obat. 20 | 4. Kemudian copy folder Aplikasi-Persediaan-Obat dan paste ke folder ..\xampp\htdocs. 21 | 5. Kemudian buka browser dan masuk ke localhost/phpmyadmin, buat database baru dengan nama i_persediaan_obat. 22 | 6. Import file i_persediaan_obat.sql yang ada difolder Database ke dalam database yang telah dibuat. 23 | 7. Setting koneksi pada file database.php yang ada pada folrder config (sesuaikan dengan pengaturan server di komputer/laptop Anda) 24 | 8. Untuk membuka program ketikan localhost/Aplikasi-Persediaan-Obat. 25 | 9. Login user : Hak akses Super Admin : username indrasatya, password indrasatya 26 | Hak akses Super Gudang : username danang, password 123 27 | Hak akses Super Manajer : username kadina, password 123 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | # Aplikasi Persediaan Obat 3 | 4 | Aplikasi Persediaan Obat ini dibangun menggunakan bahasa pemrograman PHP dan database MySQL. Untuk cara mengakses databasenya menggunakan MySQLi Extension dengan konsep pemrograman prosedural. 5 | 6 | Materi yang dapat dipelajari dari aplikasi ini selain proses create, read, update, delete, dan search adalah bagaimana menggunakan JQuery DataTables untuk membuat tabel yang dinamis, dan membuat laporan dalam format PDF menggunakan library html2pdf. Selain itu juga dapat dipelajari bagaimana mendesain tampilan aplikasi menggunakan CSS Bootstrap. Pada aplikasi ini saya menggunakan template AdminLTE-2.0.4. 7 | 8 | # Fitur Apilkasi 9 | 1. Login, 10 | Halaman login multi user. Ada 3 level user yaitu Super Admin, Manajer dan Gudang. 11 | 2. Data Obat, 12 | Halaman untuk mengolah data obat yang ada pada apotek. Pada halaman ini user dapat menginput, mengubah, menghapus, dan mencari data obat. 13 | 3. Data Obat Masuk, 14 | Halaman untuk mengolah data obat masuk. Pada halaman ini user dapat menginput, dan mencari data obat masuk. 15 | 4. Laporan Stok Obat, 16 | Halaman untuk melihat stok obat dan mencetak laporan stok obat. Laporan dapat dicetak per hari, per minggu, per bulan dan per tahun dalam format PDF. 17 | 5. Laporan Obat Masuk, 18 | Halaman untuk mencetak laporan obat masuk. Laporan dapat dicetak per hari, per minggu, per bulan dan per tahun dalam format PDF. 19 | 6. Manajemen User, 20 | Halaman untuk mengolah data user yang dapat menggunakan aplikasi. 21 | 7. Ubah Password, 22 | Halaman untuk mengubah password user. 23 | 24 | demo : www.indrasatya.com 25 | -------------------------------------------------------------------------------- /assets/css/laporan.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | /* CSS Document */ 3 | 4 | #logo{ 5 | height: 120px; 6 | margin-bottom: 50px; 7 | width: 100%; 8 | border-top-style: none; 9 | border-right-style: none; 10 | border-bottom-style: none; 11 | border-left-style: none; 12 | } 13 | 14 | #title{ 15 | float: none; 16 | font-weight: bold; 17 | text-transform: capitalize; 18 | color: #000; 19 | margin-bottom: 4px; 20 | font-size: 12pt; 21 | text-decoration: none; 22 | text-align: center; 23 | } 24 | 25 | #title-tanggal{ 26 | float: none; 27 | font-weight: bold; 28 | text-transform: capitalize; 29 | color: #000; 30 | margin-bottom: 10px; 31 | font-size: 10pt; 32 | text-decoration: none; 33 | text-align: center; 34 | } 35 | 36 | #isi{ 37 | font-size: 9pt; 38 | } 39 | 40 | #isi-table{ 41 | padding: 0 0 0 3px; 42 | } 43 | 44 | .tr-title{ 45 | font-size: 9pt; 46 | font-weight: bold; 47 | color: #000; 48 | background-color: #CCC; 49 | } 50 | 51 | #footer-tanggal{ 52 | color: #000; 53 | margin-top: 40px; 54 | margin-left: 450px; 55 | font-size: 10pt; 56 | } 57 | 58 | #footer-jabatan{ 59 | color: #000; 60 | font-size: 10pt; 61 | margin-left: 450px; 62 | margin-bottom: 70px; 63 | } 64 | 65 | #footer-nama{ 66 | color: #000; 67 | font-size: 10pt; 68 | margin-left: 450px; 69 | text-decoration: underline; 70 | font-weight: bold; 71 | } 72 | 73 | body { 74 | font-family: Arial, Helvetica, sans-serif; 75 | color: #000; 76 | text-align: center; 77 | } 78 | -------------------------------------------------------------------------------- /assets/css/skins/skin-blue.min.css: -------------------------------------------------------------------------------- 1 | .skin-blue .main-header .navbar{background-color:#3c8dbc}.skin-blue .main-header .navbar .nav>li>a{color:#fff}.skin-blue .main-header .navbar .nav>li>a:hover,.skin-blue .main-header .navbar .nav>li>a:active,.skin-blue .main-header .navbar .nav>li>a:focus,.skin-blue .main-header .navbar .nav .open>a,.skin-blue .main-header .navbar .nav .open>a:hover,.skin-blue .main-header .navbar .nav .open>a:focus{background:rgba(0,0,0,0.1);color:#f6f6f6}.skin-blue .main-header .navbar .navbar-custom-menu>.nav{margin-right:10px}.skin-blue .main-header .navbar .sidebar-toggle{color:#fff}.skin-blue .main-header .navbar .sidebar-toggle:hover{color:#f6f6f6;background:rgba(0,0,0,0.1)}.skin-blue .main-header .navbar .sidebar-toggle{color:#fff}.skin-blue .main-header .navbar .sidebar-toggle:hover{background-color:#367fa9}@media (max-width:767px){.skin-blue .main-header .navbar .dropdown-menu li.divider{background-color:rgba(255,255,255,0.1)}.skin-blue .main-header .navbar .dropdown-menu li a{color:#fff}.skin-blue .main-header .navbar .dropdown-menu li a:hover{background:#367fa9}}.skin-blue .main-header .logo{background-color:#367fa9;color:#fff;border-bottom:0 solid transparent}.skin-blue .main-header .logo>a{color:#fff}.skin-blue .main-header .logo:hover{background:#357ca5}.skin-blue .main-header li.user-header{background-color:#3c8dbc}.skin-blue .content-header{background:transparent}.skin-blue .user-panel>.info,.skin-blue .user-panel>.info>a{color:#fff}.skin-blue .sidebar-menu>li.header{color:#4b646f;background:#1a2226}.skin-blue .sidebar-menu>li>a{border-left:3px solid transparent;margin-right:1px}.skin-blue .sidebar-menu>li>a:hover,.skin-blue .sidebar-menu>li.active>a{color:#fff;background:#1e282c;border-left-color:#3c8dbc}.skin-blue .sidebar-menu>li>.treeview-menu{margin:0 1px;background:#2c3b41}.skin-blue .wrapper,.skin-blue .main-sidebar,.skin-blue .left-side{background:#222d32}.skin-blue .sidebar a{color:#b8c7ce}.skin-blue .sidebar a:hover{text-decoration:none}.skin-blue .treeview-menu>li>a{color:#8aa4af}.skin-blue .treeview-menu>li.active>a,.skin-blue .treeview-menu>li>a:hover{color:#fff}.skin-blue .sidebar-form{border-radius:3px;border:1px solid #374850;margin:10px 10px}.skin-blue .sidebar-form input[type="text"],.skin-blue .sidebar-form .btn{box-shadow:none;background-color:#374850;border:1px solid transparent;height:35px;-webkit-transition:all .3s cubic-bezier(.32, 1.25, .375, 1.15);-o-transition:all .3s cubic-bezier(.32, 1.25, .375, 1.15);transition:all .3s cubic-bezier(.32, 1.25, .375, 1.15)}.skin-blue .sidebar-form input[type="text"]{color:#666;border-top-left-radius:2px !important;border-top-right-radius:0 !important;border-bottom-right-radius:0 !important;border-bottom-left-radius:2px !important}.skin-blue .sidebar-form input[type="text"]:focus,.skin-blue .sidebar-form input[type="text"]:focus+.input-group-btn .btn{background-color:#fff;color:#666}.skin-blue .sidebar-form input[type="text"]:focus+.input-group-btn .btn{border-left-color:#fff}.skin-blue .sidebar-form .btn{color:#999;border-top-left-radius:0 !important;border-top-right-radius:2px !important;border-bottom-right-radius:2px !important;border-bottom-left-radius:0 !important}.skin-blue.layout-top-nav .main-header>.logo{background-color:#3c8dbc;color:#fff;border-bottom:0 solid transparent}.skin-blue.layout-top-nav .main-header>.logo>a{color:#fff}.skin-blue.layout-top-nav .main-header>.logo:hover{background:#3b8ab8} -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /assets/img/boxed-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/img/boxed-bg.jpg -------------------------------------------------------------------------------- /assets/img/boxed-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/img/boxed-bg.png -------------------------------------------------------------------------------- /assets/img/default-50x50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/img/default-50x50.gif -------------------------------------------------------------------------------- /assets/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/img/favicon.png -------------------------------------------------------------------------------- /assets/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/img/icons.png -------------------------------------------------------------------------------- /assets/img/logo-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/img/logo-blue.png -------------------------------------------------------------------------------- /assets/js/npm.js: -------------------------------------------------------------------------------- 1 | // This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment. 2 | require('../../js/transition.js') 3 | require('../../js/alert.js') 4 | require('../../js/button.js') 5 | require('../../js/carousel.js') 6 | require('../../js/collapse.js') 7 | require('../../js/dropdown.js') 8 | require('../../js/modal.js') 9 | require('../../js/tooltip.js') 10 | require('../../js/popover.js') 11 | require('../../js/scrollspy.js') 12 | require('../../js/tab.js') 13 | require('../../js/affix.js') -------------------------------------------------------------------------------- /assets/plugins/chosen/css/chosen-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/chosen/css/chosen-sprite.png -------------------------------------------------------------------------------- /assets/plugins/chosen/css/chosen-sprite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/chosen/css/chosen-sprite@2x.png -------------------------------------------------------------------------------- /assets/plugins/datatables/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/datatables/images/sort_asc.png -------------------------------------------------------------------------------- /assets/plugins/datatables/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/datatables/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /assets/plugins/datatables/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/datatables/images/sort_both.png -------------------------------------------------------------------------------- /assets/plugins/datatables/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/datatables/images/sort_desc.png -------------------------------------------------------------------------------- /assets/plugins/datatables/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/datatables/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /assets/plugins/font-awesome-4.6.3/HELP-US-OUT.txt: -------------------------------------------------------------------------------- 1 | I hope you love Font Awesome. If you've found it useful, please do me a favor and check out my latest project, 2 | Fort Awesome (https://fortawesome.com). It makes it easy to put the perfect icons on your website. Choose from our awesome, 3 | comprehensive icon sets or copy and paste your own. 4 | 5 | Please. Check it out. 6 | 7 | -Dave Gandy 8 | -------------------------------------------------------------------------------- /assets/plugins/font-awesome-4.6.3/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/font-awesome-4.6.3/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /assets/plugins/font-awesome-4.6.3/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/font-awesome-4.6.3/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /assets/plugins/font-awesome-4.6.3/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/font-awesome-4.6.3/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /assets/plugins/font-awesome-4.6.3/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/font-awesome-4.6.3/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /assets/plugins/font-awesome-4.6.3/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/font-awesome-4.6.3/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /assets/plugins/font-awesome-4.6.3/less/animated.less: -------------------------------------------------------------------------------- 1 | // Animated Icons 2 | // -------------------------- 3 | 4 | .@{fa-css-prefix}-spin { 5 | -webkit-animation: fa-spin 2s infinite linear; 6 | animation: fa-spin 2s infinite linear; 7 | } 8 | 9 | .@{fa-css-prefix}-pulse { 10 | -webkit-animation: fa-spin 1s infinite steps(8); 11 | animation: fa-spin 1s infinite steps(8); 12 | } 13 | 14 | @-webkit-keyframes fa-spin { 15 | 0% { 16 | -webkit-transform: rotate(0deg); 17 | transform: rotate(0deg); 18 | } 19 | 100% { 20 | -webkit-transform: rotate(359deg); 21 | transform: rotate(359deg); 22 | } 23 | } 24 | 25 | @keyframes fa-spin { 26 | 0% { 27 | -webkit-transform: rotate(0deg); 28 | transform: rotate(0deg); 29 | } 30 | 100% { 31 | -webkit-transform: rotate(359deg); 32 | transform: rotate(359deg); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /assets/plugins/font-awesome-4.6.3/less/bordered-pulled.less: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em @fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .@{fa-css-prefix}-pull-left { float: left; } 11 | .@{fa-css-prefix}-pull-right { float: right; } 12 | 13 | .@{fa-css-prefix} { 14 | &.@{fa-css-prefix}-pull-left { margin-right: .3em; } 15 | &.@{fa-css-prefix}-pull-right { margin-left: .3em; } 16 | } 17 | 18 | /* Deprecated as of 4.4.0 */ 19 | .pull-right { float: right; } 20 | .pull-left { float: left; } 21 | 22 | .@{fa-css-prefix} { 23 | &.pull-left { margin-right: .3em; } 24 | &.pull-right { margin-left: .3em; } 25 | } 26 | -------------------------------------------------------------------------------- /assets/plugins/font-awesome-4.6.3/less/core.less: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | -------------------------------------------------------------------------------- /assets/plugins/font-awesome-4.6.3/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /assets/plugins/font-awesome-4.6.3/less/font-awesome.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables.less"; 7 | @import "mixins.less"; 8 | @import "path.less"; 9 | @import "core.less"; 10 | @import "larger.less"; 11 | @import "fixed-width.less"; 12 | @import "list.less"; 13 | @import "bordered-pulled.less"; 14 | @import "animated.less"; 15 | @import "rotated-flipped.less"; 16 | @import "stacked.less"; 17 | @import "icons.less"; 18 | @import "screen-reader.less"; 19 | -------------------------------------------------------------------------------- /assets/plugins/font-awesome-4.6.3/less/larger.less: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .@{fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .@{fa-css-prefix}-2x { font-size: 2em; } 11 | .@{fa-css-prefix}-3x { font-size: 3em; } 12 | .@{fa-css-prefix}-4x { font-size: 4em; } 13 | .@{fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /assets/plugins/font-awesome-4.6.3/less/list.less: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: @fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .@{fa-css-prefix}-li { 11 | position: absolute; 12 | left: -@fa-li-width; 13 | width: @fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.@{fa-css-prefix}-lg { 17 | left: (-@fa-li-width + (4em / 14)); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /assets/plugins/font-awesome-4.6.3/less/mixins.less: -------------------------------------------------------------------------------- 1 | // Mixins 2 | // -------------------------- 3 | 4 | .fa-icon() { 5 | display: inline-block; 6 | font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | 14 | .fa-icon-rotate(@degrees, @rotation) { 15 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation})"; 16 | -webkit-transform: rotate(@degrees); 17 | -ms-transform: rotate(@degrees); 18 | transform: rotate(@degrees); 19 | } 20 | 21 | .fa-icon-flip(@horiz, @vert, @rotation) { 22 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation}, mirror=1)"; 23 | -webkit-transform: scale(@horiz, @vert); 24 | -ms-transform: scale(@horiz, @vert); 25 | transform: scale(@horiz, @vert); 26 | } 27 | 28 | 29 | // Only display content to screen readers. A la Bootstrap 4. 30 | // 31 | // See: http://a11yproject.com/posts/how-to-hide-content/ 32 | 33 | .sr-only() { 34 | position: absolute; 35 | width: 1px; 36 | height: 1px; 37 | padding: 0; 38 | margin: -1px; 39 | overflow: hidden; 40 | clip: rect(0,0,0,0); 41 | border: 0; 42 | } 43 | 44 | // Use in conjunction with .sr-only to only display content when it's focused. 45 | // 46 | // Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1 47 | // 48 | // Credit: HTML5 Boilerplate 49 | 50 | .sr-only-focusable() { 51 | &:active, 52 | &:focus { 53 | position: static; 54 | width: auto; 55 | height: auto; 56 | margin: 0; 57 | overflow: visible; 58 | clip: auto; 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /assets/plugins/font-awesome-4.6.3/less/path.less: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}'); 7 | src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'), 8 | url('@{fa-font-path}/fontawesome-webfont.woff2?v=@{fa-version}') format('woff2'), 9 | url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'), 10 | url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'), 11 | url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg'); 12 | // src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 13 | font-weight: normal; 14 | font-style: normal; 15 | } 16 | -------------------------------------------------------------------------------- /assets/plugins/font-awesome-4.6.3/less/rotated-flipped.less: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); } 5 | .@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); } 6 | .@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); } 7 | 8 | .@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); } 9 | .@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .@{fa-css-prefix}-rotate-90, 15 | :root .@{fa-css-prefix}-rotate-180, 16 | :root .@{fa-css-prefix}-rotate-270, 17 | :root .@{fa-css-prefix}-flip-horizontal, 18 | :root .@{fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /assets/plugins/font-awesome-4.6.3/less/screen-reader.less: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { .sr-only(); } 5 | .sr-only-focusable { .sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /assets/plugins/font-awesome-4.6.3/less/stacked.less: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .@{fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .@{fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .@{fa-css-prefix}-inverse { color: @fa-inverse; } 21 | -------------------------------------------------------------------------------- /assets/plugins/font-awesome-4.6.3/scss/_animated.scss: -------------------------------------------------------------------------------- 1 | // Spinning Icons 2 | // -------------------------- 3 | 4 | .#{$fa-css-prefix}-spin { 5 | -webkit-animation: fa-spin 2s infinite linear; 6 | animation: fa-spin 2s infinite linear; 7 | } 8 | 9 | .#{$fa-css-prefix}-pulse { 10 | -webkit-animation: fa-spin 1s infinite steps(8); 11 | animation: fa-spin 1s infinite steps(8); 12 | } 13 | 14 | @-webkit-keyframes fa-spin { 15 | 0% { 16 | -webkit-transform: rotate(0deg); 17 | transform: rotate(0deg); 18 | } 19 | 100% { 20 | -webkit-transform: rotate(359deg); 21 | transform: rotate(359deg); 22 | } 23 | } 24 | 25 | @keyframes fa-spin { 26 | 0% { 27 | -webkit-transform: rotate(0deg); 28 | transform: rotate(0deg); 29 | } 30 | 100% { 31 | -webkit-transform: rotate(359deg); 32 | transform: rotate(359deg); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /assets/plugins/font-awesome-4.6.3/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em $fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .#{$fa-css-prefix}-pull-left { float: left; } 11 | .#{$fa-css-prefix}-pull-right { float: right; } 12 | 13 | .#{$fa-css-prefix} { 14 | &.#{$fa-css-prefix}-pull-left { margin-right: .3em; } 15 | &.#{$fa-css-prefix}-pull-right { margin-left: .3em; } 16 | } 17 | 18 | /* Deprecated as of 4.4.0 */ 19 | .pull-right { float: right; } 20 | .pull-left { float: left; } 21 | 22 | .#{$fa-css-prefix} { 23 | &.pull-left { margin-right: .3em; } 24 | &.pull-right { margin-left: .3em; } 25 | } 26 | -------------------------------------------------------------------------------- /assets/plugins/font-awesome-4.6.3/scss/_core.scss: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | -------------------------------------------------------------------------------- /assets/plugins/font-awesome-4.6.3/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /assets/plugins/font-awesome-4.6.3/scss/_larger.scss: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .#{$fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .#{$fa-css-prefix}-2x { font-size: 2em; } 11 | .#{$fa-css-prefix}-3x { font-size: 3em; } 12 | .#{$fa-css-prefix}-4x { font-size: 4em; } 13 | .#{$fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /assets/plugins/font-awesome-4.6.3/scss/_list.scss: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: $fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .#{$fa-css-prefix}-li { 11 | position: absolute; 12 | left: -$fa-li-width; 13 | width: $fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.#{$fa-css-prefix}-lg { 17 | left: -$fa-li-width + (4em / 14); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /assets/plugins/font-awesome-4.6.3/scss/_mixins.scss: -------------------------------------------------------------------------------- 1 | // Mixins 2 | // -------------------------- 3 | 4 | @mixin fa-icon() { 5 | display: inline-block; 6 | font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | 14 | @mixin fa-icon-rotate($degrees, $rotation) { 15 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation})"; 16 | -webkit-transform: rotate($degrees); 17 | -ms-transform: rotate($degrees); 18 | transform: rotate($degrees); 19 | } 20 | 21 | @mixin fa-icon-flip($horiz, $vert, $rotation) { 22 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation}, mirror=1)"; 23 | -webkit-transform: scale($horiz, $vert); 24 | -ms-transform: scale($horiz, $vert); 25 | transform: scale($horiz, $vert); 26 | } 27 | 28 | 29 | // Only display content to screen readers. A la Bootstrap 4. 30 | // 31 | // See: http://a11yproject.com/posts/how-to-hide-content/ 32 | 33 | @mixin sr-only { 34 | position: absolute; 35 | width: 1px; 36 | height: 1px; 37 | padding: 0; 38 | margin: -1px; 39 | overflow: hidden; 40 | clip: rect(0,0,0,0); 41 | border: 0; 42 | } 43 | 44 | // Use in conjunction with .sr-only to only display content when it's focused. 45 | // 46 | // Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1 47 | // 48 | // Credit: HTML5 Boilerplate 49 | 50 | @mixin sr-only-focusable { 51 | &:active, 52 | &:focus { 53 | position: static; 54 | width: auto; 55 | height: auto; 56 | margin: 0; 57 | overflow: visible; 58 | clip: auto; 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /assets/plugins/font-awesome-4.6.3/scss/_path.scss: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}'); 7 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'), 8 | url('#{$fa-font-path}/fontawesome-webfont.woff2?v=#{$fa-version}') format('woff2'), 9 | url('#{$fa-font-path}/fontawesome-webfont.woff?v=#{$fa-version}') format('woff'), 10 | url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'), 11 | url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg'); 12 | // src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 13 | font-weight: normal; 14 | font-style: normal; 15 | } 16 | -------------------------------------------------------------------------------- /assets/plugins/font-awesome-4.6.3/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } 5 | .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } 6 | .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } 7 | 8 | .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); } 9 | .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .#{$fa-css-prefix}-rotate-90, 15 | :root .#{$fa-css-prefix}-rotate-180, 16 | :root .#{$fa-css-prefix}-rotate-270, 17 | :root .#{$fa-css-prefix}-flip-horizontal, 18 | :root .#{$fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /assets/plugins/font-awesome-4.6.3/scss/_screen-reader.scss: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { @include sr-only(); } 5 | .sr-only-focusable { @include sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /assets/plugins/font-awesome-4.6.3/scss/_stacked.scss: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .#{$fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .#{$fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .#{$fa-css-prefix}-inverse { color: $fa-inverse; } 21 | -------------------------------------------------------------------------------- /assets/plugins/font-awesome-4.6.3/scss/font-awesome.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables"; 7 | @import "mixins"; 8 | @import "path"; 9 | @import "core"; 10 | @import "larger"; 11 | @import "fixed-width"; 12 | @import "list"; 13 | @import "bordered-pulled"; 14 | @import "animated"; 15 | @import "rotated-flipped"; 16 | @import "stacked"; 17 | @import "icons"; 18 | @import "screen-reader"; 19 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_class/locale.class.php: -------------------------------------------------------------------------------- 1 | PDF convertor 6 | * distributed under the LGPL License 7 | * 8 | * @author Laurent MINGUET 9 | * @version 4.03 10 | */ 11 | 12 | class HTML2PDF_locale 13 | { 14 | /** 15 | * code of the current used locale 16 | * @var string 17 | */ 18 | static protected $_code = null; 19 | 20 | /** 21 | * texts of the current used locale 22 | * @var array 23 | */ 24 | static protected $_list = array(); 25 | 26 | /** 27 | * directory where locale files are 28 | * @var string 29 | */ 30 | static protected $_directory = null; 31 | 32 | /** 33 | * load the locale 34 | * 35 | * @access public 36 | * @param string $code 37 | */ 38 | static public function load($code) 39 | { 40 | if (self::$_directory===null) { 41 | self::$_directory = dirname(dirname(__FILE__)).'/locale/'; 42 | } 43 | 44 | // must be in lower case 45 | $code = strtolower($code); 46 | 47 | // must be [a-z-0-9] 48 | if (!preg_match('/^([a-z0-9]+)$/isU', $code)) { 49 | throw new HTML2PDF_exception(0, 'invalid language code ['.self::$_code.']'); 50 | } 51 | 52 | // save the code 53 | self::$_code = $code; 54 | 55 | // get the name of the locale file 56 | $file = self::$_directory.self::$_code.'.csv'; 57 | 58 | // the file must exist 59 | if (!is_file($file)) { 60 | throw new HTML2PDF_exception(0, 'language code ['.self::$_code.'] unknown. You can create the translation file ['.$file.'] and send it to the webmaster of html2pdf in order to integrate it into a future release'); 61 | } 62 | 63 | // load the file 64 | self::$_list = array(); 65 | $handle = fopen($file, 'r'); 66 | while (!feof($handle)) { 67 | $line = fgetcsv($handle); 68 | if (count($line)!=2) continue; 69 | self::$_list[trim($line[0])] = trim($line[1]); 70 | } 71 | fclose($handle); 72 | } 73 | 74 | /** 75 | * clean the locale 76 | * 77 | * @access public static 78 | */ 79 | static public function clean() 80 | { 81 | self::$_code = null; 82 | self::$_list = array(); 83 | } 84 | 85 | /** 86 | * get a text 87 | * 88 | * @access public static 89 | * @param string $key 90 | * @return string 91 | */ 92 | static public function get($key, $default='######') 93 | { 94 | return (isset(self::$_list[$key]) ? self::$_list[$key] : $default); 95 | } 96 | } -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/cache/table_data_demo.txt: -------------------------------------------------------------------------------- 1 | Austria;Vienna;83859;8075 2 | Belgium;Brussels;30518;10192 3 | Denmark;Copenhagen;43094;5295 4 | Finland;Helsinki;304529;5147 5 | France;Paris;543965;58728 6 | Germany;Berlin;357022;82057 7 | Greece;Athens;131625;10511 8 | Ireland;Dublin;70723;3694 9 | Italy;Roma;301316;57563 10 | Luxembourg;Luxembourg;2586;424 11 | Netherlands;Amsterdam;41526;15654 12 | Portugal;Lisbon;91906;9957 13 | Spain;Madrid;504790;39348 14 | Sweden;Stockholm;410934;8839 15 | United Kingdom;London;243820;58862 16 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/config/lang/bra.php: -------------------------------------------------------------------------------- 1 | 51 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/config/lang/eng.php: -------------------------------------------------------------------------------- 1 | 51 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/config/lang/ger.php: -------------------------------------------------------------------------------- 1 | 51 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/config/lang/ita.php: -------------------------------------------------------------------------------- 1 | 51 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/doc/read_me.txt: -------------------------------------------------------------------------------- 1 | You can read the documentation at : http://www.tecnick.com/pagefiles/tcpdf/doc/index.html 2 | 3 | it has been removed because of the size of the package of HTML2PDF... -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/examples/read_me.txt: -------------------------------------------------------------------------------- 1 | You can read the documentation at : http://www.tecnick.com/public/code/cp_dpage.php?aiocp_dp=tcpdf_examples 2 | 3 | it has been removed because of the size of the package of HTML2PDF... -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/README.TXT: -------------------------------------------------------------------------------- 1 | This folder contains fonts descriptions for TCPDF. 2 | All fonts names must be in lowercase. 3 | Please read the documentation on subfolders for copyright, license and other information. -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/ZarBold.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/ZarBold.ctg.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/ZarBold.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/ZarBold.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/almohanad.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/almohanad.ctg.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/almohanad.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/almohanad.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/courier.php: -------------------------------------------------------------------------------- 1 | 600,1=>600,2=>600,3=>600,4=>600,5=>600,6=>600,7=>600,8=>600,9=>600, 6 | 10=>600,11=>600,12=>600,13=>600,14=>600,15=>600,16=>600,17=>600,18=>600,19=>600, 7 | 20=>600,21=>600,22=>600,23=>600,24=>600,25=>600,26=>600,27=>600,28=>600,29=>600, 8 | 30=>600,31=>600,32=>600,33=>600,34=>600,35=>600,36=>600,37=>600,38=>600,39=>600, 9 | 40=>600,41=>600,42=>600,43=>600,44=>600,45=>600,46=>600,47=>600,48=>600,49=>600, 10 | 50=>600,51=>600,52=>600,53=>600,54=>600,55=>600,56=>600,57=>600,58=>600,59=>600, 11 | 60=>600,61=>600,62=>600,63=>600,64=>600,65=>600,66=>600,67=>600,68=>600,69=>600, 12 | 70=>600,71=>600,72=>600,73=>600,74=>600,75=>600,76=>600,77=>600,78=>600,79=>600, 13 | 80=>600,81=>600,82=>600,83=>600,84=>600,85=>600,86=>600,87=>600,88=>600,89=>600, 14 | 90=>600,91=>600,92=>600,93=>600,94=>600,95=>600,96=>600,97=>600,98=>600,99=>600, 15 | 100=>600,101=>600,102=>600,103=>600,104=>600,105=>600,106=>600,107=>600,108=>600, 16 | 109=>600,110=>600,111=>600,112=>600,113=>600,114=>600,115=>600,116=>600,117=>600, 17 | 118=>600,119=>600,120=>600,121=>600,122=>600,123=>600,124=>600,125=>600,126=>600, 18 | 127=>600,128=>600,129=>600,130=>600,131=>600,132=>600,133=>600,134=>600,135=>600, 19 | 136=>600,137=>600,138=>600,139=>600,140=>600,141=>600,142=>600,143=>600,144=>600, 20 | 145=>600,146=>600,147=>600,148=>600,149=>600,150=>600,151=>600,152=>600,153=>600, 21 | 154=>600,155=>600,156=>600,157=>600,158=>600,159=>600,160=>600,161=>600,162=>600, 22 | 163=>600,164=>600,165=>600,166=>600,167=>600,168=>600,169=>600,170=>600,171=>600, 23 | 172=>600,173=>600,174=>600,175=>600,176=>600,177=>600,178=>600,179=>600,180=>600, 24 | 181=>600,182=>600,183=>600,184=>600,185=>600,186=>600,187=>600,188=>600,189=>600, 25 | 190=>600,191=>600,192=>600,193=>600,194=>600,195=>600,196=>600,197=>600,198=>600, 26 | 199=>600,200=>600,201=>600,202=>600,203=>600,204=>600,205=>600,206=>600,207=>600, 27 | 208=>600,209=>600,210=>600,211=>600,212=>600,213=>600,214=>600,215=>600,216=>600, 28 | 217=>600,218=>600,219=>600,220=>600,221=>600,222=>600,223=>600,224=>600,225=>600, 29 | 226=>600,227=>600,228=>600,229=>600,230=>600,231=>600,232=>600,233=>600,234=>600, 30 | 235=>600,236=>600,237=>600,238=>600,239=>600,240=>600,241=>600,242=>600,243=>600, 31 | 244=>600,245=>600,246=>600,247=>600,248=>600,249=>600,250=>600,251=>600,252=>600, 32 | 253=>600,254=>600,255=>600); 33 | ?> 34 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavu-fonts-ttf-2.30/AUTHORS: -------------------------------------------------------------------------------- 1 | abysta at yandex.ru 2 | Adrian Schroeter 3 | Andrey Valentinovich Panov 4 | Ben Laenen 5 | Besarion Gugushvili 6 | Bhikkhu Pesala 7 | Clayborne Arevalo 8 | Dafydd Harries 9 | Danilo Segan 10 | Davide Viti 11 | David Jez 12 | David Lawrence Ramsey 13 | Denis Jacquerye 14 | Dwayne Bailey 15 | Eugeniy Meshcheryakov 16 | Gee Fung Sit 17 | Heikki Lindroos 18 | James Cloos 19 | James Crippen 20 | John Karp 21 | Keenan Pepper 22 | Lars Naesbye Christensen 23 | Mashrab Kuvatov 24 | Max Berger 25 | Mederic Boquien 26 | Michael Everson 27 | Misu Moldovan 28 | Nguyen Thai Ngoc Duy 29 | Nicolas Mailhot 30 | Ognyan Kulev 31 | Ondrej Koala Vacha 32 | Peter Cernak 33 | Remy Oudompheng 34 | Roozbeh Pournader 35 | Sahak Petrosyan 36 | Sander Vesik 37 | Stepan Roh 38 | Stephen Hartke 39 | Steve Tinney 40 | Tavmjong Bah 41 | Tim May 42 | Valentin Stoykov 43 | Vasek Stodulka 44 | Wesley Transue 45 | 46 | $Id: AUTHORS 2344 2009-03-08 13:02:37Z moyogo $ 47 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavu-fonts-ttf-2.30/BUGS: -------------------------------------------------------------------------------- 1 | See http://dejavu.sourceforge.net/wiki/index.php/Bugs 2 | 3 | $Id: BUGS 80 2004-11-13 13:12:02Z src $ 4 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavu-fonts-ttf-2.30/README: -------------------------------------------------------------------------------- 1 | DejaVu fonts 2.30 (c)2004-2009 DejaVu fonts team 2 | ------------------------------------------------ 3 | 4 | The DejaVu fonts are a font family based on the Bitstream Vera Fonts 5 | (http://gnome.org/fonts/). Its purpose is to provide a wider range of 6 | characters (see status.txt for more information) while maintaining the 7 | original look and feel. 8 | 9 | DejaVu fonts are based on Bitstream Vera fonts version 1.10. 10 | 11 | Available fonts (Sans = sans serif, Mono = monospaced): 12 | 13 | DejaVu Sans Mono 14 | DejaVu Sans Mono Bold 15 | DejaVu Sans Mono Bold Oblique 16 | DejaVu Sans Mono Oblique 17 | DejaVu Sans 18 | DejaVu Sans Bold 19 | DejaVu Sans Bold Oblique 20 | DejaVu Sans Oblique 21 | DejaVu Sans ExtraLight (experimental) 22 | DejaVu Serif 23 | DejaVu Serif Bold 24 | DejaVu Serif Bold Italic (experimental) 25 | DejaVu Serif Italic (experimental) 26 | DejaVu Sans Condensed (experimental) 27 | DejaVu Sans Condensed Bold (experimental) 28 | DejaVu Sans Condensed Bold Oblique (experimental) 29 | DejaVu Sans Condensed Oblique (experimental) 30 | DejaVu Serif Condensed (experimental) 31 | DejaVu Serif Condensed Bold (experimental) 32 | DejaVu Serif Condensed Bold Italic (experimental) 33 | DejaVu Serif Condensed Italic (experimental) 34 | 35 | All fonts are also available as derivative called DejaVu LGC with support 36 | only for Latin, Greek and Cyrillic scripts. 37 | 38 | For license information see LICENSE. What's new is described in NEWS. Known 39 | bugs are in BUGS. All authors are mentioned in AUTHORS. 40 | 41 | Fonts are published in source form as SFD files (Spline Font Database from 42 | FontForge - http://fontforge.sf.net/) and in compiled form as TTF files 43 | (TrueType fonts). 44 | 45 | For more information go to http://dejavu.sourceforge.net/. 46 | 47 | Characters from Arev fonts, Copyright (c) 2006 by Tavmjong Bah: 48 | --------------------------- 49 | U+01BA, U+01BF, U+01F7, U+021C-U+021D, U+0220, U+0222-U+0223, 50 | U+02B9, U+02BA, U+02BD, U+02C2-U+02C5, U+02d4-U+02D5, 51 | U+02D7, U+02EC-U+02EE, U+0346-U+034E, U+0360, U+0362, 52 | U+03E2-03EF, U+0460-0463, U+0466-U+0486, U+0488-U+0489, U+04A8-U+04A9, 53 | U+0500-U+050F, U+2055-205E, U+20B0, U+20B2-U+20B3, U+2102, U+210D, U+210F, 54 | U+2111, U+2113, U+2115, U+2118-U+211A, U+211C-U+211D, U+2124, U+2135, 55 | U+213C-U+2140, U+2295-U+2298, U+2308-U+230B, U+26A2-U+26B1, U+2701-U+2704, 56 | U+2706-U+2709, U+270C-U+274B, U+2758-U+275A, U+2761-U+2775, U+2780-U+2794, 57 | U+2798-U+27AF, U+27B1-U+27BE, U+FB05-U+FB06 58 | 59 | $Id: README 2359 2009-08-27 14:13:16Z ben_laenen $ 60 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavusans.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavusans.ctg.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavusans.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavusans.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavusansb.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavusansb.ctg.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavusansb.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavusansb.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavusansbi.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavusansbi.ctg.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavusansbi.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavusansbi.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavusanscondensed.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavusanscondensed.ctg.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavusanscondensed.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavusanscondensed.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavusanscondensedb.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavusanscondensedb.ctg.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavusanscondensedb.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavusanscondensedb.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavusanscondensedbi.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavusanscondensedbi.ctg.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavusanscondensedbi.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavusanscondensedbi.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavusanscondensedi.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavusanscondensedi.ctg.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavusanscondensedi.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavusanscondensedi.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavusansi.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavusansi.ctg.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavusansi.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavusansi.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavusansmono.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavusansmono.ctg.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavusansmono.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavusansmono.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavusansmonob.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavusansmonob.ctg.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavusansmonob.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavusansmonob.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavusansmonobi.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavusansmonobi.ctg.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavusansmonobi.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavusansmonobi.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavusansmonoi.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavusansmonoi.ctg.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavusansmonoi.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavusansmonoi.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavuserif.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavuserif.ctg.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavuserif.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavuserif.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavuserifb.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavuserifb.ctg.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavuserifb.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavuserifb.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavuserifbi.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavuserifbi.ctg.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavuserifbi.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavuserifbi.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavuserifcondensed.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavuserifcondensed.ctg.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavuserifcondensed.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavuserifcondensed.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavuserifcondensedb.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavuserifcondensedb.ctg.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavuserifcondensedb.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavuserifcondensedb.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavuserifcondensedbi.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavuserifcondensedbi.ctg.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavuserifcondensedbi.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavuserifcondensedbi.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavuserifcondensedi.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavuserifcondensedi.ctg.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavuserifcondensedi.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavuserifcondensedi.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavuserifi.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavuserifi.ctg.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavuserifi.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/dejavuserifi.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/freefont-20090104/INSTALL: -------------------------------------------------------------------------------- 1 | Installing GNU FreeFont 2 | ======================= 3 | 4 | GNU FreeFont can be used in any modern operating system. 5 | 6 | This document explains how to install FreeFont on some common systems. 7 | 8 | UNIX/GNU/Linux/BSD Systems 9 | -------------------------- 10 | 11 | FreeFont works with any system using the free font rasterizer FreeType 12 | . 13 | 14 | * Debian GNU/Linux 15 | 16 | Users of Debian GNU/Linux system will probably want to use the Debian package, 17 | available from the Debian site, 18 | 19 | , 20 | 21 | or any of its mirrors. 22 | 23 | Install them by issuing the command 24 | apt-get install ttf-freefont 25 | 26 | 27 | * KDE local installation 28 | 29 | Users of KDE can install .ttf files on a per-user basis using the KDE 30 | Control Center module "kcmfontinst", which may appear in the menu as 31 | 32 | Settings -> System Administration -> Font Installer 33 | 34 | This is especially helpful for developers and testers. 35 | 36 | 37 | * Generic X-windows 38 | 39 | 1) Fetch the freefont-ttf.tar.gz package with Free UCS outline fonts 40 | in the TrueType format. 41 | 42 | 2) Unpack TrueType fonts into a suitable directory, 43 | e.g. /usr/local/share/fonts/default/TrueType/ 44 | 45 | 3) If you have chosen any other directory, make sure the directory you 46 | used to install the fonts is listed in the path searched by the X 47 | Font Server by editing the config file in /etc/X11/. 48 | 49 | In some systems, you list the directory in the item "catalogue=" 50 | in the file /etc/X11/fs/config. 51 | 52 | 4) Run ttmkfdir in the directory where you unpacked the fonts. 53 | 54 | 55 | Windows 95/98/NT/2000/XP; Vista 56 | ------------------------------- 57 | 58 | Note that in at least Vista, XP and 2000, the OpenType versions perform much 59 | better than, and are recommended over, the TrueType ones. 60 | 61 | * Vista: 62 | 1) From the Start menu, open Control Panels 63 | 2) Drag-n-drop font files onto Fonts control panel 64 | You may get a dialog saying 65 | "Windows needs your permission to continue" 66 | a) Click Continue 67 | 68 | * 95/98/NT: 69 | The font installation is similar to Vista. 70 | 71 | In order to use OpenType, users of Windows 95, 98 and NT 4.0 can 72 | install Adobe's 'Type Manager Light'. It is available for download 73 | without cost from Adobe's web site. 74 | 75 | Otherwise, use the TrueType versions. 76 | 77 | Mac OS X 78 | -------- 79 | 80 | Installing on Mac OS X consists of moving the .ttf files to either 81 | /Library/Fonts/ or ~/Library/Fonts/ 82 | depending on whether they should be available to all users on your system 83 | or just to yourself. 84 | 85 | -------------------------------------------------------------------------- 86 | $Id: INSTALL,v 1.7 2008/12/26 12:33:31 Stevan_White Exp $ 87 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/freemono.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/freemono.ctg.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/freemono.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/freemono.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/freemonob.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/freemonob.ctg.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/freemonob.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/freemonob.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/freemonobi.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/freemonobi.ctg.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/freemonobi.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/freemonobi.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/freemonoi.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/freemonoi.ctg.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/freemonoi.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/freemonoi.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/freesans.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/freesans.ctg.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/freesans.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/freesans.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/freesansb.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/freesansb.ctg.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/freesansb.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/freesansb.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/freesansbi.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/freesansbi.ctg.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/freesansbi.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/freesansbi.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/freesansi.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/freesansi.ctg.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/freesansi.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/freesansi.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/freeserif.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/freeserif.ctg.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/freeserif.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/freeserif.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/freeserifb.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/freeserifb.ctg.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/freeserifb.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/freeserifb.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/freeserifbi.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/freeserifbi.ctg.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/freeserifbi.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/freeserifbi.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/freeserifi.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/freeserifi.ctg.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/freeserifi.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/freeserifi.z -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/helvetica.php: -------------------------------------------------------------------------------- 1 | 278,1=>278,2=>278,3=>278,4=>278,5=>278,6=>278,7=>278,8=>278,9=>278, 6 | 10=>278,11=>278,12=>278,13=>278,14=>278,15=>278,16=>278,17=>278,18=>278,19=>278, 7 | 20=>278,21=>278,22=>278,23=>278,24=>278,25=>278,26=>278,27=>278,28=>278,29=>278, 8 | 30=>278,31=>278,32=>278,33=>278,34=>355,35=>556,36=>556,37=>889,38=>667,39=>191, 9 | 40=>333,41=>333,42=>389,43=>584,44=>278,45=>333,46=>278,47=>278,48=>556,49=>556, 10 | 50=>556,51=>556,52=>556,53=>556,54=>556,55=>556,56=>556,57=>556,58=>278,59=>278, 11 | 60=>584,61=>584,62=>584,63=>556,64=>1015,65=>667,66=>667,67=>722,68=>722,69=>667, 12 | 70=>611,71=>778,72=>722,73=>278,74=>500,75=>667,76=>556,77=>833,78=>722,79=>778, 13 | 80=>667,81=>778,82=>722,83=>667,84=>611,85=>722,86=>667,87=>944,88=>667,89=>667, 14 | 90=>611,91=>278,92=>278,93=>278,94=>469,95=>556,96=>333,97=>556,98=>556,99=>500, 15 | 100=>556,101=>556,102=>278,103=>556,104=>556,105=>222,106=>222,107=>500,108=>222, 16 | 109=>833,110=>556,111=>556,112=>556,113=>556,114=>333,115=>500,116=>278,117=>556, 17 | 118=>500,119=>722,120=>500,121=>500,122=>500,123=>334,124=>260,125=>334,126=>584, 18 | 127=>350,128=>556,129=>350,130=>222,131=>556,132=>333,133=>1000,134=>556,135=>556, 19 | 136=>333,137=>1000,138=>667,139=>333,140=>1000,141=>350,142=>611,143=>350,144=>350, 20 | 145=>222,146=>222,147=>333,148=>333,149=>350,150=>556,151=>1000,152=>333,153=>1000, 21 | 154=>500,155=>333,156=>944,157=>350,158=>500,159=>667,160=>278,161=>333,162=>556, 22 | 163=>556,164=>556,165=>556,166=>260,167=>556,168=>333,169=>737,170=>370,171=>556, 23 | 172=>584,173=>333,174=>737,175=>333,176=>400,177=>584,178=>333,179=>333,180=>333, 24 | 181=>556,182=>537,183=>278,184=>333,185=>333,186=>365,187=>556,188=>834,189=>834, 25 | 190=>834,191=>611,192=>667,193=>667,194=>667,195=>667,196=>667,197=>667,198=>1000, 26 | 199=>722,200=>667,201=>667,202=>667,203=>667,204=>278,205=>278,206=>278,207=>278, 27 | 208=>722,209=>722,210=>778,211=>778,212=>778,213=>778,214=>778,215=>584,216=>778, 28 | 217=>722,218=>722,219=>722,220=>722,221=>667,222=>667,223=>611,224=>556,225=>556, 29 | 226=>556,227=>556,228=>556,229=>556,230=>889,231=>500,232=>556,233=>556,234=>556, 30 | 235=>556,236=>278,237=>278,238=>278,239=>278,240=>556,241=>556,242=>556,243=>556, 31 | 244=>556,245=>556,246=>556,247=>584,248=>611,249=>556,250=>556,251=>556,252=>556, 32 | 253=>500,254=>556,255=>500); 33 | ?> 34 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/helveticab.php: -------------------------------------------------------------------------------- 1 | 278,1=>278,2=>278,3=>278,4=>278,5=>278,6=>278,7=>278,8=>278,9=>278, 6 | 10=>278,11=>278,12=>278,13=>278,14=>278,15=>278,16=>278,17=>278,18=>278,19=>278, 7 | 20=>278,21=>278,22=>278,23=>278,24=>278,25=>278,26=>278,27=>278,28=>278,29=>278, 8 | 30=>278,31=>278,32=>278,33=>333,34=>474,35=>556,36=>556,37=>889,38=>722,39=>238, 9 | 40=>333,41=>333,42=>389,43=>584,44=>278,45=>333,46=>278,47=>278,48=>556,49=>556, 10 | 50=>556,51=>556,52=>556,53=>556,54=>556,55=>556,56=>556,57=>556,58=>333,59=>333, 11 | 60=>584,61=>584,62=>584,63=>611,64=>975,65=>722,66=>722,67=>722,68=>722,69=>667, 12 | 70=>611,71=>778,72=>722,73=>278,74=>556,75=>722,76=>611,77=>833,78=>722,79=>778, 13 | 80=>667,81=>778,82=>722,83=>667,84=>611,85=>722,86=>667,87=>944,88=>667,89=>667, 14 | 90=>611,91=>333,92=>278,93=>333,94=>584,95=>556,96=>333,97=>556,98=>611,99=>556, 15 | 100=>611,101=>556,102=>333,103=>611,104=>611,105=>278,106=>278,107=>556,108=>278, 16 | 109=>889,110=>611,111=>611,112=>611,113=>611,114=>389,115=>556,116=>333,117=>611, 17 | 118=>556,119=>778,120=>556,121=>556,122=>500,123=>389,124=>280,125=>389,126=>584, 18 | 127=>350,128=>556,129=>350,130=>278,131=>556,132=>500,133=>1000,134=>556,135=>556, 19 | 136=>333,137=>1000,138=>667,139=>333,140=>1000,141=>350,142=>611,143=>350,144=>350, 20 | 145=>278,146=>278,147=>500,148=>500,149=>350,150=>556,151=>1000,152=>333,153=>1000, 21 | 154=>556,155=>333,156=>944,157=>350,158=>500,159=>667,160=>278,161=>333,162=>556, 22 | 163=>556,164=>556,165=>556,166=>280,167=>556,168=>333,169=>737,170=>370,171=>556, 23 | 172=>584,173=>333,174=>737,175=>333,176=>400,177=>584,178=>333,179=>333,180=>333, 24 | 181=>611,182=>556,183=>278,184=>333,185=>333,186=>365,187=>556,188=>834,189=>834, 25 | 190=>834,191=>611,192=>722,193=>722,194=>722,195=>722,196=>722,197=>722,198=>1000, 26 | 199=>722,200=>667,201=>667,202=>667,203=>667,204=>278,205=>278,206=>278,207=>278, 27 | 208=>722,209=>722,210=>778,211=>778,212=>778,213=>778,214=>778,215=>584,216=>778, 28 | 217=>722,218=>722,219=>722,220=>722,221=>667,222=>667,223=>611,224=>556,225=>556, 29 | 226=>556,227=>556,228=>556,229=>556,230=>889,231=>556,232=>556,233=>556,234=>556, 30 | 235=>556,236=>278,237=>278,238=>278,239=>278,240=>611,241=>611,242=>611,243=>611, 31 | 244=>611,245=>611,246=>611,247=>584,248=>611,249=>611,250=>611,251=>611,252=>611, 32 | 253=>556,254=>611,255=>556); 33 | ?> 34 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/helveticabi.php: -------------------------------------------------------------------------------- 1 | 278,1=>278,2=>278,3=>278,4=>278,5=>278,6=>278,7=>278,8=>278,9=>278, 6 | 10=>278,11=>278,12=>278,13=>278,14=>278,15=>278,16=>278,17=>278,18=>278,19=>278, 7 | 20=>278,21=>278,22=>278,23=>278,24=>278,25=>278,26=>278,27=>278,28=>278,29=>278, 8 | 30=>278,31=>278,32=>278,33=>333,34=>474,35=>556,36=>556,37=>889,38=>722,39=>238, 9 | 40=>333,41=>333,42=>389,43=>584,44=>278,45=>333,46=>278,47=>278,48=>556,49=>556, 10 | 50=>556,51=>556,52=>556,53=>556,54=>556,55=>556,56=>556,57=>556,58=>333,59=>333, 11 | 60=>584,61=>584,62=>584,63=>611,64=>975,65=>722,66=>722,67=>722,68=>722,69=>667, 12 | 70=>611,71=>778,72=>722,73=>278,74=>556,75=>722,76=>611,77=>833,78=>722,79=>778, 13 | 80=>667,81=>778,82=>722,83=>667,84=>611,85=>722,86=>667,87=>944,88=>667,89=>667, 14 | 90=>611,91=>333,92=>278,93=>333,94=>584,95=>556,96=>333,97=>556,98=>611,99=>556, 15 | 100=>611,101=>556,102=>333,103=>611,104=>611,105=>278,106=>278,107=>556,108=>278, 16 | 109=>889,110=>611,111=>611,112=>611,113=>611,114=>389,115=>556,116=>333,117=>611, 17 | 118=>556,119=>778,120=>556,121=>556,122=>500,123=>389,124=>280,125=>389,126=>584, 18 | 127=>350,128=>556,129=>350,130=>278,131=>556,132=>500,133=>1000,134=>556,135=>556, 19 | 136=>333,137=>1000,138=>667,139=>333,140=>1000,141=>350,142=>611,143=>350,144=>350, 20 | 145=>278,146=>278,147=>500,148=>500,149=>350,150=>556,151=>1000,152=>333,153=>1000, 21 | 154=>556,155=>333,156=>944,157=>350,158=>500,159=>667,160=>278,161=>333,162=>556, 22 | 163=>556,164=>556,165=>556,166=>280,167=>556,168=>333,169=>737,170=>370,171=>556, 23 | 172=>584,173=>333,174=>737,175=>333,176=>400,177=>584,178=>333,179=>333,180=>333, 24 | 181=>611,182=>556,183=>278,184=>333,185=>333,186=>365,187=>556,188=>834,189=>834, 25 | 190=>834,191=>611,192=>722,193=>722,194=>722,195=>722,196=>722,197=>722,198=>1000, 26 | 199=>722,200=>667,201=>667,202=>667,203=>667,204=>278,205=>278,206=>278,207=>278, 27 | 208=>722,209=>722,210=>778,211=>778,212=>778,213=>778,214=>778,215=>584,216=>778, 28 | 217=>722,218=>722,219=>722,220=>722,221=>667,222=>667,223=>611,224=>556,225=>556, 29 | 226=>556,227=>556,228=>556,229=>556,230=>889,231=>556,232=>556,233=>556,234=>556, 30 | 235=>556,236=>278,237=>278,238=>278,239=>278,240=>611,241=>611,242=>611,243=>611, 31 | 244=>611,245=>611,246=>611,247=>584,248=>611,249=>611,250=>611,251=>611,252=>611, 32 | 253=>556,254=>611,255=>556); 33 | ?> 34 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/helveticai.php: -------------------------------------------------------------------------------- 1 | 278,1=>278,2=>278,3=>278,4=>278,5=>278,6=>278,7=>278,8=>278,9=>278, 6 | 10=>278,11=>278,12=>278,13=>278,14=>278,15=>278,16=>278,17=>278,18=>278,19=>278, 7 | 20=>278,21=>278,22=>278,23=>278,24=>278,25=>278,26=>278,27=>278,28=>278,29=>278, 8 | 30=>278,31=>278,32=>278,33=>278,34=>355,35=>556,36=>556,37=>889,38=>667,39=>191, 9 | 40=>333,41=>333,42=>389,43=>584,44=>278,45=>333,46=>278,47=>278,48=>556,49=>556, 10 | 50=>556,51=>556,52=>556,53=>556,54=>556,55=>556,56=>556,57=>556,58=>278,59=>278, 11 | 60=>584,61=>584,62=>584,63=>556,64=>1015,65=>667,66=>667,67=>722,68=>722,69=>667, 12 | 70=>611,71=>778,72=>722,73=>278,74=>500,75=>667,76=>556,77=>833,78=>722,79=>778, 13 | 80=>667,81=>778,82=>722,83=>667,84=>611,85=>722,86=>667,87=>944,88=>667,89=>667, 14 | 90=>611,91=>278,92=>278,93=>278,94=>469,95=>556,96=>333,97=>556,98=>556,99=>500, 15 | 100=>556,101=>556,102=>278,103=>556,104=>556,105=>222,106=>222,107=>500,108=>222, 16 | 109=>833,110=>556,111=>556,112=>556,113=>556,114=>333,115=>500,116=>278,117=>556, 17 | 118=>500,119=>722,120=>500,121=>500,122=>500,123=>334,124=>260,125=>334,126=>584, 18 | 127=>350,128=>556,129=>350,130=>222,131=>556,132=>333,133=>1000,134=>556,135=>556, 19 | 136=>333,137=>1000,138=>667,139=>333,140=>1000,141=>350,142=>611,143=>350,144=>350, 20 | 145=>222,146=>222,147=>333,148=>333,149=>350,150=>556,151=>1000,152=>333,153=>1000, 21 | 154=>500,155=>333,156=>944,157=>350,158=>500,159=>667,160=>278,161=>333,162=>556, 22 | 163=>556,164=>556,165=>556,166=>260,167=>556,168=>333,169=>737,170=>370,171=>556, 23 | 172=>584,173=>333,174=>737,175=>333,176=>400,177=>584,178=>333,179=>333,180=>333, 24 | 181=>556,182=>537,183=>278,184=>333,185=>333,186=>365,187=>556,188=>834,189=>834, 25 | 190=>834,191=>611,192=>667,193=>667,194=>667,195=>667,196=>667,197=>667,198=>1000, 26 | 199=>722,200=>667,201=>667,202=>667,203=>667,204=>278,205=>278,206=>278,207=>278, 27 | 208=>722,209=>722,210=>778,211=>778,212=>778,213=>778,214=>778,215=>584,216=>778, 28 | 217=>722,218=>722,219=>722,220=>722,221=>667,222=>667,223=>611,224=>556,225=>556, 29 | 226=>556,227=>556,228=>556,229=>556,230=>889,231=>500,232=>556,233=>556,234=>556, 30 | 235=>556,236=>278,237=>278,238=>278,239=>278,240=>556,241=>556,242=>556,243=>556, 31 | 244=>556,245=>556,246=>556,247=>584,248=>611,249=>556,250=>556,251=>556,252=>556, 32 | 253=>500,254=>556,255=>500); 33 | ?> 34 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/hysmyeongjostdmedium.php: -------------------------------------------------------------------------------- 1 | 880, 7 | 'Descent' => -120, 8 | 'CapHeight' => 720, 9 | 'Flags' => 6, 10 | 'FontBBox' => '[-28 -148 1001 880]', 11 | 'ItalicAngle' => 0, 12 | 'StemV' => 60, 13 | 'Style' => '<< /Panose <000000000600000000000000> >>', 14 | ); 15 | $cidinfo = array( 16 | 'Registry' => 'Adobe', 17 | 'Ordering' => 'Korea1', 18 | 'Supplement' => '1', 19 | ); 20 | $enc = 'UniKS-UCS2-H'; 21 | 22 | // underline position, needs checking: 23 | $up = -130; 24 | $ut = 40; 25 | 26 | $dw = 1000; 27 | $cw = array( 28 | 32 => 333, 33 => 416, 34 => 416, 35 => 833, 36 => 625, 37 => 916, 38 => 833, 39 => 250, 40 => 500, 41 => 500, 29 | 42 => 500, 43 => 833, 44 => 291, 45 => 450, 46 => 291, 47 => 375, 48 => 625, 49 => 625, 50 => 625, 51 => 625, 30 | 52 => 625, 53 => 625, 54 => 625, 55 => 625, 56 => 625, 57 => 625, 58 => 333, 59 => 333, 60 => 833, 61 => 833, 31 | 62 => 916, 63 => 500, 64 => 1000, 65 => 791, 66 => 708, 67 => 708, 68 => 750, 69 => 708, 70 => 666, 71 => 750, 32 | 72 => 791, 73 => 375, 74 => 500, 75 => 791, 76 => 666, 77 => 916, 78 => 791, 79 => 750, 80 => 666, 81 => 750, 33 | 82 => 708, 83 => 666, 84 => 791, 85 => 791, 86 => 750, 87 => 1000, 88 => 708, 89 => 708, 90 => 666, 91 => 500, 34 | 92 => 375, 93 => 500, 94 => 500, 95 => 500, 96 => 333, 97 => 541, 98 => 583, 99 => 541, 100 => 583, 101 => 583, 35 | 102 => 375, 103 => 583, 104 => 583, 105 => 291, 106 => 333, 107 => 583, 108 => 291, 109 => 875, 110 => 583, 111 => 583, 36 | 112 => 583, 113 => 583, 114 => 458, 115 => 541, 116 => 375, 117 => 583, 118 => 583, 119 => 833, 120 => 625, 121 => 625, 37 | 122 => 500, 123 => 583, 124 => 583, 125 => 583, 126 => 750, 38 | ); 39 | $_cr = array( 40 | //array(97, 97, 500), 41 | array(8094, 8190, 500) 42 | ); 43 | foreach($_cr as $_r) { 44 | for($i = $_r[0]; $i <= $_r[1]; $i++) { 45 | $cw[$i+31] = $_r[2]; 46 | } 47 | } 48 | ?> 49 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/kozminproregular.php: -------------------------------------------------------------------------------- 1 | 880, 7 | 'Descent' => -120, 8 | 'CapHeight' => 740, 9 | 'Flags' => 6, 10 | 'FontBBox' => '[-195 -272 1110 1075]', 11 | 'ItalicAngle' => 0, 12 | 'StemV' => 86, 13 | 'XHeight' => 502, 14 | ); 15 | $cidinfo = array( 16 | 'Registry' => 'Adobe', 17 | 'Ordering' => 'Japan1', 18 | 'Supplement' => '4', 19 | ); 20 | $enc = 'UniJIS-UCS2-H'; 21 | 22 | $up = -75; 23 | $ut = 50; 24 | 25 | $dw = 1000; 26 | $cw = array( 27 | 32 => 278, 33 => 299, 34 => 353, 35 => 614, 36 => 614, 37 => 721, 38 => 735, 39 => 216, 40 => 323, 41 => 323, 28 | 42 => 449, 43 => 529, 44 => 219, 45 => 306, 46 => 219, 47 => 453, 48 => 614, 49 => 614, 50 => 614, 51 => 614, 29 | 52 => 614, 53 => 614, 54 => 614, 55 => 614, 56 => 614, 57 => 614, 58 => 219, 59 => 219, 60 => 529, 61 => 529, 30 | 62 => 529, 63 => 486, 64 => 744, 65 => 646, 66 => 604, 67 => 617, 68 => 681, 69 => 567, 70 => 537, 71 => 647, 31 | 72 => 738, 73 => 320, 74 => 433, 75 => 637, 76 => 566, 77 => 904, 78 => 710, 79 => 716, 80 => 605, 81 => 716, 32 | 82 => 623, 83 => 517, 84 => 601, 85 => 690, 86 => 668, 87 => 990, 88 => 681, 89 => 634, 90 => 578, 91 => 316, 33 | 92 => 614, 93 => 316, 94 => 529, 95 => 500, 96 => 387, 97 => 509, 98 => 566, 99 => 478, 100 => 565, 101 => 503, 34 | 102 => 337, 103 => 549, 104 => 580, 105 => 275, 106 => 266, 107 => 544, 108 => 276, 109 => 854, 110 => 579, 111 => 550, 35 | 112 => 578, 113 => 566, 114 => 410, 115 => 444, 116 => 340, 117 => 575, 118 => 512, 119 => 760, 120 => 503, 121 => 529, 36 | 122 => 453, 123 => 326, 124 => 380, 125 => 326, 126 => 387, 127 => 216, 128 => 453, 129 => 216, 130 => 380, 131 => 529, 37 | 132 => 299, 133 => 614, 134 => 614, 135 => 265, 136 => 614, 137 => 475, 138 => 614, 139 => 353, 140 => 451, 141 => 291, 38 | 142 => 291, 143 => 588, 144 => 589, 145 => 500, 146 => 476, 147 => 476, 148 => 219, 149 => 494, 150 => 452, 151 => 216, 39 | 152 => 353, 153 => 353, 154 => 451, 156 => 1075, 157 => 486, 158 => 387, 159 => 387, 160 => 387, 161 => 387, 40 | 162 => 387, 163 => 387, 164 => 387, 165 => 387, 166 => 387, 167 => 387, 168 => 387, 170 => 880, 171 => 448, 41 | 172 => 566, 173 => 716, 174 => 903, 175 => 460, 176 => 805, 177 => 275, 178 => 276, 179 => 550, 180 => 886, 181 => 582, 42 | 182 => 529, 183 => 738, 184 => 529, 185 => 738, 186 => 357, 187 => 529, 188 => 406, 189 => 406, 190 => 575, 191 => 406, 43 | 192 => 934, 193 => 934, 194 => 934, 195 => 646, 196 => 646, 197 => 646, 198 => 646, 199 => 646, 200 => 646, 201 => 617, 44 | 202 => 567, 203 => 567, 204 => 567, 205 => 567, 206 => 320, 207 => 320, 208 => 320, 209 => 320, 210 => 681, 211 => 710, 45 | 212 => 716, 213 => 716, 214 => 716, 215 => 716, 216 => 716, 217 => 529, 218 => 690, 219 => 690, 220 => 690, 221 => 690, 46 | 222 => 634, 223 => 605, 224 => 509, 225 => 509, 226 => 509, 227 => 509, 228 => 509, 229 => 509, 230 => 478, 231 => 503, 47 | 232 => 503, 233 => 503, 234 => 503, 235 => 275, 236 => 275, 237 => 275, 238 => 275, 239 => 550, 240 => 579, 241 => 550, 48 | 242 => 550, 243 => 550, 244 => 550, 245 => 550, 246 => 529, 247 => 575, 248 => 575, 249 => 575, 250 => 575, 251 => 529, 49 | 252 => 578, 253 => 529, 254 => 517, 255 => 634, 256 => 578, 257 => 445, 258 => 444, 259 => 842, 260 => 453, 261 => 614, 50 | ); 51 | $_cr = array( 52 | array(231, 632, 500), // half-width 53 | array(8718, 8718, 500), 54 | array(9738, 9757, 250), // quarter-width 55 | array(9758, 9778, 333), // third-width 56 | array(12063, 12087, 500), 57 | ); 58 | foreach($_cr as $_r) { 59 | for($i = $_r[0]; $i <= $_r[1]; $i++) { 60 | $cw[$i+31] = $_r[2]; 61 | } 62 | } 63 | ?> 64 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/msungstdlight.php: -------------------------------------------------------------------------------- 1 | 880, 7 | 'Descent' => -120, 8 | 'CapHeight' => 880, 9 | 'Flags' => 6, 10 | 'FontBBox' => '[-160 -249 1015 1071]', 11 | 'ItalicAngle' => 0, 12 | 'StemV' => 93, 13 | ); 14 | $cidinfo = array( 15 | 'Registry' => 'Adobe', 16 | 'Ordering' => 'CNS1', 17 | 'Supplement' => '3', 18 | ); 19 | $enc = 'UniCNS-UCS2-H'; 20 | 21 | $up = -130; 22 | $ut = 40; 23 | 24 | $dw = 1000; 25 | $cw = array( 26 | 32 => 250, 33 => 250, 34 => 408, 35 => 668, 36 => 490, 37 => 875, 38 => 698, 39 => 250, 40 => 240, 41 => 240, 27 | 42 => 417, 43 => 667, 44 => 250, 45 => 313, 46 => 250, 47 => 520, 48 => 500, 49 => 500, 50 => 500, 51 => 500, 28 | 52 => 500, 53 => 500, 54 => 500, 55 => 500, 56 => 500, 57 => 500, 58 => 250, 59 => 250, 60 => 667, 61 => 667, 29 | 62 => 667, 63 => 396, 64 => 921, 65 => 677, 66 => 615, 67 => 719, 68 => 760, 69 => 625, 70 => 552, 71 => 771, 30 | 72 => 802, 73 => 354, 74 => 354, 75 => 781, 76 => 604, 77 => 927, 78 => 750, 79 => 823, 80 => 563, 81 => 823, 31 | 82 => 729, 83 => 542, 84 => 698, 85 => 771, 86 => 729, 87 => 948, 88 => 771, 89 => 677, 90 => 635, 91 => 344, 32 | 92 => 520, 93 => 344, 94 => 469, 95 => 500, 96 => 250, 97 => 469, 98 => 521, 99 => 427, 100 => 521, 101 => 438, 33 | 102 => 271, 103 => 469, 104 => 531, 105 => 250, 106 => 250, 107 => 458, 108 => 240, 109 => 802, 110 => 531, 111 => 500, 34 | 112 => 521, 113 => 521, 114 => 365, 115 => 333, 116 => 292, 117 => 521, 118 => 458, 119 => 677, 120 => 479, 121 => 458, 35 | 122 => 427, 123 => 480, 124 => 496, 125 => 480, 126 => 667, 36 | 17601 => 500, 37 | ); 38 | ?> 39 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/stsongstdlight.php: -------------------------------------------------------------------------------- 1 | 752, 7 | 'Descent' => -271, 8 | 'CapHeight' => 737, 9 | 'Flags' => 6, 10 | 'FontBBox' => '[-25 -254 1000 880]', 11 | 'ItalicAngle' => 0, 12 | 'StemV' => 58, 13 | 'Style' => '<< /Panose <000000000400000000000000> >>', 14 | ); 15 | $cidinfo = array( 16 | 'Registry' => 'Adobe', 17 | 'Ordering' => 'GB1', 18 | 'Supplement' => '2', 19 | ); 20 | $enc = 'UniGB-UCS2-H'; 21 | 22 | // underline position, needs checking: 23 | $up = -130; 24 | $ut = 40; 25 | 26 | $dw = 1000; 27 | $cw = array( 28 | 32 => 207, 33 => 270, 34 => 342, 35 => 467, 36 => 462, 37 => 797, 38 => 710, 39 => 239, 40 => 374, 41 => 374, 29 | 42 => 423, 43 => 605, 44 => 238, 45 => 375, 46 => 238, 47 => 334, 48 => 462, 49 => 462, 50 => 462, 51 => 462, 30 | 52 => 462, 53 => 462, 54 => 462, 55 => 462, 56 => 462, 57 => 462, 58 => 238, 59 => 238, 60 => 605, 61 => 605, 31 | 62 => 605, 63 => 344, 64 => 748, 65 => 684, 66 => 560, 67 => 695, 68 => 739, 69 => 563, 70 => 511, 71 => 729, 32 | 72 => 793, 73 => 318, 74 => 312, 75 => 666, 76 => 526, 77 => 896, 78 => 758, 79 => 772, 80 => 544, 81 => 772, 33 | 82 => 628, 83 => 465, 84 => 607, 85 => 753, 86 => 711, 87 => 972, 88 => 647, 89 => 620, 90 => 607, 91 => 374, 34 | 92 => 333, 93 => 374, 94 => 606, 95 => 500, 96 => 239, 97 => 417, 98 => 503, 99 => 427, 100 => 529, 101 => 415, 35 | 102 => 264, 103 => 444, 104 => 518, 105 => 241, 106 => 230, 107 => 495, 108 => 228, 109 => 793, 110 => 527, 111 => 524, 36 | 112 => 524, 113 => 504, 114 => 338, 115 => 336, 116 => 277, 117 => 517, 118 => 450, 119 => 652, 120 => 466, 121 => 452, 37 | 122 => 407, 123 => 370, 124 => 258, 125 => 370, 126 => 605, 38 | ); 39 | ?> 40 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/symbol.php: -------------------------------------------------------------------------------- 1 | 250,1=>250,2=>250,3=>250,4=>250,5=>250,6=>250,7=>250,8=>250,9=>250, 6 | 10=>250,11=>250,12=>250,13=>250,14=>250,15=>250,16=>250,17=>250,18=>250,19=>250, 7 | 20=>250,21=>250,22=>250,23=>250,24=>250,25=>250,26=>250,27=>250,28=>250,29=>250, 8 | 30=>250,31=>250,32=>250,33=>333,34=>713,35=>500,36=>549,37=>833,38=>778,39=>439, 9 | 40=>333,41=>333,42=>500,43=>549,44=>250,45=>549,46=>250,47=>278,48=>500,49=>500, 10 | 50=>500,51=>500,52=>500,53=>500,54=>500,55=>500,56=>500,57=>500,58=>278,59=>278, 11 | 60=>549,61=>549,62=>549,63=>444,64=>549,65=>722,66=>667,67=>722,68=>612,69=>611, 12 | 70=>763,71=>603,72=>722,73=>333,74=>631,75=>722,76=>686,77=>889,78=>722,79=>722, 13 | 80=>768,81=>741,82=>556,83=>592,84=>611,85=>690,86=>439,87=>768,88=>645,89=>795, 14 | 90=>611,91=>333,92=>863,93=>333,94=>658,95=>500,96=>500,97=>631,98=>549,99=>549, 15 | 100=>494,101=>439,102=>521,103=>411,104=>603,105=>329,106=>603,107=>549,108=>549, 16 | 109=>576,110=>521,111=>549,112=>549,113=>521,114=>549,115=>603,116=>439,117=>576, 17 | 118=>713,119=>686,120=>493,121=>686,122=>494,123=>480,124=>200,125=>480,126=>549, 18 | 127=>0,128=>0,129=>0,130=>0,131=>0,132=>0,133=>0,134=>0,135=>0,136=>0,137=>0, 19 | 138=>0,139=>0,140=>0,141=>0,142=>0,143=>0,144=>0,145=>0,146=>0,147=>0,148=>0, 20 | 149=>0,150=>0,151=>0,152=>0,153=>0,154=>0,155=>0,156=>0,157=>0,158=>0,159=>0, 21 | 160=>750,161=>620,162=>247,163=>549,164=>167,165=>713,166=>500,167=>753,168=>753, 22 | 169=>753,170=>753,171=>1042,172=>987,173=>603,174=>987,175=>603,176=>400,177=>549, 23 | 178=>411,179=>549,180=>549,181=>713,182=>494,183=>460,184=>549,185=>549,186=>549, 24 | 187=>549,188=>1000,189=>603,190=>1000,191=>658,192=>823,193=>686,194=>795,195=>987, 25 | 196=>768,197=>768,198=>823,199=>768,200=>768,201=>713,202=>713,203=>713,204=>713, 26 | 205=>713,206=>713,207=>713,208=>768,209=>713,210=>790,211=>790,212=>890,213=>823, 27 | 214=>549,215=>250,216=>713,217=>603,218=>603,219=>1042,220=>987,221=>603,222=>987, 28 | 223=>603,224=>494,225=>329,226=>790,227=>790,228=>786,229=>713,230=>384,231=>384, 29 | 232=>384,233=>384,234=>384,235=>384,236=>494,237=>494,238=>494,239=>494,240=>0, 30 | 241=>329,242=>274,243=>686,244=>686,245=>686,246=>384,247=>384,248=>384,249=>384, 31 | 250=>384,251=>384,252=>494,253=>494,254=>494,255=>0); 32 | ?> 33 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/times.php: -------------------------------------------------------------------------------- 1 | 250,1=>250,2=>250,3=>250,4=>250,5=>250,6=>250,7=>250,8=>250,9=>250, 6 | 10=>250,11=>250,12=>250,13=>250,14=>250,15=>250,16=>250,17=>250,18=>250,19=>250, 7 | 20=>250,21=>250,22=>250,23=>250,24=>250,25=>250,26=>250,27=>250,28=>250,29=>250, 8 | 30=>250,31=>250,32=>250,33=>333,34=>408,35=>500,36=>500,37=>833,38=>778,39=>180, 9 | 40=>333,41=>333,42=>500,43=>564,44=>250,45=>333,46=>250,47=>278,48=>500,49=>500, 10 | 50=>500,51=>500,52=>500,53=>500,54=>500,55=>500,56=>500,57=>500,58=>278,59=>278, 11 | 60=>564,61=>564,62=>564,63=>444,64=>921,65=>722,66=>667,67=>667,68=>722,69=>611, 12 | 70=>556,71=>722,72=>722,73=>333,74=>389,75=>722,76=>611,77=>889,78=>722,79=>722, 13 | 80=>556,81=>722,82=>667,83=>556,84=>611,85=>722,86=>722,87=>944,88=>722,89=>722, 14 | 90=>611,91=>333,92=>278,93=>333,94=>469,95=>500,96=>333,97=>444,98=>500,99=>444, 15 | 100=>500,101=>444,102=>333,103=>500,104=>500,105=>278,106=>278,107=>500,108=>278, 16 | 109=>778,110=>500,111=>500,112=>500,113=>500,114=>333,115=>389,116=>278,117=>500, 17 | 118=>500,119=>722,120=>500,121=>500,122=>444,123=>480,124=>200,125=>480,126=>541, 18 | 127=>350,128=>500,129=>350,130=>333,131=>500,132=>444,133=>1000,134=>500,135=>500, 19 | 136=>333,137=>1000,138=>556,139=>333,140=>889,141=>350,142=>611,143=>350,144=>350, 20 | 145=>333,146=>333,147=>444,148=>444,149=>350,150=>500,151=>1000,152=>333,153=>980, 21 | 154=>389,155=>333,156=>722,157=>350,158=>444,159=>722,160=>250,161=>333,162=>500, 22 | 163=>500,164=>500,165=>500,166=>200,167=>500,168=>333,169=>760,170=>276,171=>500, 23 | 172=>564,173=>333,174=>760,175=>333,176=>400,177=>564,178=>300,179=>300,180=>333, 24 | 181=>500,182=>453,183=>250,184=>333,185=>300,186=>310,187=>500,188=>750,189=>750, 25 | 190=>750,191=>444,192=>722,193=>722,194=>722,195=>722,196=>722,197=>722,198=>889, 26 | 199=>667,200=>611,201=>611,202=>611,203=>611,204=>333,205=>333,206=>333,207=>333, 27 | 208=>722,209=>722,210=>722,211=>722,212=>722,213=>722,214=>722,215=>564,216=>722, 28 | 217=>722,218=>722,219=>722,220=>722,221=>722,222=>556,223=>500,224=>444,225=>444, 29 | 226=>444,227=>444,228=>444,229=>444,230=>667,231=>444,232=>444,233=>444,234=>444, 30 | 235=>444,236=>278,237=>278,238=>278,239=>278,240=>500,241=>500,242=>500,243=>500, 31 | 244=>500,245=>500,246=>500,247=>564,248=>500,249=>500,250=>500,251=>500,252=>500, 32 | 253=>500,254=>500,255=>500); 33 | ?> 34 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/timesb.php: -------------------------------------------------------------------------------- 1 | 250,1=>250,2=>250,3=>250,4=>250,5=>250,6=>250,7=>250,8=>250,9=>250, 6 | 10=>250,11=>250,12=>250,13=>250,14=>250,15=>250,16=>250,17=>250,18=>250,19=>250, 7 | 20=>250,21=>250,22=>250,23=>250,24=>250,25=>250,26=>250,27=>250,28=>250,29=>250, 8 | 30=>250,31=>250,32=>250,33=>333,34=>555,35=>500,36=>500,37=>1000,38=>833,39=>278, 9 | 40=>333,41=>333,42=>500,43=>570,44=>250,45=>333,46=>250,47=>278,48=>500,49=>500, 10 | 50=>500,51=>500,52=>500,53=>500,54=>500,55=>500,56=>500,57=>500,58=>333,59=>333, 11 | 60=>570,61=>570,62=>570,63=>500,64=>930,65=>722,66=>667,67=>722,68=>722,69=>667, 12 | 70=>611,71=>778,72=>778,73=>389,74=>500,75=>778,76=>667,77=>944,78=>722,79=>778, 13 | 80=>611,81=>778,82=>722,83=>556,84=>667,85=>722,86=>722,87=>1000,88=>722,89=>722, 14 | 90=>667,91=>333,92=>278,93=>333,94=>581,95=>500,96=>333,97=>500,98=>556,99=>444, 15 | 100=>556,101=>444,102=>333,103=>500,104=>556,105=>278,106=>333,107=>556,108=>278, 16 | 109=>833,110=>556,111=>500,112=>556,113=>556,114=>444,115=>389,116=>333,117=>556, 17 | 118=>500,119=>722,120=>500,121=>500,122=>444,123=>394,124=>220,125=>394,126=>520, 18 | 127=>350,128=>500,129=>350,130=>333,131=>500,132=>500,133=>1000,134=>500,135=>500, 19 | 136=>333,137=>1000,138=>556,139=>333,140=>1000,141=>350,142=>667,143=>350,144=>350, 20 | 145=>333,146=>333,147=>500,148=>500,149=>350,150=>500,151=>1000,152=>333,153=>1000, 21 | 154=>389,155=>333,156=>722,157=>350,158=>444,159=>722,160=>250,161=>333,162=>500, 22 | 163=>500,164=>500,165=>500,166=>220,167=>500,168=>333,169=>747,170=>300,171=>500, 23 | 172=>570,173=>333,174=>747,175=>333,176=>400,177=>570,178=>300,179=>300,180=>333, 24 | 181=>556,182=>540,183=>250,184=>333,185=>300,186=>330,187=>500,188=>750,189=>750, 25 | 190=>750,191=>500,192=>722,193=>722,194=>722,195=>722,196=>722,197=>722,198=>1000, 26 | 199=>722,200=>667,201=>667,202=>667,203=>667,204=>389,205=>389,206=>389,207=>389, 27 | 208=>722,209=>722,210=>778,211=>778,212=>778,213=>778,214=>778,215=>570,216=>778, 28 | 217=>722,218=>722,219=>722,220=>722,221=>722,222=>611,223=>556,224=>500,225=>500, 29 | 226=>500,227=>500,228=>500,229=>500,230=>722,231=>444,232=>444,233=>444,234=>444, 30 | 235=>444,236=>278,237=>278,238=>278,239=>278,240=>500,241=>556,242=>500,243=>500, 31 | 244=>500,245=>500,246=>500,247=>570,248=>500,249=>556,250=>556,251=>556,252=>556, 32 | 253=>500,254=>556,255=>500); 33 | ?> 34 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/timesbi.php: -------------------------------------------------------------------------------- 1 | 250,1=>250,2=>250,3=>250,4=>250,5=>250,6=>250,7=>250,8=>250,9=>250, 6 | 10=>250,11=>250,12=>250,13=>250,14=>250,15=>250,16=>250,17=>250,18=>250,19=>250, 7 | 20=>250,21=>250,22=>250,23=>250,24=>250,25=>250,26=>250,27=>250,28=>250,29=>250, 8 | 30=>250,31=>250,32=>250,33=>389,34=>555,35=>500,36=>500,37=>833,38=>778,39=>278, 9 | 40=>333,41=>333,42=>500,43=>570,44=>250,45=>333,46=>250,47=>278,48=>500,49=>500, 10 | 50=>500,51=>500,52=>500,53=>500,54=>500,55=>500,56=>500,57=>500,58=>333,59=>333, 11 | 60=>570,61=>570,62=>570,63=>500,64=>832,65=>667,66=>667,67=>667,68=>722,69=>667, 12 | 70=>667,71=>722,72=>778,73=>389,74=>500,75=>667,76=>611,77=>889,78=>722,79=>722, 13 | 80=>611,81=>722,82=>667,83=>556,84=>611,85=>722,86=>667,87=>889,88=>667,89=>611, 14 | 90=>611,91=>333,92=>278,93=>333,94=>570,95=>500,96=>333,97=>500,98=>500,99=>444, 15 | 100=>500,101=>444,102=>333,103=>500,104=>556,105=>278,106=>278,107=>500,108=>278, 16 | 109=>778,110=>556,111=>500,112=>500,113=>500,114=>389,115=>389,116=>278,117=>556, 17 | 118=>444,119=>667,120=>500,121=>444,122=>389,123=>348,124=>220,125=>348,126=>570, 18 | 127=>350,128=>500,129=>350,130=>333,131=>500,132=>500,133=>1000,134=>500,135=>500, 19 | 136=>333,137=>1000,138=>556,139=>333,140=>944,141=>350,142=>611,143=>350,144=>350, 20 | 145=>333,146=>333,147=>500,148=>500,149=>350,150=>500,151=>1000,152=>333,153=>1000, 21 | 154=>389,155=>333,156=>722,157=>350,158=>389,159=>611,160=>250,161=>389,162=>500, 22 | 163=>500,164=>500,165=>500,166=>220,167=>500,168=>333,169=>747,170=>266,171=>500, 23 | 172=>606,173=>333,174=>747,175=>333,176=>400,177=>570,178=>300,179=>300,180=>333, 24 | 181=>576,182=>500,183=>250,184=>333,185=>300,186=>300,187=>500,188=>750,189=>750, 25 | 190=>750,191=>500,192=>667,193=>667,194=>667,195=>667,196=>667,197=>667,198=>944, 26 | 199=>667,200=>667,201=>667,202=>667,203=>667,204=>389,205=>389,206=>389,207=>389, 27 | 208=>722,209=>722,210=>722,211=>722,212=>722,213=>722,214=>722,215=>570,216=>722, 28 | 217=>722,218=>722,219=>722,220=>722,221=>611,222=>611,223=>500,224=>500,225=>500, 29 | 226=>500,227=>500,228=>500,229=>500,230=>722,231=>444,232=>444,233=>444,234=>444, 30 | 235=>444,236=>278,237=>278,238=>278,239=>278,240=>500,241=>556,242=>500,243=>500, 31 | 244=>500,245=>500,246=>500,247=>570,248=>500,249=>556,250=>556,251=>556,252=>556, 32 | 253=>444,254=>500,255=>444); 33 | ?> 34 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/timesi.php: -------------------------------------------------------------------------------- 1 | 250,1=>250,2=>250,3=>250,4=>250,5=>250,6=>250,7=>250,8=>250,9=>250, 6 | 10=>250,11=>250,12=>250,13=>250,14=>250,15=>250,16=>250,17=>250,18=>250,19=>250, 7 | 20=>250,21=>250,22=>250,23=>250,24=>250,25=>250,26=>250,27=>250,28=>250,29=>250, 8 | 30=>250,31=>250,32=>250,33=>333,34=>420,35=>500,36=>500,37=>833,38=>778,39=>214, 9 | 40=>333,41=>333,42=>500,43=>675,44=>250,45=>333,46=>250,47=>278,48=>500,49=>500, 10 | 50=>500,51=>500,52=>500,53=>500,54=>500,55=>500,56=>500,57=>500,58=>333,59=>333, 11 | 60=>675,61=>675,62=>675,63=>500,64=>920,65=>611,66=>611,67=>667,68=>722,69=>611, 12 | 70=>611,71=>722,72=>722,73=>333,74=>444,75=>667,76=>556,77=>833,78=>667,79=>722, 13 | 80=>611,81=>722,82=>611,83=>500,84=>556,85=>722,86=>611,87=>833,88=>611,89=>556, 14 | 90=>556,91=>389,92=>278,93=>389,94=>422,95=>500,96=>333,97=>500,98=>500,99=>444, 15 | 100=>500,101=>444,102=>278,103=>500,104=>500,105=>278,106=>278,107=>444,108=>278, 16 | 109=>722,110=>500,111=>500,112=>500,113=>500,114=>389,115=>389,116=>278,117=>500, 17 | 118=>444,119=>667,120=>444,121=>444,122=>389,123=>400,124=>275,125=>400,126=>541, 18 | 127=>350,128=>500,129=>350,130=>333,131=>500,132=>556,133=>889,134=>500,135=>500, 19 | 136=>333,137=>1000,138=>500,139=>333,140=>944,141=>350,142=>556,143=>350,144=>350, 20 | 145=>333,146=>333,147=>556,148=>556,149=>350,150=>500,151=>889,152=>333,153=>980, 21 | 154=>389,155=>333,156=>667,157=>350,158=>389,159=>556,160=>250,161=>389,162=>500, 22 | 163=>500,164=>500,165=>500,166=>275,167=>500,168=>333,169=>760,170=>276,171=>500, 23 | 172=>675,173=>333,174=>760,175=>333,176=>400,177=>675,178=>300,179=>300,180=>333, 24 | 181=>500,182=>523,183=>250,184=>333,185=>300,186=>310,187=>500,188=>750,189=>750, 25 | 190=>750,191=>500,192=>611,193=>611,194=>611,195=>611,196=>611,197=>611,198=>889, 26 | 199=>667,200=>611,201=>611,202=>611,203=>611,204=>333,205=>333,206=>333,207=>333, 27 | 208=>722,209=>667,210=>722,211=>722,212=>722,213=>722,214=>722,215=>675,216=>722, 28 | 217=>722,218=>722,219=>722,220=>722,221=>556,222=>611,223=>500,224=>500,225=>500, 29 | 226=>500,227=>500,228=>500,229=>500,230=>667,231=>444,232=>444,233=>444,234=>444, 30 | 235=>444,236=>278,237=>278,238=>278,239=>278,240=>500,241=>500,242=>500,243=>500, 31 | 244=>500,245=>500,246=>500,247=>675,248=>500,249=>500,250=>500,251=>500,252=>500, 32 | 253=>444,254=>500,255=>444); 33 | ?> 34 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/utils/freetype6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/utils/freetype6.dll -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/utils/makeallttffonts.php: -------------------------------------------------------------------------------- 1 | . 36 | // 37 | // Additionally, you can't remove the original TCExam logo, copyrights statements 38 | // and links to Tecnick.com and TCExam websites. 39 | // 40 | // See LICENSE.TXT file for more information. 41 | //============================================================+ 42 | 43 | /** 44 | * Process all TTF files on current directory to build TCPDF compatible font files. 45 | * @package com.tecnick.tcpdf 46 | * @author Nicola Asuni 47 | * @copyright Copyright © 2004-2009, Nicola Asuni - Tecnick.com S.r.l. - ITALY - www.tecnick.com - info@tecnick.com 48 | * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 49 | * @link www.tecnick.com 50 | * @since 2008-12-07 51 | */ 52 | 53 | /** 54 | */ 55 | 56 | // read directory for files (only graphics files). 57 | $handle = opendir('.'); 58 | while($file = readdir($handle)) { 59 | $path_parts = pathinfo($file); 60 | $file_ext = strtolower($path_parts['extension']); 61 | if ($file_ext == 'ttf') { 62 | exec('./ttf2ufm -a -F '.$path_parts['basename'].''); 63 | exec('php -q makefont.php '.$path_parts['basename'].' '.$path_parts['filename'].'.ufm'); 64 | } 65 | } 66 | closedir($handle); 67 | 68 | //============================================================+ 69 | // END OF FILE 70 | //============================================================+ 71 | ?> 72 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/utils/pfm2afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/utils/pfm2afm -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/utils/pfm2afm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/utils/pfm2afm.exe -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/utils/src/pfm2afm-src.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/utils/src/pfm2afm-src.tar.gz -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/utils/src/readme.txt: -------------------------------------------------------------------------------- 1 | To embed TrueType and OpenType font files, you need to extract the 2 | font metrics from the font files and build the required tables using 3 | the utility TTF2UFM. 4 | 5 | TTF2UFM is a modified version of Mark Heath's TTF 2 PT1 converter 6 | (http://ttf2pt1.sourceforge.net/) by Steven Wittens 7 | (http://www.acko.net/blog/ufpdf). That version has been further 8 | modified by Ulrich Telle for use with the wxWidgets component 9 | wxPdfDocument. 10 | 11 | Following changes where made: 12 | 13 | 1) Generated AFM files contain the glyph number for each character. 14 | 2) Generated UFM files contain the bounding box for each character. 15 | 3) OpenType support has been activated for the Windows binary, 16 | and the generated AFM/UFM files contain the associated 17 | original Unicode codes for each character. 18 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/utils/src/ttf2ufm-src.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/utils/src/ttf2ufm-src.tar.gz -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/utils/ttf2ufm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/utils/ttf2ufm -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/utils/ttf2ufm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/utils/ttf2ufm.exe -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/utils/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/utils/zlib1.dll -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/fonts/zapfdingbats.php: -------------------------------------------------------------------------------- 1 | 0,1=>0,2=>0,3=>0,4=>0,5=>0,6=>0,7=>0,8=>0,9=>0,10=>0,11=>0,12=>0, 6 | 13=>0,14=>0,15=>0,16=>0,17=>0,18=>0,19=>0,20=>0,21=>0,22=>0,23=>0,24=>0,25=>0, 7 | 26=>0,27=>0,28=>0,29=>0,30=>0,31=>0,32=>278,33=>974,34=>961,35=>974,36=>980, 8 | 37=>719,38=>789,39=>790,40=>791,41=>690,42=>960,43=>939,44=>549,45=>855,46=>911, 9 | 47=>933,48=>911,49=>945,50=>974,51=>755,52=>846,53=>762,54=>761,55=>571,56=>677, 10 | 57=>763,58=>760,59=>759,60=>754,61=>494,62=>552,63=>537,64=>577,65=>692,66=>786, 11 | 67=>788,68=>788,69=>790,70=>793,71=>794,72=>816,73=>823,74=>789,75=>841,76=>823, 12 | 77=>833,78=>816,79=>831,80=>923,81=>744,82=>723,83=>749,84=>790,85=>792,86=>695, 13 | 87=>776,88=>768,89=>792,90=>759,91=>707,92=>708,93=>682,94=>701,95=>826,96=>815, 14 | 97=>789,98=>789,99=>707,100=>687,101=>696,102=>689,103=>786,104=>787,105=>713, 15 | 106=>791,107=>785,108=>791,109=>873,110=>761,111=>762,112=>762,113=>759,114=>759, 16 | 115=>892,116=>892,117=>788,118=>784,119=>438,120=>138,121=>277,122=>415,123=>392, 17 | 124=>392,125=>668,126=>668,127=>0,128=>390,129=>390,130=>317,131=>317,132=>276, 18 | 133=>276,134=>509,135=>509,136=>410,137=>410,138=>234,139=>234,140=>334,141=>334, 19 | 142=>0,143=>0,144=>0,145=>0,146=>0,147=>0,148=>0,149=>0,150=>0,151=>0,152=>0, 20 | 153=>0,154=>0,155=>0,156=>0,157=>0,158=>0,159=>0,160=>0,161=>732,162=>544,163=>544, 21 | 164=>910,165=>667,166=>760,167=>760,168=>776,169=>595,170=>694,171=>626,172=>788, 22 | 173=>788,174=>788,175=>788,176=>788,177=>788,178=>788,179=>788,180=>788,181=>788, 23 | 182=>788,183=>788,184=>788,185=>788,186=>788,187=>788,188=>788,189=>788,190=>788, 24 | 191=>788,192=>788,193=>788,194=>788,195=>788,196=>788,197=>788,198=>788,199=>788, 25 | 200=>788,201=>788,202=>788,203=>788,204=>788,205=>788,206=>788,207=>788,208=>788, 26 | 209=>788,210=>788,211=>788,212=>894,213=>838,214=>1016,215=>458,216=>748,217=>924, 27 | 218=>748,219=>918,220=>927,221=>928,222=>928,223=>834,224=>873,225=>828,226=>924, 28 | 227=>924,228=>917,229=>930,230=>931,231=>463,232=>883,233=>836,234=>836,235=>867, 29 | 236=>867,237=>696,238=>696,239=>874,240=>0,241=>874,242=>760,243=>946,244=>771, 30 | 245=>865,246=>771,247=>888,248=>967,249=>888,250=>831,251=>873,252=>927,253=>970, 31 | 254=>918,255=>0); 32 | ?> 33 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/images/read_me.txt: -------------------------------------------------------------------------------- 1 | download the TCPDF package to have this resources. 2 | 3 | it has been removed because of the size of the package of HTML2PDF... -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/tcpdf.crt: -------------------------------------------------------------------------------- 1 | Bag Attributes 2 | localKeyID: 7B AB 1B 7A BE 4C 85 C0 1A A6 DC 59 3F 79 48 C3 93 38 68 9C 3 | subject=/CN=TCPDF DEMO/O=TCPDF/OU=DEMO/emailAddress=you@example.com/C=IT 4 | issuer=/CN=TCPDF DEMO/O=TCPDF/OU=DEMO/emailAddress=you@example.com/C=IT 5 | -----BEGIN CERTIFICATE----- 6 | MIIC1TCCAj6gAwIBAgIKkehOL/XGkB5cjjANBgkqhkiG9w0BAQUFADBhMRMwEQYD 7 | VQQDEwpUQ1BERiBERU1PMQ4wDAYDVQQKEwVUQ1BERjENMAsGA1UECxMEREVNTzEe 8 | MBwGCSqGSIb3DQEJARYPeW91QGV4YW1wbGUuY29tMQswCQYDVQQGEwJJVDAeFw0w 9 | OTA4MjExMjU0NDhaFw0xNDA4MjExMjU0NDhaMGExEzARBgNVBAMTClRDUERGIERF 10 | TU8xDjAMBgNVBAoTBVRDUERGMQ0wCwYDVQQLEwRERU1PMR4wHAYJKoZIhvcNAQkB 11 | Fg95b3VAZXhhbXBsZS5jb20xCzAJBgNVBAYTAklUMIGfMA0GCSqGSIb3DQEBAQUA 12 | A4GNADCBiQKBgQDAqIL0uGKmTR98Lxx2vEEE1OGKkMXFo0JViitALe7Onhxxqx0H 13 | XMUDKF5mvEVu1rcvh7/oAnAfrCuEpL/up3u1mQCgBE7WXBnFFE/AE3jCksh9OkS0 14 | Z0Xj9woN5bzxRDsGoPiOu/4xzk5qSEXt8jf2Ep90QuNkqLIRT4swAzpDbwIDAQAB 15 | o4GTMIGQMDcGA1UdEgQwMC6gEQYDVQQDDApUQ1BERiBERU1PoAwGA1UECgwFVENQ 16 | REagCwYDVQQLDARERU1PMDcGA1UdEQQwMC6gEQYDVQQDDApUQ1BERiBERU1PoAwG 17 | A1UECgwFVENQREagCwYDVQQLDARERU1PMA8GCSqGSIb3LwEBCgQCBQAwCwYDVR0P 18 | BAQDAgSQMA0GCSqGSIb3DQEBBQUAA4GBAEhTQfqX3ZNdHmpTLDbIj22RHXii2roE 19 | OavCbu9WsHoWpva0qSd+yIoD594VHvYAd29sfzDfiN+7W0aiZfDhq5jpaSQMVlN8 20 | RGYMupbHY/+a9Gz1wqxnR84mlTtIkZVRYAhsfPwy6M1BEjdMqfdh9h40JIdkdjtb 21 | 8faTCfXPePWQ 22 | -----END CERTIFICATE----- 23 | Bag Attributes 24 | localKeyID: 7B AB 1B 7A BE 4C 85 C0 1A A6 DC 59 3F 79 48 C3 93 38 68 9C 25 | Key Attributes: 26 | -----BEGIN RSA PRIVATE KEY----- 27 | MIICXQIBAAKBgQDAqIL0uGKmTR98Lxx2vEEE1OGKkMXFo0JViitALe7Onhxxqx0H 28 | XMUDKF5mvEVu1rcvh7/oAnAfrCuEpL/up3u1mQCgBE7WXBnFFE/AE3jCksh9OkS0 29 | Z0Xj9woN5bzxRDsGoPiOu/4xzk5qSEXt8jf2Ep90QuNkqLIRT4swAzpDbwIDAQAB 30 | AoGAXc+wNMmz/5Z+RlIKYia44klmqbplEx+0JULqXI4BQsrqvs67i+I4bJkznoL+ 31 | rEIRYSuQ3sCRKFsFtckjTGpxadnxkB+uwGKc6pZChv99BFX6HFR4hgBlT/BBRAQA 32 | hMDlM2JIRr4S4SMVXR7MHwGMUf9mUeanGLR3ZWtU3aXJrIECQQD7OaYUVYNEEnM9 33 | uXyjm22CuHyqyEf5gb13sK0uQty67547yJTMUQZd/sQc9KGwhzBbhrob2LO2jAhh 34 | S+f+NSRnAkEAxFHm3fMI5RgXmswxlGm4QW07a/Ueo7ZJG6xjTkFXluJhd+XHswRD 35 | dQIO3zG9nGjNUoeMrPhXhPvKqFc2F9RDuQJAQBEGin74N77gxqfr4ik79y8nE8J5 36 | oGZ2s/RJZdfFRKLg3mwbjjNHhWb4Ck5UgZkoOt8TzRApXG8/n9hktE5HFwJBALur 37 | M5AueO1Pl5kB489lNJ9OxUQRYUXMxpxuscuoCQwSwmv0O2+0/qtG2WKhUQnI4aYo 38 | L+FV0YwtivBb1jj3T/kCQQDIWOxq8eRowdaMzvJpRUHFgMcf1AVZExKyrugwYOWd 39 | KNsDxC4KaQOsPt8iT/Ulo4g/MJC0HolCOhWibKmR9Ayl 40 | -----END RSA PRIVATE KEY----- 41 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/tcpdf.fdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/tcpdf.fdf -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/tcpdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/_tcpdf_5.0.002/tcpdf.php -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/examples/about.php: -------------------------------------------------------------------------------- 1 | PDF convertor 6 | * distributed under the LGPL License 7 | * 8 | * @author Laurent MINGUET 9 | * 10 | * isset($_GET['vuehtml']) is not mandatory 11 | * it allow to display the result in the HTML format 12 | */ 13 | require_once(dirname(__FILE__).'/../html2pdf.class.php'); 14 | 15 | // get the HTML 16 | ob_start(); 17 | include(dirname('__FILE__').'/res/about.php'); 18 | $content = ob_get_clean(); 19 | 20 | try 21 | { 22 | // init HTML2PDF 23 | $html2pdf = new HTML2PDF('P', 'A4', 'fr', true, 'UTF-8', array(0, 0, 0, 0)); 24 | 25 | // display the full page 26 | $html2pdf->pdf->SetDisplayMode('fullpage'); 27 | 28 | // convert 29 | $html2pdf->writeHTML($content, isset($_GET['vuehtml'])); 30 | 31 | // add the automatic index 32 | $html2pdf->createIndex('Sommaire', 30, 12, false, true, 2); 33 | 34 | // send the PDF 35 | $html2pdf->Output('about.pdf'); 36 | } 37 | catch(HTML2PDF_exception $e) { 38 | echo $e; 39 | exit; 40 | } 41 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/examples/exemple00.php: -------------------------------------------------------------------------------- 1 | PDF convertor 6 | * distributed under the LGPL License 7 | * 8 | * @author Laurent MINGUET 9 | * 10 | * isset($_GET['vuehtml']) is not mandatory 11 | * it allow to display the result in the HTML format 12 | */ 13 | 14 | // get the HTML 15 | ob_start(); 16 | include(dirname(__FILE__).'/res/exemple00.php'); 17 | $content = ob_get_clean(); 18 | 19 | // convert in PDF 20 | require_once(dirname(__FILE__).'/../html2pdf.class.php'); 21 | try 22 | { 23 | $html2pdf = new HTML2PDF('P', 'A4', 'fr'); 24 | // $html2pdf->setModeDebug(); 25 | $html2pdf->setDefaultFont('Arial'); 26 | $html2pdf->writeHTML($content, isset($_GET['vuehtml'])); 27 | $html2pdf->Output('exemple00.pdf'); 28 | } 29 | catch(HTML2PDF_exception $e) { 30 | echo $e; 31 | exit; 32 | } 33 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/examples/exemple01.php: -------------------------------------------------------------------------------- 1 | PDF convertor 6 | * distributed under the LGPL License 7 | * 8 | * @author Laurent MINGUET 9 | * 10 | * isset($_GET['vuehtml']) is not mandatory 11 | * it allow to display the result in the HTML format 12 | */ 13 | 14 | // get the HTML 15 | ob_start(); 16 | include(dirname(__FILE__).'/res/exemple01.php'); 17 | $content = ob_get_clean(); 18 | 19 | // convert in PDF 20 | require_once(dirname(__FILE__).'/../html2pdf.class.php'); 21 | try 22 | { 23 | $html2pdf = new HTML2PDF('P', 'A4', 'fr'); 24 | $html2pdf->writeHTML($content, isset($_GET['vuehtml'])); 25 | $html2pdf->Output('exemple01.pdf'); 26 | } 27 | catch(HTML2PDF_exception $e) { 28 | echo $e; 29 | exit; 30 | } 31 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/examples/exemple02.php: -------------------------------------------------------------------------------- 1 | PDF convertor 6 | * distributed under the LGPL License 7 | * 8 | * @author Laurent MINGUET 9 | * 10 | * isset($_GET['vuehtml']) is not mandatory 11 | * it allow to display the result in the HTML format 12 | */ 13 | 14 | // get the HTML 15 | ob_start(); 16 | include(dirname(__FILE__).'/res/exemple02.php'); 17 | $content = ob_get_clean(); 18 | 19 | // convert in PDF 20 | require_once(dirname(__FILE__).'/../html2pdf.class.php'); 21 | try 22 | { 23 | $html2pdf = new HTML2PDF('P', 'A4', 'fr', true, 'UTF-8', array(15, 5, 15, 5)); 24 | $html2pdf->pdf->SetDisplayMode('fullpage'); 25 | $html2pdf->writeHTML($content, isset($_GET['vuehtml'])); 26 | $html2pdf->Output('exemple02.pdf'); 27 | } 28 | catch(HTML2PDF_exception $e) { 29 | echo $e; 30 | exit; 31 | } 32 | 33 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/examples/exemple03.php: -------------------------------------------------------------------------------- 1 | PDF convertor 6 | * distributed under the LGPL License 7 | * 8 | * @author Laurent MINGUET 9 | * 10 | * isset($_GET['vuehtml']) is not mandatory 11 | * it allow to display the result in the HTML format 12 | */ 13 | 14 | // get the HTML 15 | ob_start(); 16 | include(dirname(__FILE__).'/res/exemple03.php'); 17 | $content = ob_get_clean(); 18 | 19 | // convert to PDF 20 | require_once(dirname(__FILE__).'/../html2pdf.class.php'); 21 | try 22 | { 23 | $html2pdf = new HTML2PDF('P', 'A4', 'fr', true, 'UTF-8', 3); 24 | $html2pdf->pdf->SetDisplayMode('fullpage'); 25 | $html2pdf->writeHTML($content, isset($_GET['vuehtml'])); 26 | $html2pdf->Output('exemple03.pdf'); 27 | } 28 | catch(HTML2PDF_exception $e) { 29 | echo $e; 30 | exit; 31 | } 32 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/examples/exemple04.php: -------------------------------------------------------------------------------- 1 | PDF convertor 6 | * distributed under the LGPL License 7 | * 8 | * @author Laurent MINGUET 9 | * 10 | * isset($_GET['vuehtml']) is not mandatory 11 | * it allow to display the result in the HTML format 12 | */ 13 | 14 | // get the HTML 15 | ob_start(); 16 | include(dirname(__FILE__).'/res/exemple04.php'); 17 | $content = ob_get_clean(); 18 | 19 | // convert to PDF 20 | require_once(dirname(__FILE__).'/../html2pdf.class.php'); 21 | try 22 | { 23 | $html2pdf = new HTML2PDF('P', 'A4', 'fr'); 24 | $html2pdf->pdf->SetDisplayMode('fullpage'); 25 | $html2pdf->writeHTML($content, isset($_GET['vuehtml'])); 26 | $html2pdf->Output('exemple04.pdf'); 27 | } 28 | catch(HTML2PDF_exception $e) { 29 | echo $e; 30 | exit; 31 | } 32 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/examples/exemple05.php: -------------------------------------------------------------------------------- 1 | PDF convertor 6 | * distributed under the LGPL License 7 | * 8 | * @author Laurent MINGUET 9 | * 10 | * isset($_GET['vuehtml']) is not mandatory 11 | * it allow to display the result in the HTML format 12 | */ 13 | 14 | // get the HTML 15 | ob_start(); 16 | include(dirname(__FILE__).'/res/exemple05.php'); 17 | $content = ob_get_clean(); 18 | 19 | // convert to PDF 20 | require_once(dirname(__FILE__).'/../html2pdf.class.php'); 21 | try 22 | { 23 | $html2pdf = new HTML2PDF('P', 'A4', 'fr'); 24 | $html2pdf->pdf->SetDisplayMode('fullpage'); 25 | $html2pdf->writeHTML($content, isset($_GET['vuehtml'])); 26 | $html2pdf->Output('exemple05.pdf'); 27 | } 28 | catch(HTML2PDF_exception $e) { 29 | echo $e; 30 | exit; 31 | } 32 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/examples/exemple06.php: -------------------------------------------------------------------------------- 1 | PDF convertor 6 | * distributed under the LGPL License 7 | * 8 | * @author Laurent MINGUET 9 | * 10 | * isset($_GET['vuehtml']) is not mandatory 11 | * it allow to display the result in the HTML format 12 | */ 13 | 14 | // get the HTML 15 | ob_start(); 16 | include(dirname(__FILE__).'/res/exemple06.php'); 17 | $content = ob_get_clean(); 18 | 19 | // convert to PDF 20 | require_once(dirname(__FILE__).'/../html2pdf.class.php'); 21 | try 22 | { 23 | $html2pdf = new HTML2PDF('P', 'A4', 'fr'); 24 | $html2pdf->writeHTML($content, isset($_GET['vuehtml'])); 25 | $html2pdf->Output('exemple06.pdf'); 26 | } 27 | catch(HTML2PDF_exception $e) { 28 | echo $e; 29 | exit; 30 | } 31 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/examples/exemple07.php: -------------------------------------------------------------------------------- 1 | PDF convertor 6 | * distributed under the LGPL License 7 | * 8 | * @author Laurent MINGUET 9 | * 10 | * isset($_GET['vuehtml']) is not mandatory 11 | * it allow to display the result in the HTML format 12 | */ 13 | 14 | // get the HTML 15 | ob_start(); 16 | include(dirname(__FILE__).'/res/exemple07a.php'); 17 | include(dirname(__FILE__).'/res/exemple07b.php'); 18 | $content = ob_get_clean(); 19 | 20 | // convert to PDF 21 | require_once(dirname(__FILE__).'/../html2pdf.class.php'); 22 | try 23 | { 24 | $html2pdf = new HTML2PDF('P', 'A4', 'fr'); 25 | $html2pdf->pdf->SetDisplayMode('fullpage'); 26 | // $html2pdf->pdf->SetProtection(array('print'), 'spipu'); 27 | $html2pdf->writeHTML($content, isset($_GET['vuehtml'])); 28 | $html2pdf->Output('exemple07.pdf'); 29 | } 30 | catch(HTML2PDF_exception $e) { 31 | echo $e; 32 | exit; 33 | } 34 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/examples/exemple08.php: -------------------------------------------------------------------------------- 1 | PDF convertor 6 | * distributed under the LGPL License 7 | * 8 | * @author Laurent MINGUET 9 | * 10 | * isset($_GET['vuehtml']) is not mandatory 11 | * it allow to display the result in the HTML format 12 | */ 13 | 14 | // get the HTML 15 | ob_start(); 16 | include(dirname(__FILE__).'/res/exemple08.php'); 17 | $content = ob_get_clean(); 18 | 19 | // convert to PDF 20 | require_once(dirname(__FILE__).'/../html2pdf.class.php'); 21 | try 22 | { 23 | $html2pdf = new HTML2PDF('P', 'A4', 'fr', true, 'UTF-8', 0); 24 | $html2pdf->writeHTML($content, isset($_GET['vuehtml'])); 25 | $html2pdf->Output('exemple08.pdf'); 26 | } 27 | catch(HTML2PDF_exception $e) { 28 | echo $e; 29 | exit; 30 | } 31 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/examples/exemple09.php: -------------------------------------------------------------------------------- 1 | PDF convertor 6 | * distributed under the LGPL License 7 | * 8 | * @author Laurent MINGUET 9 | * 10 | */ 11 | 12 | $generate = isset($_GET['make_pdf']); 13 | $nom = isset($_GET['nom']) ? $_GET['nom'] : 'inconnu'; 14 | 15 | $nom = substr(preg_replace('/[^a-zA-Z0-9]/isU', '', $nom), 0, 26); 16 | 17 | if ($generate) { 18 | ob_start(); 19 | } else { 20 | ?> 21 | 22 | 23 | 24 | 25 | Exemple d'auto génération de PDF 26 | 27 | 28 | 36 |
37 | Ceci est un exemple de génération de PDF via un bouton :)
38 |
39 | image_php
40 |
41 | 44 | Bonjour , ton nom peut s'écrire :
45 |
46 |
47 | 50 |
51 | writeHTML($content); 59 | $html2pdf->Output('exemple09.pdf'); 60 | exit; 61 | } 62 | catch(HTML2PDF_exception $e) { 63 | echo $e; 64 | exit; 65 | } 66 | } 67 | ?> 68 |
69 | 70 | Ton nom : - 71 | 72 |
73 | 74 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/examples/exemple10.php: -------------------------------------------------------------------------------- 1 | PDF convertor 6 | * distributed under the LGPL License 7 | * 8 | * @author Laurent MINGUET 9 | * 10 | * isset($_GET['vuehtml']) is not mandatory 11 | * it allow to display the result in the HTML format 12 | */ 13 | 14 | ob_start(); 15 | include(dirname(__FILE__).'/res/exemple10.php'); 16 | $content = ob_get_clean(); 17 | 18 | require_once(dirname(__FILE__).'/../html2pdf.class.php'); 19 | try 20 | { 21 | $html2pdf = new HTML2PDF('P', 'A4', 'fr'); 22 | $html2pdf->writeHTML($content, isset($_GET['vuehtml'])); 23 | $html2pdf->Output('exemple10.pdf'); 24 | } 25 | catch(HTML2PDF_exception $e) { 26 | echo $e; 27 | exit; 28 | } -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/examples/exemple11.php: -------------------------------------------------------------------------------- 1 | PDF convertor 6 | * distributed under the LGPL License 7 | * 8 | * @author Laurent MINGUET 9 | * 10 | * isset($_GET['vuehtml']) is not mandatory 11 | * it allow to display the result in the HTML format 12 | */ 13 | 14 | // get the HTML 15 | ob_start(); 16 | include(dirname(__FILE__).'/res/exemple11.php'); 17 | $content = ob_get_clean(); 18 | 19 | // convert to PDF 20 | require_once(dirname(__FILE__).'/../html2pdf.class.php'); 21 | try 22 | { 23 | $html2pdf = new HTML2PDF('P', 'A4', 'fr'); 24 | $html2pdf->setTestTdInOnePage(false); 25 | $html2pdf->writeHTML($content, isset($_GET['vuehtml'])); 26 | $html2pdf->Output('exemple11.pdf'); 27 | } 28 | catch(HTML2PDF_exception $e) { 29 | echo $e; 30 | exit; 31 | } 32 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/examples/exemple12.php: -------------------------------------------------------------------------------- 1 | PDF convertor 6 | * distributed under the LGPL License 7 | * 8 | * @author Laurent MINGUET 9 | * 10 | * isset($_GET['vuehtml']) is not mandatory 11 | * it allow to display the result in the HTML format 12 | */ 13 | 14 | // get the HTML 15 | ob_start(); 16 | include(dirname(__FILE__).'/res/exemple12.php'); 17 | $content = ob_get_clean(); 18 | 19 | // convert to PDF 20 | require_once(dirname(__FILE__).'/../html2pdf.class.php'); 21 | try 22 | { 23 | $html2pdf = new HTML2PDF('P', 'A4', 'fr'); 24 | $html2pdf->writeHTML($content, isset($_GET['vuehtml'])); 25 | $html2pdf->Output('exemple12.pdf'); 26 | } 27 | catch(HTML2PDF_exception $e) { 28 | echo $e; 29 | exit; 30 | } 31 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/examples/exemple13.php: -------------------------------------------------------------------------------- 1 | PDF convertor 6 | * distributed under the LGPL License 7 | * 8 | * @author Laurent MINGUET 9 | * 10 | * isset($_GET['vuehtml']) is not mandatory 11 | * it allow to display the result in the HTML format 12 | */ 13 | 14 | // get the HTML 15 | ob_start(); 16 | include(dirname(__FILE__).'/res/exemple13.php'); 17 | $content = ob_get_clean(); 18 | 19 | // convert to PDF 20 | require_once(dirname(__FILE__).'/../html2pdf.class.php'); 21 | try 22 | { 23 | $html2pdf = new HTML2PDF('P', 'A4', 'fr'); 24 | $html2pdf->writeHTML($content, isset($_GET['vuehtml'])); 25 | $html2pdf->Output('exemple13.pdf'); 26 | } 27 | catch(HTML2PDF_exception $e) { 28 | echo $e; 29 | exit; 30 | } 31 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/examples/forms.php: -------------------------------------------------------------------------------- 1 | PDF convertor 6 | * distributed under the LGPL License 7 | * 8 | * @author Laurent MINGUET 9 | * 10 | * isset($_GET['vuehtml']) is not mandatory 11 | * it allow to display the result in the HTML format 12 | */ 13 | 14 | // for display the post information 15 | if (isset($_POST['test'])) { 16 | echo '
';
17 |         echo htmlentities(print_r($_POST, true));
18 |         echo '
'; 19 | exit; 20 | } 21 | 22 | // get the HTML 23 | ob_start(); 24 | include(dirname(__FILE__).'/res/forms.php'); 25 | $content = ob_get_clean(); 26 | 27 | // convert to PDF 28 | require_once(dirname(__FILE__).'/../html2pdf.class.php'); 29 | try 30 | { 31 | $html2pdf = new HTML2PDF('P', 'A4', 'fr'); 32 | $html2pdf->pdf->SetDisplayMode('fullpage'); 33 | $html2pdf->writeHTML($content, isset($_GET['vuehtml'])); 34 | $html2pdf->Output('forms.pdf'); 35 | } 36 | catch(HTML2PDF_exception $e) { 37 | echo $e; 38 | exit; 39 | } 40 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/examples/groups.php: -------------------------------------------------------------------------------- 1 | PDF convertor 6 | * distributed under the LGPL License 7 | * 8 | * @author Laurent MINGUET 9 | * 10 | * isset($_GET['vuehtml']) is not mandatory 11 | * it allow to display the result in the HTML format 12 | */ 13 | 14 | ob_start(); 15 | ?> 16 | 22 | 23 | 24 | 25 | 26 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 38 | 39 | 40 | 41 | Ceci est la page 1 du groupe 1 42 | 43 | 44 | Ceci est la page 2 du groupe 1 45 | 46 | 47 | Ceci est la page 3 du groupe 1 48 | 49 | 50 | 51 | Ceci est la page 1 du groupe 52 | 53 | 54 | Ceci est la page 2 du groupe 55 | 56 | 57 | pdf->SetDisplayMode('fullpage'); 65 | $html2pdf->writeHTML($content, isset($_GET['vuehtml'])); 66 | $html2pdf->Output('groups.pdf'); 67 | } 68 | catch(HTML2PDF_exception $e) { 69 | echo $e; 70 | exit; 71 | } 72 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/examples/js1.php: -------------------------------------------------------------------------------- 1 | PDF convertor 6 | * distributed under the LGPL License 7 | * 8 | * @author Laurent MINGUET 9 | * 10 | * isset($_GET['vuehtml']) is not mandatory 11 | * it allow to display the result in the HTML format 12 | */ 13 | 14 | // get the HTML 15 | ob_start(); 16 | ?> 17 | 18 |

Test de JavaScript 1


19 |
20 | Normalement la fenetre d'impression devrait apparaitre automatiquement 21 |
22 | pdf->IncludeJS("print(true);"); 31 | $html2pdf->writeHTML($content, isset($_GET['vuehtml'])); 32 | $html2pdf->Output('js1.pdf'); 33 | } 34 | catch(HTML2PDF_exception $e) { 35 | echo $e; 36 | exit; 37 | } 38 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/examples/js2.php: -------------------------------------------------------------------------------- 1 | PDF convertor 6 | * distributed under the LGPL License 7 | * 8 | * @author Laurent MINGUET 9 | * 10 | * isset($_GET['vuehtml']) is not mandatory 11 | * it allow to display the result in the HTML format 12 | */ 13 | 14 | // get the HTML 15 | ob_start(); 16 | ?> 17 | 18 |

Test de JavaScript 2


19 |
20 | Normalement une alerte devrait apparaitre, indiquant "coucou" 21 |
22 | pdf->IncludeJS("app.alert('coucou');"); 31 | $html2pdf->writeHTML($content, isset($_GET['vuehtml'])); 32 | $html2pdf->Output('js2.pdf'); 33 | } 34 | catch(HTML2PDF_exception $e) { 35 | echo $e; 36 | exit; 37 | } 38 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/examples/js3.php: -------------------------------------------------------------------------------- 1 | PDF convertor 6 | * distributed under the LGPL License 7 | * 8 | * @author Laurent MINGUET 9 | * 10 | * isset($_GET['vuehtml']) is not mandatory 11 | * it allow to display the result in the HTML format 12 | */ 13 | 14 | // get the HTML 15 | ob_start(); 16 | ?> 17 | 18 |

Test de JavaScript 3


19 |
20 | Normalement une valeur devrait vous être demandée, puis affichée 21 |
22 | pdf->IncludeJS($script); 37 | $html2pdf->writeHTML($content, isset($_GET['vuehtml'])); 38 | $html2pdf->Output('js3.pdf'); 39 | } 40 | catch(HTML2PDF_exception $e) { 41 | echo $e; 42 | exit; 43 | } 44 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/examples/qrcode.php: -------------------------------------------------------------------------------- 1 | PDF convertor 6 | * distributed under the LGPL License 7 | * 8 | * @author Laurent MINGUET 9 | * 10 | * isset($_GET['vuehtml']) is not mandatory 11 | * it allow to display the result in the HTML format 12 | */ 13 | 14 | // get the HTML 15 | ob_start(); 16 | $msg = "Le site de html2pdf\r\nhttp://html2pdf.fr/"; 17 | ?> 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 |
html2pdfExemples de QRcode
26 |
27 |

Exemples de QRcode

28 |

Message avec Correction d'erreur L, M, Q, H (valeur par défaut : H)

29 | 30 | 31 | 32 | 33 |
34 |

Message avec différentes largeurs

35 | 36 | 37 | 38 | 39 |
40 |

Message de différentes couleurs

41 | 42 | 43 | 44 | 45 |
46 |

Message sans border

47 | 48 |
49 |
50 | pdf->SetDisplayMode('fullpage'); 59 | $html2pdf->writeHTML($content, isset($_GET['vuehtml'])); 60 | $html2pdf->Output('qrcode.pdf'); 61 | } 62 | catch(HTML2PDF_exception $e) { 63 | echo $e; 64 | exit; 65 | } 66 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/examples/radius.php: -------------------------------------------------------------------------------- 1 | PDF convertor 6 | * distributed under the LGPL License 7 | * 8 | * @author Laurent MINGUET 9 | * 10 | * isset($_GET['vuehtml']) is not mandatory 11 | * it allow to display the result in the HTML format 12 | */ 13 | // get the HTML 14 | ob_start(); 15 | ?> 16 | 29 | 30 |
Exemple de div
31 |
Exemple de div
32 |
Exemple de div
33 |
Exemple de div
34 |
Exemple de div
35 |
Exemple de div
36 |
Exemple de div
37 |
Exemple de div
38 |
39 | writeHTML($content, isset($_GET['vuehtml'])); 48 | $html2pdf->Output('radius.pdf'); 49 | } 50 | catch(HTML2PDF_exception $e) { 51 | echo $e; 52 | exit; 53 | } 54 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/examples/regle.php: -------------------------------------------------------------------------------- 1 | PDF convertor 6 | * distributed under the LGPL License 7 | * 8 | * @author Laurent MINGUET 9 | * 10 | * isset($_GET['vuehtml']) is not mandatory 11 | * it allow to display the result in the HTML format 12 | */ 13 | 14 | // get the HTML 15 | ob_start(); 16 | ?> 17 | 39 | 40 | 41 |
'.$k.''; ?> 42 |
43 |
44 | pdf->SetDisplayMode('fullpage'); 53 | $html2pdf->writeHTML($content, isset($_GET['vuehtml'])); 54 | $html2pdf->Output('regle.pdf'); 55 | } 56 | catch(HTML2PDF_exception $e) { 57 | echo $e; 58 | exit; 59 | } 60 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/examples/res/bas_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/examples/res/bas_page.png -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/examples/res/exemple05.php: -------------------------------------------------------------------------------- 1 | 30 | Démonstration des retour à la ligne automatique, ainsi que des sauts de page automatique
31 |
32 |
33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 63 | 64 | 65 | 68 | 69 | 70 |
42 | Titre du tableau 43 |
Colonne 1Colonne 2Colonne 3
test de texte assez long pour engendrer des retours à la ligne automatique...test de texte assez long pour engendrer des retours à la ligne automatique...test de texte assez long pour engendrer des retours à la ligne automatique...
66 | bas du tableau 67 |
71 | Cool non ?
-------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/examples/res/exemple06.css: -------------------------------------------------------------------------------- 1 | .titre 2 | { 3 | text-decoration: underline; 4 | } 5 | 6 | * {color: #FF0000; } 7 | H1 {color: #AA0055; } 8 | H2 {color: #990066; } 9 | H3 {color: #880077; } 10 | H4 {color: #770088; } 11 | H5 {color: #660099; } 12 | H6 {color: #5500AA; } -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/examples/res/exemple06.php: -------------------------------------------------------------------------------- 1 | 2 | 14 | 15 | 16 | 17 | 18 | 19 | 20 |
Ceci est untest de style
21 |
22 | 23 | 24 | 25 | 26 | 27 |
Ceci est untest de style
28 |
29 |

Essai de titre en H1

30 |

Essai de titre en H2

31 |

Essai de titre en H3

32 |

Essai de titre en H4

33 |
Essai de titre en H5
34 |
Essai de titre en H6
35 |
Essai de titre en H6
36 |
Essai de titre en H5
37 |

Essai de titre en H4

38 |

Essai de titre en H3

39 |

Essai de titre en H2

40 |

Essai de titre en H1

41 |
42 | Texte barré !
43 |
44 | Texte avec la couleur par défault (style *)
45 |
-------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/examples/res/exemple08.php: -------------------------------------------------------------------------------- 1 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 |
Hello ! ceci est un test !
logo
Hello ! ceci est un test !
logo
Hello ! ceci est un test !
logo
Hello ! ceci est un test !
logo
51 |
52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 |
a A1aa A2aaa A3aaaa A4
B1B2B3
C1C2C3
D1D2
74 |
75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 |
CoucouCoucou !BCC
AACoucouCoucou !CC
AABCoucouCoucou !
92 |
93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 |
AAAAAAAA
AACoucouCoucou !
AACC
D1D2
113 |
114 |
-------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/examples/res/exemple09.png.php: -------------------------------------------------------------------------------- 1 | 20) $px = 20; 9 | if ($py>20) $py = 20; 10 | 11 | $width = 100; 12 | $height = 100; 13 | $im = imagecreatetruecolor($width, $height); 14 | 15 | for ($y=0; $y<$height; $y+= $py) { 16 | for ($x=0; $x<$width; $x+= $px) { 17 | $c = imagecolorallocate($im, 200-$x, 100+$y, 100+$x-$y); 18 | imagefilledrectangle($im, $x, $y, $x+$px, $y+$py, $c); 19 | } 20 | } 21 | 22 | header("Content-type: image/png"); 23 | imagepng($im); 24 | imagedestroy($im); 25 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/examples/res/exemple10a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/examples/res/exemple10a.gif -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/examples/res/exemple10b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/examples/res/exemple10b.jpg -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/examples/res/exemple10c.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/examples/res/exemple10c.gif -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/examples/res/exemple13.php: -------------------------------------------------------------------------------- 1 | 33 | Exemple de liste avec puce personnalisée :
34 | 35 | 36 | 43 | 50 | 57 | 58 |
37 |
    38 |
  • Votre ligne 1
  • 39 |
  • Votre ligne 2
  • 40 |
  • Votre ligne 3
  • 41 |
42 |
44 |
    45 |
  • Votre ligne 1
  • 46 |
  • Votre ligne 2
  • 47 |
  • Votre ligne 3
  • 48 |
49 |
51 |
    52 |
  • Votre ligne 1
  • 53 |
  • Votre ligne 2
  • 54 |
  • Votre ligne 3
  • 55 |
56 |
59 | Exemple de caracteres :
60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 |
0aeiou
1àèìòù
2áéíóú
3âêîôû
4äëïöü
5ã õ
6å
7« ø
70 |
71 | du gras, "; 73 | $phrase.= "de l'italique, "; 74 | $phrase.= "du souligné, "; 75 | $phrase.= "et une image : "; 76 | $phrase.= "logo"; 77 | ?> 78 | Table :
79 | 80 | 81 | 82 | 83 |
84 |
85 | Div :
86 |
87 |
88 |
-------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/examples/res/forms.php: -------------------------------------------------------------------------------- 1 | 9 | 22 | 23 |

Test de formulaire


24 |
25 |
26 | 27 | Vous utilisez cette librairie dans le cadre : 28 |
    29 |
  • du boulot
  • 30 |
  • perso
  • 31 |
32 | Vous êtes : 33 |
    34 |
  • un homme
  • 35 |
  • une femme
  • 36 |
37 | Vous avez : 38 |
45 |
46 | Vous aimez : 47 |
54 |
55 | Votre phrase fétiche :
56 |
57 | Un commentaire ?
58 |
59 |
60 | 61 | 62 | 63 |
64 |
-------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/examples/res/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/examples/res/logo.gif -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/examples/res/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/examples/res/logo.png -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/examples/res/off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/examples/res/off.png -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/examples/res/puce.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/examples/res/puce.gif -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/examples/res/puce2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/examples/res/puce2.gif -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/examples/res/regle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/examples/res/regle.png -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/examples/res/svg.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 |
20 | Les balises SVG suivantes sont reconnues : LINE, RECT, CIRCLE, ELLIPSE, PATH, POLYGON, POLYLINE, G
21 |
22 | Spécifications SVG : http://www.w3.org/TR/SVG11/expanded-toc.html 23 |
-------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/examples/res/tcpdf_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/assets/plugins/html2pdf_v4.03/examples/res/tcpdf_logo.jpg -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/examples/svg.php: -------------------------------------------------------------------------------- 1 | PDF convertor 6 | * distributed under the LGPL License 7 | * 8 | * @author Laurent MINGUET 9 | * 10 | * isset($_GET['vuehtml']) is not mandatory 11 | * it allow to display the result in the HTML format 12 | */ 13 | 14 | // get the HTML 15 | ob_start(); 16 | include(dirname(__FILE__).'/res/svg.php'); 17 | $content = ob_get_clean(); 18 | 19 | // convert into PDF 20 | require_once(dirname(__FILE__).'/../html2pdf.class.php'); 21 | try 22 | { 23 | $html2pdf = new HTML2PDF('P', 'A4', 'fr'); 24 | $html2pdf->pdf->SetDisplayMode('fullpage'); 25 | $html2pdf->writeHTML($content, isset($_GET['vuehtml'])); 26 | $html2pdf->Output('svg.pdf'); 27 | } 28 | catch(HTML2PDF_exception $e) { 29 | echo $e; 30 | exit; 31 | } 32 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/examples/utf8.php: -------------------------------------------------------------------------------- 1 | PDF convertor 6 | * distributed under the LGPL License 7 | * 8 | * @author Laurent MINGUET 9 | * 10 | * isset($_GET['vuehtml']) is not mandatory 11 | * it allow to display the result in the HTML format 12 | */ 13 | 14 | require_once(dirname(__FILE__).'/../html2pdf.class.php'); 15 | 16 | // get the HTML 17 | $content = file_get_contents(dirname(__FILE__).'/../_tcpdf_'.HTML2PDF_USED_TCPDF_VERSION.'/cache/utf8test.txt'); 18 | $content = '
'.nl2br($content).'
'; 19 | 20 | // convert to PDF 21 | try 22 | { 23 | $html2pdf = new HTML2PDF('P', 'A4', 'fr'); 24 | $html2pdf->pdf->SetDisplayMode('real'); 25 | $html2pdf->writeHTML($content, isset($_GET['vuehtml'])); 26 | $html2pdf->Output('utf8.pdf'); 27 | } 28 | catch(HTML2PDF_exception $e) { 29 | echo $e; 30 | exit; 31 | } 32 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/locale/ca.csv: -------------------------------------------------------------------------------- 1 | "err01","L'etiqueta <[[OTHER]]> encara no existeix.

Si voleu afegir-la, heu de crear els mètodes o_[[OTHER]] (per l'obertura) i c_[[OTHER]] (pel tancament) seguint el model de les etiquetes existents.

A més, si creeu nous mètodes, envieu-ho a webmaster@html2pdf.fr per tal d'afegir-los a les següents versions d'HTML2PDF, i que tothom en pugui gaudir." 2 | "err02","Frase de 1000 línies => massa llarga
Frase : [[OTHER_0]]
Mida casella : [[OTHER_1]]
Mida text : [[OTHER_2]]
" 3 | "err03","Codi HTML no vàlid, una etiqueta té un tancament de més : <[[OTHER]]>" 4 | "err04","Codi HTML no vàlid, les etiquetes no estan tancades en l'ordre correcte.
Estat :
[[OTHER]]
" 5 | "err05","Codi HTML no vàlid, totes les etiquetes han de tenir el seu tancament.
Estat :
[[OTHER]]
" 6 | "err06","Impossible carregar la imatge [[OTHER]]" 7 | "err07","El contingut d'una etiqueta TD no quep en una sola pàgina" 8 | "err08","<[[OTHER]]> tag not in a <DRAW> tag" 9 | "err09","The using of the <[[OTHER_0]]>> tag has changed, you can not use [[OTHER_1]] anymore. Read the WIKI" 10 | "txt01","ERROR n°" 11 | "txt02","Fitxer :" 12 | "txt03","Línia :" 13 | "pdf01","Document generat el [[date_d]]/[[date_m]]/[[date_y]]" 14 | "pdf02","Document generat a les [[date_h]]:[[date_i]]" 15 | "pdf03","Document generat el [[date_d]]/[[date_m]]/[[date_y]] a les [[date_h]]:[[date_i]]" 16 | "pdf04","Pàgina [[page_cu]]/[[page_nb]]" 17 | "pdf05","Els formularis requereixen l'ús de l'Adobe Reader 9" 18 | "vue01","CAPÇALERA" 19 | "vue02","PEU DE PÀGINA" 20 | "vue03","PÀGINA" 21 | "vue04","Visualització" 22 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/locale/cs.csv: -------------------------------------------------------------------------------- 1 | "err01","Element <[[OTHER]]> neexistuje.

Pokud ho chcete přidat, musíte vytvořit metodu o_[[OTHER]] (pro otevření) a c_[[OTHER]] (pro zavření) k začlenění do modelu jako existující element.

Pokud vytvoříte metodu, nebojte se poslat email na webmaster@html2pdf.fr k zařazení do další verze HTML2PDF." 2 | "err02","Sentence of 1000 lines => too long
Sentence : [[OTHER_0]]
Width box : [[OTHER_1]]
Length text : [[OTHER_2]]
" 3 | "err03","Chyba v HTML, element je příliš mnohokrát zavřen: <[[OTHER]]>" 4 | "err04","Chyba v HTML, element není uzavřen ve správném pořadí.
Stav :
[[OTHER]]
" 5 | "err05","Chyba v HTML, všechny elementy musí být zavřeny.
Stav :
[[OTHER]]
" 6 | "err06","Menohu načíst orbázek [[OTHER]]" 7 | "err07","Obsah TD elementu se nevejde na jednu stránku" 8 | "err08","<[[OTHER]]> element není v <DRAW> elementu" 9 | "err09","The using of the <[[OTHER_0]]>> tag has changed, you can not use [[OTHER_1]] anymore. Read the WIKI" 10 | "txt01","CHYBA č." 11 | "txt02","Soubor :" 12 | "txt03","Řádek :" 13 | "pdf01","Dokument vytvořen dne [[date_d]].[[date_m]].[[date_y]]" 14 | "pdf02","Dokument vytvořen v [[date_h]]:[[date_i]]" 15 | "pdf03","Dokument vytvořen dne [[date_d]].[[date_m]].[[date_y]] v [[date_h]]:[[date_i]]" 16 | "pdf04","Stránka [[page_cu]]/[[page_nb]]" 17 | "pdf05","Formuláře vyžadují Adobe Reader 9" 18 | "vue01","HLAVIČKA" 19 | "vue02","PATIČKA" 20 | "vue03","STRÁNKA" 21 | "vue04","POHLED" 22 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/locale/da.csv: -------------------------------------------------------------------------------- 1 | "err01","Tag <[[OTHER]]> endnu ikke eksisterer.

Hvis du ønsker at tilføje det, skal du oprette de metoder o_[[OTHER]] (for åbning) og c_[[OTHER]] (for lukning) ved at følge den model af eksisterende tags.

Hvis du opretter disse metoder, så tøv ikke med at send mig en e-mail til webmaster@html2pdf.fr til indsat dem i den næste version af HTML2PDF." 2 | "err02","Sætning af 1000 lines => er for lang
sætning : [[OTHER_0]]
Bredde boksen : [[OTHER_1]]
Længde tekst : [[OTHER_2]]
" 3 | "err03","HTML-kode er ugyldig, et tag er lukket for mange gange: <[[OTHER]]>" 4 | "err04","HTML-kode er ugyldig, tags er ikke afsluttet på en ordentlig måde.
Status :
[[OTHER]]
" 5 | "err05","HTML-kode er ugyldig, alle tags skal lukkes.
Status :
[[OTHER]]
" 6 | "err06","Umuligt at indlæse billedet [[OTHER]]" 7 | "err07","Indholdet af en TD tag ikke passer på én side" 8 | "err08","<[[OTHER]]> tag not in a <DRAW> tag" 9 | "err09","The using of the <[[OTHER_0]]>> tag has changed, you can not use [[OTHER_1]] anymore. Read the WIKI" 10 | "txt01","FEJL n°" 11 | "txt02","File :" 12 | "txt03","Linje :" 13 | "pdf01","Siden oprettet d. [[date_y]]-[[date_m]]-[[date_d]]" 14 | "pdf02","Siden oprettet d. [[date_h]]:[[date_i]]" 15 | "pdf03","Siden oprettet d. [[date_y]]-[[date_m]]-[[date_d]] at [[date_h]]:[[date_i]]" 16 | "pdf04","Side [[page_cu]]/[[page_nb]]" 17 | "pdf05","De formularer kræver brug af Adobe Reader 9" 18 | "vue01","HEADER" 19 | "vue02","FOOTER" 20 | "vue03","PAGE" 21 | "vue04","View" 22 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/locale/de.csv: -------------------------------------------------------------------------------- 1 | "err01","Das Tag <[[OTHER]]> existiert noch nicht.

Wenn Sie es hinzufügen möchten, sollen Sie die Methodeno_[[OTHER]] (zu öffnen) und c_[[OTHER]] (zu schließen) nach dem Modell den existierenden Tags.

Wenn Sie diese Methoden außerdem aufbauen, bitte teilen Sie sie duch eine E-Mail an meine Adresse : webmaster@html2pdf.fr, so daß sie künftig in die nächste Version von HTML2PDF erscheinen." 2 | "err02","1000-Linien Satz => zu lang
Satz : [[OTHER_0]]
Breite des Eingabefelds : [[OTHER_1]]
Länge des Texts : [[OTHER_2]]
" 3 | "err03","Falsches HTML Code, überzähliges geschloßene Tag : <[[OTHER]]>" 4 | "err04","Falsches HTML Code, die Tags sind nicht in richtiger Ordnung geschloßen.
Status :
[[OTHER]]
" 5 | "err05","Falsches HTML Code, alle Tags sollen geschloßen sein.
Status :
[[OTHER]]
" 6 | "err06","Ladung des Bilds unmöglich [[OTHER]]" 7 | "err07","Er Inhalt eines TD-Tag passt nicht nur auf einer Seite" 8 | "err08","<[[OTHER]]> tag not in a <DRAW> tag" 9 | "err09","The using of the <[[OTHER_0]]>> tag has changed, you can not use [[OTHER_1]] anymore. Read the WIKI" 10 | "txt01","Fehler n°" 11 | "txt02","Datei :" 12 | "txt03","Linie :" 13 | "pdf01","Datei aufgebaut am [[date_d]]/[[date_m]]/[[date_y]]" 14 | "pdf02","Datei aufgebaut um [[date_h]]:[[date_m]]" 15 | "pdf03","Datei aufgebaut am [[date_d]]/[[date_m]]/[[date_y]] um [[date_h]]:[[date_i]]" 16 | "pdf04","Seite [[page_cu]]/[[page_nb]]" 17 | "pdf05","Die Formulare benötigen Sie den Adobe Reader 9" 18 | "vue01","Seite-Header" 19 | "vue02","Fußzeile" 20 | "vue03","Seite" 21 | "vue04","Visualisierung" 22 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/locale/en.csv: -------------------------------------------------------------------------------- 1 | "err01","The tag <[[OTHER]]> does not yet exist.

If you want to add it, you must create the methods o_[[OTHER]] (for opening) and c_[[OTHER]] (for closure) by following the model of existing tags.

If you create these methods, do not hesitate to send me an email to webmaster@html2pdf.fr to included them in the next version of HTML2PDF." 2 | "err02","Sentence of 1000 lines => too long
Sentence : [[OTHER_0]]
Width box : [[OTHER_1]]
Length text : [[OTHER_2]]
" 3 | "err03","HTML code invalid, a tag is closed too many times: <[[OTHER]]>" 4 | "err04","HTML code invalid, the tags are not closed in an orderly fashion.
Status :
[[OTHER]]
" 5 | "err05","HTML code invalid, all tags must be closed.
Status :
[[OTHER]]
" 6 | "err06","Impossible to load the image [[OTHER]]" 7 | "err07","The content of a TD tag does not fit on only one page" 8 | "err08","<[[OTHER]]> tag not in a <DRAW> tag" 9 | "err09","The using of the <[[OTHER_0]]>> tag has changed, you can not use [[OTHER_1]] anymore. Read the WIKI" 10 | "txt01","ERROR n°" 11 | "txt02","File :" 12 | "txt03","Line :" 13 | "pdf01","Document generated on [[date_y]]-[[date_m]]-[[date_d]]" 14 | "pdf02","Document generated at [[date_h]]:[[date_i]]" 15 | "pdf03","Document generated on [[date_y]]-[[date_m]]-[[date_d]] at [[date_h]]:[[date_i]]" 16 | "pdf04","Page [[page_cu]]/[[page_nb]]" 17 | "pdf05","The forms require the use of Adobe Reader 9" 18 | "vue01","HEADER" 19 | "vue02","FOOTER" 20 | "vue03","PAGE" 21 | "vue04","View" 22 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/locale/es.csv: -------------------------------------------------------------------------------- 1 | "err01","La etiqueta <[[OTHER]]> todavía no existe.

Si quiere añadirla, debe crear los métodos o_[[OTHER]] (para la apertura) y c_[[OTHER]] (para el cierre) siguiendo el modelo de las etiquetas existentes.

Si crea nuevos métodos, envíelos a webmaster@html2pdf.fr para añadirlos a las siguientes versiones de HTML2PDF, y que todo el mundo se pueda beneficiar." 2 | "err02","Frase de 1000 líneas => demasiado larga
Frase : [[OTHER_0]]
Tamaño casilla : [[OTHER_1]]
Tamaño texto : [[OTHER_2]]
" 3 | "err03","Código HTML no válido, una etiqueta tiene un cierre de más : <[[OTHER]]>" 4 | "err04","Código HTML no válido, las etiquetas no estan cerradas en el orden correcto.
Estado :
[[OTHER]]
" 5 | "err05","Código HTML no válido, todas las etiquetas deben tener su cierre.
Estado :
[[OTHER]]
" 6 | "err06","Imposible cargar la imagen [[OTHER]]" 7 | "err07","El contenido de una etiqueta TD no encaja en una sola página" 8 | "err08","<[[OTHER]]> tag not in a <DRAW> tag" 9 | "err09","The using of the <[[OTHER_0]]>> tag has changed, you can not use [[OTHER_1]] anymore. Read the WIKI" 10 | "txt01","ERROR n°" 11 | "txt02","Fichero :" 12 | "txt03","Línea :" 13 | "pdf01","Documento generado el [[date_d]]/[[date_m]]/[[date_y]]" 14 | "pdf02","Documento generado a las [[date_h]]:[[date_i]]" 15 | "pdf03","Documento generado el [[date_d]]/[[date_m]]/[[date_y]] a las [[date_h]]:[[date_i]]" 16 | "pdf04","Página [[page_cu]]/[[page_nb]]" 17 | "pdf05","Los formularios requieren el uso de Adobe Reader 9" 18 | "vue01","ENCABEZADO" 19 | "vue02","PIE DE PÁGINA" 20 | "vue03","PÁGINA" 21 | "vue04","Visualización" 22 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/locale/fr.csv: -------------------------------------------------------------------------------- 1 | "err01","La balise <[[OTHER]]> n'existe pas encore.

Si vous voulez la rajouter, vous devez créer les méthodes o_[[OTHER]] (pour l'ouverture) et c_[[OTHER]] (pour la fermeture) en suivant le modèle des balises existantes.

De plus, si vous créez ces méthodes, n'hésitez pas à en faire profiter tout le monde en m'écrivant sur webmaster@html2pdf.fr afin qu'elles se retrouvent dans la prochaine version d'HTML2PDF." 2 | "err02","Phrase de 1000 lignes => trop long
Phrase : [[OTHER_0]]
Largeur case : [[OTHER_1]]
Longueur text : [[OTHER_2]]
" 3 | "err03","Code HTML non valide, une balise est fermée en trop : <[[OTHER]]>" 4 | "err04","Code HTML non valide, les balises ne sont pas fermées dans le bon ordre.
Etat :
[[OTHER]]
" 5 | "err05","Code HTML non valide, toutes les balises doivent être fermées.
Etat :
[[OTHER]]
" 6 | "err06","Impossible de charger l'image [[OTHER]]" 7 | "err07","le contenu d'une balise TD ne rentre pas sur une seule page" 8 | "err08","Balise <[[OTHER]]> non contenu dans une balise <DRAW>" 9 | "err09","L'utilisation de la balise <[[OTHER_0]]> a changé, vous ne pouvez plus utiliser [[OTHER_1]]. Lisez le WIKI" 10 | "txt01","ERREUR n°" 11 | "txt02","Fichier :" 12 | "txt03","Ligne :" 13 | "pdf01","Document généré le [[date_d]]/[[date_m]]/[[date_y]]" 14 | "pdf02","Document généré à [[date_h]]:[[date_i]]" 15 | "pdf03","Document généré le [[date_d]]/[[date_m]]/[[date_y]] à [[date_h]]:[[date_i]]" 16 | "pdf04","Page [[page_cu]]/[[page_nb]]" 17 | "pdf05","Les formulaires nécessitent l'utilisation de Adobe Reader 9" 18 | "vue01","HEADER" 19 | "vue02","FOOTER" 20 | "vue03","PAGE" 21 | "vue04","Restitution" 22 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/locale/it.csv: -------------------------------------------------------------------------------- 1 | "err01","Il tag <[[OTHER]]> non esiste ancora.

Se si desidera aggiungere, è necessario creare metodi o_[[OTHER]] (di apertura) e C_[[OTHER]] (per la chiusura) secondo il modello esistente di tag.

Inoltre, se si creare questi metodi, non esitate a portare il mondo intero ha scritto su webmaster@html2pdf.fr in modo che alla fine nella prossima versione di HTML2PDF." 2 | "err02","Citazione di 1000 linee => troppo lungo
frase : [[OTHER_0]]
casella Larghezza : [[OTHER_1]]
Lunghezza testo : [[OTHER_2]]
" 3 | "err03","HTML non valido, un tag è chiusa troppo <[[OTHER]]>" 4 | "err04","HTML non validi, i tag non sono chiusi nel corretto ordine.
Stato :
[[OTHER]]
" 5 | "err05","HTML non valido, tutte le tag deve essere chiuso.
Stato :
[[OTHER]]
" 6 | "err06","Impossibile caricare l'immagine [[OTHER]]" 7 | "err07","il contenuto di un tag TD non rientra in una sola pagina" 8 | "err08","<[[OTHER]]> tag not in a <DRAW> tag" 9 | "err09","The using of the <[[OTHER_0]]>> tag has changed, you can not use [[OTHER_1]] anymore. Read the WIKI" 10 | "txt01","ERRORE n°" 11 | "txt02","File :" 12 | "txt03","Linea :" 13 | "pdf01","Documento generato il [[date_d]]/[[date_m]]/[[date_y]]" 14 | "pdf02","Documento generato [[date_h]]:[[date_i]]" 15 | "pdf03","Documento generato il [[date_d]]/[[date_m]]/[[date_y]] nel [[date_h]]:[[date_i]]" 16 | "pdf04","Pagina [[page_cu]]/[[page_nb]]" 17 | "pdf05","I moduli richiedono l'uso di Adobe Reader 9" 18 | "vue01","HEADER" 19 | "vue02","FOOTER" 20 | "vue03","PAGINA" 21 | "vue04","Visualization" 22 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/locale/nl.csv: -------------------------------------------------------------------------------- 1 | "err01","De tag <[[OTHER]]> bestaat nog niet.

Om deze toe te voegen, gebruik de methods o_[[OTHER]] (om te openen) en c_[[OTHER]] (om te sluiten) volgens het model van de bestaande tags.

Als u deze methods maakt, stuur deze dan a.u.b. via e-mail naar webmaster@html2pdf.fr voor opname in de volgende versie van HTML2PDF." 2 | "err02","Zin van 1000 regels => te lang
Zin : [[OTHER_0]]
Kaderbreedte : [[OTHER_1]]
Tekstlengte : [[OTHER_2]]
" 3 | "err03","Ongeldige HTML code, overvloedig afgesloten tag : <[[OTHER]]>" 4 | "err04","Ongeldige HTML code, de tags zijn niet correct afgesloten.
Status :
[[OTHER]]
" 5 | "err05","Ongeldige HTML code, alle tags dienen te zijn gesloten.
Status :
[[OTHER]]
" 6 | "err06","Kan afbeelding niet laden: [[OTHER]]" 7 | "err07","De inhoud van de cel () past niet op een pagina" 8 | "err08","<[[OTHER]]> tag not in a <DRAW> tag" 9 | "err09","The using of the <[[OTHER_0]]>> tag has changed, you can not use [[OTHER_1]] anymore. Read the WIKI" 10 | "txt01","Fout nr" 11 | "txt02","Bestand :" 12 | "txt03","Regel :" 13 | "pdf01","Document gemaakt op [[date_d]]-[[date_m]]-[[date_y]]" 14 | "pdf02","Document gemaakt om [[date_h]]:[[date_i]]" 15 | "pdf03","Document gemaakt op [[date_d]]-[[date_m]]-[[date_y]] om [[date_h]]:[[date_i]]" 16 | "pdf04","Pagina [[page_cu]] van [[page_nb]]" 17 | "pdf05","De formulieren vereisen het gebruik van Adobe Reader 9" 18 | "vue01","Paginakop" 19 | "vue02","Paginavoet" 20 | "vue03","Pagina" 21 | "vue04","Bekijken" 22 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/locale/pt.csv: -------------------------------------------------------------------------------- 1 | "err01","A tag <[[OTHER]]> ainda não existe.

Se você quer inserí-la, deve criar os métodos o_[[OTHER]] (para abrí-la) e c_[[OTHER]] (para fechá-la) seguindo o modelo das tags existentes.

Se você criar novos métodos, os envie para webmaster@html2pdf.fr para que as próximas versões de HTML2PDF, e o restante do mundo se beneficie com isso." 2 | "err02","Frase de 1000 linhas => muito grande
Frase : [[OTHER_0]]
Tamanho do quadro : [[OTHER_1]]
Tamanho do texto : [[OTHER_2]]
" 3 | "err03","Código HTML não válido, uma tag está com fechamento sobrando : <[[OTHER]]>" 4 | "err04","Código HTML não válido, as tags não estão fechadas na ordem correta.
Estado :
[[OTHER]]
" 5 | "err05","Código HTML não válido, todas as tags devem ser fechadas.
Estado :
[[OTHER]]
" 6 | "err06","Impossível carregar imagem [[OTHER]]" 7 | "err07","O conteúdo de uma tag TD não se encaixa em apenas uma página" 8 | "err08","<[[OTHER]]> tag not in a <DRAW> tag" 9 | "err09","The using of the <[[OTHER_0]]>> tag has changed, you can not use [[OTHER_1]] anymore. Read the WIKI" 10 | "txt01","ERRO n°" 11 | "txt02","Arquivo :" 12 | "txt03","Linha :" 13 | "pdf01","Documento generado em [[date_d]]/[[date_m]]/[[date_y]]" 14 | "pdf02","Documento generado às [[date_h]]:[[date_i]]" 15 | "pdf03","Documento generado em [[date_d]]/[[date_m]]/[[date_y]] às [[date_h]]:[[date_i]]" 16 | "pdf04","Página [[page_cu]]/[[page_nb]]" 17 | "pdf05","Os formulários exigem a utilização do Adobe Reader 9" 18 | "vue01","CABEÇALHO" 19 | "vue02","RODAPÉ" 20 | "vue03","PÁGINA" 21 | "vue04","Visualização" 22 | -------------------------------------------------------------------------------- /assets/plugins/html2pdf_v4.03/locale/tr.csv: -------------------------------------------------------------------------------- 1 | "err01","<[[OTHER]]> etiketi bulunamadý.

Eklemek isterseniz, o_[[OTHER]] þeklinde açýp, c_[[OTHER]] þeklinde kapatabilirsiniz.

Bu þekilde etiketler üretirseniz lütfen daha sonraki HTML2PDF versiyonuna eklenmek üzere bana gönderin. ( webmaster@html2pdf.fr )." 2 | "err02","Ýçerik 1000 satýrdan fazla ve gerekenden uzun
Konu : [[OTHER_0]]
Geniþlik : [[OTHER_1]]
Yazý boyutu : [[OTHER_2]]
" 3 | "err03","HTML kodu hatalý, etiket birden fazla defa kapatýlmýþ: <[[OTHER]]>" 4 | "err04","HTML kodu hatalý, etiketler gereken düzen içinde kapatýlmamýþ.
Durum :
[[OTHER]]
" 5 | "err05","HTML kodu hatalý, bütün etiketler kapatýlmalý.
Durum :
[[OTHER]]
" 6 | "err06","Resim dosyasý okunamýyor [[OTHER]]" 7 | "err07","TD içeriði bir sayfaya sýðmýyor" 8 | "err08","<[[OTHER]]> tag not in a <DRAW> tag" 9 | "err09","The using of the <[[OTHER_0]]>> tag has changed, you can not use [[OTHER_1]] anymore. Read the WIKI" 10 | "txt01","HATA n°" 11 | "txt02","Dosya :" 12 | "txt03","Satýr :" 13 | "pdf01","Doküman üretilme tarihi [[date_y]]-[[date_m]]-[[date_d]]" 14 | "pdf02","Doküman üretilme tarihi [[date_h]]:[[date_i]]" 15 | "pdf03","Doküman üretilme tarihi [[date_y]]-[[date_m]]-[[date_d]] saati [[date_h]]:[[date_i]]" 16 | "pdf04","Sayfa [[page_cu]]/[[page_nb]]" 17 | "pdf05","Adobe Reader 9 gerektirir" 18 | "vue01","DOSYA ÜSTÜ" 19 | "vue02","DOSYA ALTI" 20 | "vue03","SAYFA" 21 | "vue04","Görünüm" 22 | -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- 1 | 10 | 11 | connect_error) { 23 | die('Koneksi Database Gagal : '.$mysqli->connect_error); 24 | } 25 | ?> -------------------------------------------------------------------------------- /config/fungsi_rupiah.php: -------------------------------------------------------------------------------- 1 | 3) 14 | { 15 | $rp = "." . substr($uang,-3) . $rp; 16 | $lebar = strlen($uang) - 3; 17 | $uang = substr($uang,0,$lebar); 18 | $digit = strlen($uang); 19 | } 20 | $rp = $uang . $rp . ",-"; 21 | return $rp; 22 | } 23 | ?> 24 | -------------------------------------------------------------------------------- /config/fungsi_tanggal.php: -------------------------------------------------------------------------------- 1 | dd-mm-yyyy dan memberi nama bulan 3 | function tgl_eng_to_ind($tgl) { 4 | $tanggal = explode('-',$tgl); 5 | $kdbl = $tanggal[1]; 6 | 7 | if ($kdbl == '01') { 8 | $nbln = 'Januari'; 9 | } 10 | else if ($kdbl == '02') { 11 | $nbln = 'Februari'; 12 | } 13 | else if ($kdbl == '03') { 14 | $nbln = 'Maret'; 15 | } 16 | else if ($kdbl == '04') { 17 | $nbln = 'April'; 18 | } 19 | else if ($kdbl == '05') { 20 | $nbln = 'Mei'; 21 | } 22 | else if ($kdbl == '06') { 23 | $nbln = 'Juni'; 24 | } 25 | else if ($kdbl == '07') { 26 | $nbln = 'Juli'; 27 | } 28 | else if ($kdbl == '08') { 29 | $nbln = 'Agustus'; 30 | } 31 | else if ($kdbl == '09') { 32 | $nbln = 'September'; 33 | } 34 | else if ($kdbl == '10') { 35 | $nbln = 'Oktober'; 36 | } 37 | else if ($kdbl == '11') { 38 | $nbln = 'November'; 39 | } 40 | else if ($kdbl == '12') { 41 | $nbln = 'Desember'; 42 | } 43 | else { 44 | $nbln = ''; 45 | } 46 | 47 | $tgl_ind = $tanggal[0]." ".$nbln." ".$tanggal[2]; 48 | return $tgl_ind; 49 | } 50 | ?> 51 | -------------------------------------------------------------------------------- /content.php: -------------------------------------------------------------------------------- 1 | 10 | 11 | "; 22 | } 23 | // jika user sudah login, maka jalankan perintah untuk pemanggilan file halaman konten 24 | else { 25 | // jika halaman konten yang dipilih beranda, panggil file view beranda 26 | if ($_GET['module'] == 'beranda') { 27 | include "modules/beranda/view.php"; 28 | } 29 | 30 | // jika halaman konten yang dipilih obat, panggil file view obat 31 | elseif ($_GET['module'] == 'obat') { 32 | include "modules/obat/view.php"; 33 | } 34 | 35 | // jika halaman konten yang dipilih form obat, panggil file form obat 36 | elseif ($_GET['module'] == 'form_obat') { 37 | include "modules/obat/form.php"; 38 | } 39 | // ----------------------------------------------------------------------------- 40 | 41 | // jika halaman konten yang dipilih obat masuk, panggil file view obat masuk 42 | elseif ($_GET['module'] == 'obat_masuk') { 43 | include "modules/obat-masuk/view.php"; 44 | } 45 | 46 | // jika halaman konten yang dipilih form obat masuk, panggil file form obat masuk 47 | elseif ($_GET['module'] == 'form_obat_masuk') { 48 | include "modules/obat-masuk/form.php"; 49 | } 50 | // ----------------------------------------------------------------------------- 51 | 52 | // jika halaman konten yang dipilih laporan stok, panggil file view laporan stok 53 | elseif ($_GET['module'] == 'lap_stok') { 54 | include "modules/lap-stok/view.php"; 55 | } 56 | // ----------------------------------------------------------------------------- 57 | 58 | // jika halaman konten yang dipilih laporan obat masuk, panggil file view laporan obat masuk 59 | elseif ($_GET['module'] == 'lap_obat_masuk') { 60 | include "modules/lap-obat-masuk/view.php"; 61 | } 62 | // ----------------------------------------------------------------------------- 63 | 64 | // jika halaman konten yang dipilih user, panggil file view user 65 | elseif ($_GET['module'] == 'user') { 66 | include "modules/user/view.php"; 67 | } 68 | 69 | // jika halaman konten yang dipilih form user, panggil file form user 70 | elseif ($_GET['module'] == 'form_user') { 71 | include "modules/user/form.php"; 72 | } 73 | // ----------------------------------------------------------------------------- 74 | 75 | // jika halaman konten yang dipilih profil, panggil file view profil 76 | elseif ($_GET['module'] == 'profil') { 77 | include "modules/profil/view.php"; 78 | } 79 | 80 | // jika halaman konten yang dipilih form profil, panggil file form profil 81 | elseif ($_GET['module'] == 'form_profil') { 82 | include "modules/profil/form.php"; 83 | } 84 | // ----------------------------------------------------------------------------- 85 | 86 | // jika halaman konten yang dipilih password, panggil file view password 87 | elseif ($_GET['module'] == 'password') { 88 | include "modules/password/view.php"; 89 | } 90 | } 91 | ?> -------------------------------------------------------------------------------- /images/user/1469574176_users-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/images/user/1469574176_users-7.png -------------------------------------------------------------------------------- /images/user/indrasatya.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/images/user/indrasatya.jpg -------------------------------------------------------------------------------- /images/user/kadina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/images/user/kadina.png -------------------------------------------------------------------------------- /images/user/user-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/aplikasi-persediaan-obat/133fe81702c89a5fd790e438c8d778af7fd8b250/images/user/user-default.png -------------------------------------------------------------------------------- /login-check.php: -------------------------------------------------------------------------------- 1 | 10 | 11 | 0) { 31 | $data = mysqli_fetch_assoc($query); 32 | 33 | session_start(); 34 | $_SESSION['id_user'] = $data['id_user']; 35 | $_SESSION['username'] = $data['username']; 36 | $_SESSION['password'] = $data['password']; 37 | $_SESSION['nama_user'] = $data['nama_user']; 38 | $_SESSION['hak_akses'] = $data['hak_akses']; 39 | 40 | // lalu alihkan ke halaman user 41 | header("Location: main.php?module=beranda"); 42 | } 43 | 44 | // jika data tidak ada, alihkan ke halaman login dan tampilkan pesan = 1 45 | else { 46 | header("Location: index.php?alert=1"); 47 | } 48 | } 49 | ?> -------------------------------------------------------------------------------- /logout.php: -------------------------------------------------------------------------------- 1 | 10 | 11 | -------------------------------------------------------------------------------- /modules/lap-obat-masuk/view.php: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 |
13 |

14 | Laporan Data Obat Masuk 15 |

16 | 21 |
22 | 23 | 24 |
25 |
26 |
27 | 28 | 29 |
30 | 31 |
32 |
33 | 34 |
35 | 36 |
37 | 38 |
39 | 40 | 41 |
42 | 43 |
44 |
45 |
46 | 47 | 56 |
57 |
58 |
59 |
60 |
-------------------------------------------------------------------------------- /modules/lap-stok/view.php: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 |
13 |

14 | Laporan Stok Obat 15 | 16 | 17 | Cetak 18 | 19 |

20 | 21 |
22 | 23 | 24 |
25 |
26 |
27 |
28 |
29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | "; 65 | $no++; 66 | } 67 | ?> 68 | 69 |
No.Kode ObatNama ObatHarga BeliHarga JualStokSatuan
$no$data[kode_obat]$data[nama_obat]Rp. $harga_beliRp. $harga_jual$data[stok]$data[satuan]
70 |
71 |
72 |
73 |
74 |
10 | 11 | 32 | 33 |
34 |
35 | 36 | $satuan 37 |
38 |
39 | "; 40 | } else { 41 | echo "
42 | 43 |
44 |
45 | 46 | Satuan obat tidak ditemukan 47 |
48 |
49 |
"; 50 | } 51 | } 52 | ?> -------------------------------------------------------------------------------- /modules/obat-masuk/proses.php: -------------------------------------------------------------------------------- 1 | 10 | 11 | "; 21 | } 22 | // jika user sudah login, maka jalankan perintah untuk insert, update, dan delete 23 | else { 24 | if ($_GET['act']=='insert') { 25 | if (isset($_POST['simpan'])) { 26 | // ambil data hasil submit dari form 27 | $kode_transaksi = mysqli_real_escape_string($mysqli, trim($_POST['kode_transaksi'])); 28 | 29 | $tanggal = mysqli_real_escape_string($mysqli, trim($_POST['tanggal_masuk'])); 30 | $exp = explode('-',$tanggal); 31 | $tanggal_masuk = $exp[2]."-".$exp[1]."-".$exp[0]; 32 | 33 | $kode_obat = mysqli_real_escape_string($mysqli, trim($_POST['kode_obat'])); 34 | $jumlah_masuk = mysqli_real_escape_string($mysqli, trim($_POST['jumlah_masuk'])); 35 | $total_stok = mysqli_real_escape_string($mysqli, trim($_POST['total_stok'])); 36 | 37 | $created_user = $_SESSION['id_user']; 38 | 39 | // perintah query untuk menyimpan data ke tabel obat masuk 40 | $query = mysqli_query($mysqli, "INSERT INTO is_obat_masuk(kode_transaksi,tanggal_masuk,kode_obat,jumlah_masuk,created_user) 41 | VALUES('$kode_transaksi','$tanggal_masuk','$kode_obat','$jumlah_masuk','$created_user')") 42 | or die('Ada kesalahan pada query insert : '.mysqli_error($mysqli)); 43 | 44 | // cek query 45 | if ($query) { 46 | // perintah query untuk mengubah data pada tabel obat 47 | $query1 = mysqli_query($mysqli, "UPDATE is_obat SET stok = '$total_stok' 48 | WHERE kode_obat = '$kode_obat'") 49 | or die('Ada kesalahan pada query update : '.mysqli_error($mysqli)); 50 | 51 | // cek query 52 | if ($query1) { 53 | // jika berhasil tampilkan pesan berhasil simpan data 54 | header("location: ../../main.php?module=obat_masuk&alert=1"); 55 | } 56 | } 57 | } 58 | } 59 | } 60 | ?> -------------------------------------------------------------------------------- /modules/password/proses.php: -------------------------------------------------------------------------------- 1 | 10 | 11 | "; 21 | } 22 | // jika user sudah login, maka jalankan perintah untuk ubah password 23 | else { 24 | if (isset($_POST['simpan'])) { 25 | if (isset($_SESSION['id_user'])) { 26 | // ambil data hasil submit dari form 27 | $old_pass = md5(mysqli_real_escape_string($mysqli, trim($_POST['old_pass']))); 28 | $new_pass = md5(mysqli_real_escape_string($mysqli, trim($_POST['new_pass']))); 29 | $retype_pass = md5(mysqli_real_escape_string($mysqli, trim($_POST['retype_pass']))); 30 | 31 | // ambil data hasil session user 32 | $id_user = $_SESSION['id_user']; 33 | 34 | // seleksi password dari tabel user untuk dicek 35 | $sql = mysqli_query($mysqli, "SELECT password FROM is_users WHERE id_user=$id_user") 36 | or die('Ada kesalahan pada query seleksi password : '.mysqli_error($mysqli)); 37 | $data = mysqli_fetch_assoc($sql); 38 | 39 | // fungsi untuk pengecekan password sebelum diubah 40 | // jika input password lama tidak sama dengan password di database, 41 | // alihkan ke halaman ubah password dan tampilkan pesan = 1 42 | if ($old_pass != $data['password']){ 43 | header("Location: ../../main.php?module=password&alert=1"); 44 | } 45 | 46 | // jika input password lama sama dengan password didatabase, jalankan perintah untuk pengecekan selanjutnya 47 | else { 48 | 49 | // jika input password baru tidak sama dengan input ulangi password baru, 50 | // alihkan ke halaman ubah password dan tampilkan pesan = 2 51 | if ($new_pass != $retype_pass){ 52 | header("Location: ../../main.php?module=password&alert=2"); 53 | } 54 | 55 | // selain itu, jalankan perintah update password 56 | else { 57 | // perintah query untuk mengubah data pada tabel user 58 | $query = mysqli_query($mysqli, "UPDATE is_users SET password = '$new_pass' 59 | WHERE id_user = '$id_user'") 60 | or die('Ada kesalahan pada query update password : '.mysqli_error($mysqli)); 61 | 62 | // cek query 63 | if ($query) { 64 | // jika berhasil tampilkan pesan berhasil update data 65 | header("location: ../../main.php?module=password&alert=3"); 66 | } 67 | } 68 | } 69 | } 70 | } 71 | } 72 | ?> -------------------------------------------------------------------------------- /top-menu.php: -------------------------------------------------------------------------------- 1 | 10 | 11 | 22 | 23 | --------------------------------------------------------------------------------