├── .gitattributes ├── .gitignore ├── README.md ├── application ├── .htaccess ├── cache │ ├── .htaccess │ └── index.html ├── config │ ├── autoload.php │ ├── config.php │ ├── constants.php │ ├── database.php │ ├── doctypes.php │ ├── foreign_chars.php │ ├── hooks.php │ ├── index.html │ ├── mimes.php │ ├── profiler.php │ ├── routes.php │ ├── smileys.php │ └── user_agents.php ├── controllers │ ├── index.html │ └── welcome.php ├── core │ ├── Admin_Controller.php │ ├── Client_Center_Controller.php │ ├── Cron_Controller.php │ ├── MY_Controller.php │ ├── MY_Loader.php │ ├── MY_Model.php │ ├── MY_Router.php │ └── index.html ├── errors │ ├── error_404.php │ ├── error_db.php │ ├── error_general.php │ ├── error_php.php │ └── index.html ├── helpers │ ├── MY_text_helper.php │ ├── dompdf │ │ ├── LICENSE.LGPL │ │ ├── dompdf.php │ │ ├── dompdf_config.inc.php │ │ ├── include │ │ │ ├── absolute_positioner.cls.php │ │ │ ├── abstract_renderer.cls.php │ │ │ ├── attribute_translator.cls.php │ │ │ ├── block_frame_decorator.cls.php │ │ │ ├── block_frame_reflower.cls.php │ │ │ ├── block_positioner.cls.php │ │ │ ├── block_renderer.cls.php │ │ │ ├── cached_pdf_decorator.cls.php │ │ │ ├── canvas.cls.php │ │ │ ├── canvas_factory.cls.php │ │ │ ├── cellmap.cls.php │ │ │ ├── cpdf_adapter.cls.php │ │ │ ├── dompdf.cls.php │ │ │ ├── dompdf_exception.cls.php │ │ │ ├── dompdf_internal_exception.cls.php │ │ │ ├── file.skel │ │ │ ├── font_metrics.cls.php │ │ │ ├── frame.cls.php │ │ │ ├── frame_decorator.cls.php │ │ │ ├── frame_factory.cls.php │ │ │ ├── frame_reflower.cls.php │ │ │ ├── frame_tree.cls.php │ │ │ ├── functions.inc.php │ │ │ ├── gd_adapter.cls.php │ │ │ ├── generated_frame_reflower.cls.php │ │ │ ├── image_cache.cls.php │ │ │ ├── image_frame_decorator.cls.php │ │ │ ├── image_frame_reflower.cls.php │ │ │ ├── image_renderer.cls.php │ │ │ ├── inline_frame_decorator.cls.php │ │ │ ├── inline_frame_reflower.cls.php │ │ │ ├── inline_positioner.cls.php │ │ │ ├── inline_renderer.cls.php │ │ │ ├── list_bullet_frame_decorator.cls.php │ │ │ ├── list_bullet_frame_reflower.cls.php │ │ │ ├── list_bullet_image_frame_decorator.cls.php │ │ │ ├── list_bullet_positioner.cls.php │ │ │ ├── list_bullet_renderer.cls.php │ │ │ ├── null_frame_decorator.cls.php │ │ │ ├── null_frame_reflower.cls.php │ │ │ ├── null_positioner.cls.php │ │ │ ├── page_cache.cls.php │ │ │ ├── page_frame_decorator.cls.php │ │ │ ├── page_frame_reflower.cls.php │ │ │ ├── pdflib_adapter.cls.php │ │ │ ├── php_evaluator.cls.php │ │ │ ├── positioner.cls.php │ │ │ ├── renderer.cls.php │ │ │ ├── style.cls.php │ │ │ ├── stylesheet.cls.php │ │ │ ├── table_cell_frame_decorator.cls.php │ │ │ ├── table_cell_frame_reflower.cls.php │ │ │ ├── table_cell_positioner.cls.php │ │ │ ├── table_cell_renderer.cls.php │ │ │ ├── table_frame_decorator.cls.php │ │ │ ├── table_frame_reflower.cls.php │ │ │ ├── table_row_frame_decorator.cls.php │ │ │ ├── table_row_frame_reflower.cls.php │ │ │ ├── table_row_group_frame_decorator.cls.php │ │ │ ├── table_row_group_frame_reflower.cls.php │ │ │ ├── table_row_positioner.cls.php │ │ │ ├── tcpdf_adapter.cls.php │ │ │ ├── text_frame_decorator.cls.php │ │ │ ├── text_frame_reflower.cls.php │ │ │ └── text_renderer.cls.php │ │ ├── lib │ │ │ ├── class.pdf.php │ │ │ ├── fonts │ │ │ │ ├── Courier-Bold.afm │ │ │ │ ├── Courier-Bold.ufm │ │ │ │ ├── Courier-BoldOblique.afm │ │ │ │ ├── Courier-BoldOblique.ufm │ │ │ │ ├── Courier-Oblique.afm │ │ │ │ ├── Courier-Oblique.ufm │ │ │ │ ├── Courier.afm │ │ │ │ ├── Courier.ufm │ │ │ │ ├── Helvetica-Bold.afm │ │ │ │ ├── Helvetica-Bold.ufm │ │ │ │ ├── Helvetica-BoldOblique.afm │ │ │ │ ├── Helvetica-BoldOblique.ufm │ │ │ │ ├── Helvetica-Oblique.afm │ │ │ │ ├── Helvetica-Oblique.ufm │ │ │ │ ├── Helvetica.afm │ │ │ │ ├── Helvetica.ufm │ │ │ │ ├── Symbol.afm │ │ │ │ ├── Symbol.ufm │ │ │ │ ├── Times-Bold.afm │ │ │ │ ├── Times-Bold.ufm │ │ │ │ ├── Times-BoldItalic.afm │ │ │ │ ├── Times-BoldItalic.ufm │ │ │ │ ├── Times-Italic.afm │ │ │ │ ├── Times-Italic.ufm │ │ │ │ ├── Times-Roman.afm │ │ │ │ ├── Times-Roman.ufm │ │ │ │ ├── Zapf-Dingbats.ufm │ │ │ │ ├── ZapfDingbats.afm │ │ │ │ ├── dompdf_font_family_cache.dist │ │ │ │ ├── mustRead.html │ │ │ │ ├── php_Helvetica-Bold.afm │ │ │ │ ├── php_Helvetica.afm │ │ │ │ ├── php_Times-Bold.afm │ │ │ │ └── php_Times-Roman.afm │ │ │ ├── res │ │ │ │ ├── broken_image.png │ │ │ │ └── html.css │ │ │ └── ttf2ufm │ │ │ │ ├── README.TXT │ │ │ │ ├── ttf2ufm-src │ │ │ │ ├── CHANGES │ │ │ │ ├── CHANGES.html │ │ │ │ ├── COPYRIGHT │ │ │ │ ├── FONTS │ │ │ │ ├── FONTS.hpux │ │ │ │ ├── FONTS.hpux.html │ │ │ │ ├── FONTS.html │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── README.FIRST │ │ │ │ ├── README.html │ │ │ │ ├── bdf.c │ │ │ │ ├── bitmap.c │ │ │ │ ├── byteorder.h │ │ │ │ ├── cygbuild.sh │ │ │ │ ├── encodings │ │ │ │ │ ├── README │ │ │ │ │ ├── README.html │ │ │ │ │ ├── adobestd │ │ │ │ │ │ └── adobe-std.tbl │ │ │ │ │ ├── bulgarian │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── encodings.alias │ │ │ │ │ │ ├── ibm-1251.tbl │ │ │ │ │ │ ├── ibm-866.tbl │ │ │ │ │ │ ├── iso8859-5.tbl │ │ │ │ │ │ └── koi8-r.tbl │ │ │ │ │ ├── cyrillic │ │ │ │ │ │ ├── encodings.alias │ │ │ │ │ │ ├── ibm-1251.tbl │ │ │ │ │ │ ├── ibm-866.tbl │ │ │ │ │ │ ├── iso8859-5.tbl │ │ │ │ │ │ └── koi8-r.tbl │ │ │ │ │ ├── latin1 │ │ │ │ │ │ └── iso8859-1.tbl │ │ │ │ │ ├── latin2 │ │ │ │ │ │ └── iso8859-2.tbl │ │ │ │ │ ├── latin4 │ │ │ │ │ │ ├── iso8859-4 │ │ │ │ │ │ └── iso8859-4.tbl │ │ │ │ │ ├── latin5 │ │ │ │ │ │ └── iso8859-9 │ │ │ │ │ └── russian │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── encodings.alias │ │ │ │ │ │ ├── ibm-1251.tbl │ │ │ │ │ │ ├── ibm-866.tbl │ │ │ │ │ │ ├── iso8859-5.tbl │ │ │ │ │ │ └── koi8-r.tbl │ │ │ │ ├── ft.c │ │ │ │ ├── global.h │ │ │ │ ├── maps │ │ │ │ │ ├── CP1250.map │ │ │ │ │ ├── CP1251.map │ │ │ │ │ ├── T2A_compact.map │ │ │ │ │ ├── adobe-standard-encoding.map │ │ │ │ │ ├── cubg5plus.map │ │ │ │ │ ├── cubig5.map │ │ │ │ │ ├── cugb.map │ │ │ │ │ ├── cugbk.map │ │ │ │ │ ├── ubig5.map │ │ │ │ │ ├── ugb.map │ │ │ │ │ ├── ugbk.map │ │ │ │ │ └── unicode-sample.map │ │ │ │ ├── other │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── README.html │ │ │ │ │ ├── bmpfont.h │ │ │ │ │ ├── bz.c │ │ │ │ │ ├── bzscreen.c │ │ │ │ │ ├── bzscreen.h │ │ │ │ │ ├── cmpf.c │ │ │ │ │ ├── cntstems.pl │ │ │ │ │ ├── dmpf.c │ │ │ │ │ ├── lst.pl │ │ │ │ │ ├── showdf │ │ │ │ │ └── showg │ │ │ │ ├── pt1.c │ │ │ │ ├── pt1.h │ │ │ │ ├── runt1asm.c │ │ │ │ ├── scripts │ │ │ │ │ ├── convert │ │ │ │ │ ├── convert.cfg.sample │ │ │ │ │ ├── forceiso │ │ │ │ │ ├── frommap │ │ │ │ │ ├── html2man │ │ │ │ │ ├── inst_dir │ │ │ │ │ ├── inst_file │ │ │ │ │ ├── mkrel │ │ │ │ │ ├── t1fdir │ │ │ │ │ ├── trans │ │ │ │ │ ├── unhtml │ │ │ │ │ └── x2gs │ │ │ │ ├── t1asm.c │ │ │ │ ├── ttf.c │ │ │ │ ├── ttf.h │ │ │ │ ├── ttf2pt1.1 │ │ │ │ ├── ttf2pt1.c │ │ │ │ ├── ttf2pt1_convert.1 │ │ │ │ ├── ttf2pt1_x2gs.1 │ │ │ │ ├── ttf2ufm │ │ │ │ ├── version.h │ │ │ │ ├── winbuild.bat │ │ │ │ └── windows.h │ │ │ │ └── ttf2ufm.exe │ │ └── load_font.php │ ├── dompdf_helper.php │ ├── index.html │ ├── mcb_app_helper.php │ ├── mcb_currency_helper.php │ ├── mcb_custom_helper.php │ ├── mcb_date_helper.php │ ├── mcb_icon_helper.php │ ├── mcb_invoice_amount_helper.php │ ├── mcb_invoice_helper.php │ ├── mcb_invoice_item_helper.php │ ├── mcb_invoice_payment_helper.php │ ├── mcb_numbers_helper.php │ ├── mpdf_helper.php │ └── uri_helper.php ├── hooks │ └── index.html ├── index.html ├── language │ └── english │ │ ├── index.html │ │ └── mcb_lang.php ├── libraries │ ├── MY_Form_validation.php │ ├── Merchant │ │ ├── Merchant.php │ │ └── drivers │ │ │ └── Merchant_paypal.php │ ├── db_backup.php │ ├── index.html │ └── redir.php ├── logs │ └── index.html ├── models │ └── index.html ├── modules_core │ ├── calendar │ │ ├── controllers │ │ │ ├── calendar.php │ │ │ └── index.html │ │ ├── credit.txt │ │ ├── models │ │ │ └── index.html │ │ └── views │ │ │ ├── header_insert.php │ │ │ ├── index.html │ │ │ └── index.php │ ├── client_center │ │ ├── config │ │ │ └── config.php │ │ ├── controllers │ │ │ ├── account.php │ │ │ ├── admin.php │ │ │ ├── admin_settings.php │ │ │ └── client_center.php │ │ ├── models │ │ │ ├── mdl_client_account.php │ │ │ ├── mdl_client_auth.php │ │ │ ├── mdl_client_center.php │ │ │ └── mdl_client_sessions.php │ │ └── views │ │ │ ├── account_change_pw.php │ │ │ ├── account_form.php │ │ │ ├── admin_form.php │ │ │ ├── admin_index.php │ │ │ ├── admin_sidebar.php │ │ │ ├── footer.php │ │ │ ├── header.php │ │ │ ├── index.php │ │ │ ├── invoice_table.php │ │ │ ├── invoice_view.php │ │ │ ├── invoice_view_tab_general.php │ │ │ ├── invoice_view_tab_items.php │ │ │ ├── invoice_view_tab_notes.php │ │ │ ├── invoice_view_tab_taxes.php │ │ │ ├── invoices.php │ │ │ ├── jquery_client_ac.php │ │ │ ├── jquery_hover_links.php │ │ │ ├── jquery_invoice_generate.php │ │ │ ├── merchant_cancel.php │ │ │ ├── merchant_return.php │ │ │ ├── payment_table.php │ │ │ ├── quotes.php │ │ │ ├── settings.php │ │ │ ├── sidebar.php │ │ │ └── sidebar_change_pw.php │ ├── clients │ │ ├── controllers │ │ │ ├── clients.php │ │ │ └── contacts.php │ │ ├── models │ │ │ ├── mdl_client_table.php │ │ │ ├── mdl_clients.php │ │ │ └── mdl_contacts.php │ │ └── views │ │ │ ├── contact_details.php │ │ │ ├── contact_form.php │ │ │ ├── contact_table.php │ │ │ ├── details.php │ │ │ ├── details_header.php │ │ │ ├── form.php │ │ │ ├── index.php │ │ │ ├── sidebar.php │ │ │ ├── tab_details.php │ │ │ └── tab_settings.php │ ├── cron │ │ └── controllers │ │ │ └── cron.php │ ├── dashboard │ │ ├── config │ │ │ └── config.php │ │ ├── controllers │ │ │ ├── dashboard.php │ │ │ ├── dashboard_settings.php │ │ │ └── dashboard_widgets.php │ │ └── views │ │ │ ├── btn_add.php │ │ │ ├── dashboard.php │ │ │ ├── example_form_container.php │ │ │ ├── example_index_container.php │ │ │ ├── footer.php │ │ │ ├── header.php │ │ │ ├── header_menu.php │ │ │ ├── jquery_clear_password.php │ │ │ ├── jquery_date_picker.php │ │ │ ├── jquery_set_focus.php │ │ │ ├── jquery_table_dnd.php │ │ │ ├── jquery_tabs.php │ │ │ ├── record_not_found.php │ │ │ ├── settings.php │ │ │ ├── sidebar.php │ │ │ ├── sidebar_control_center.php │ │ │ ├── sidebar_custom_modules.php │ │ │ ├── sidebar_invoice_balance.php │ │ │ ├── sidebar_invoice_paid.php │ │ │ ├── sidebar_quicklinks.php │ │ │ └── system_messages.php │ ├── email_templates │ │ ├── controllers │ │ │ └── email_templates.php │ │ ├── models │ │ │ └── mdl_email_templates.php │ │ └── views │ │ │ ├── form.php │ │ │ └── index.php │ ├── fields │ │ ├── controllers │ │ │ └── fields.php │ │ ├── models │ │ │ └── mdl_fields.php │ │ └── views │ │ │ ├── custom_fields.php │ │ │ ├── form.php │ │ │ ├── index.php │ │ │ └── sidebar.php │ ├── inventory │ │ ├── config │ │ │ └── config.php │ │ ├── controllers │ │ │ ├── inventory.php │ │ │ └── inventory_types.php │ │ ├── models │ │ │ ├── mdl_inventory.php │ │ │ ├── mdl_inventory_stock.php │ │ │ ├── mdl_inventory_table.php │ │ │ └── mdl_inventory_types.php │ │ └── views │ │ │ ├── form.php │ │ │ ├── index.php │ │ │ ├── inventory_select.php │ │ │ ├── inventory_types_form.php │ │ │ ├── inventory_types_index.php │ │ │ ├── jquery_inventory_form.php │ │ │ ├── jquery_stock_adjustment.php │ │ │ └── sidebar.php │ ├── invoice_search │ │ ├── config │ │ │ └── config.php │ │ ├── controllers │ │ │ ├── invoice_search.php │ │ │ └── search_results.php │ │ ├── models │ │ │ └── mdl_invoice_search.php │ │ └── views │ │ │ ├── html.php │ │ │ ├── results.php │ │ │ └── search.php │ ├── invoice_statuses │ │ ├── controllers │ │ │ └── invoice_statuses.php │ │ ├── models │ │ │ └── mdl_invoice_statuses.php │ │ └── views │ │ │ ├── form.php │ │ │ ├── index.php │ │ │ └── sidebar.php │ ├── invoices │ │ ├── config │ │ │ └── config.php │ │ ├── controllers │ │ │ ├── invoice_api.php │ │ │ ├── invoice_groups.php │ │ │ ├── invoice_settings.php │ │ │ ├── invoices.php │ │ │ ├── items.php │ │ │ ├── upload_logo.php │ │ │ └── widgets.php │ │ ├── libraries │ │ │ └── Lib_output.php │ │ ├── models │ │ │ ├── mdl_invoice_amounts.php │ │ │ ├── mdl_invoice_groups.php │ │ │ ├── mdl_invoice_history.php │ │ │ ├── mdl_invoice_reports.php │ │ │ ├── mdl_invoice_table.php │ │ │ ├── mdl_invoice_tags.php │ │ │ ├── mdl_invoices.php │ │ │ └── mdl_items.php │ │ └── views │ │ │ ├── choose_client.php │ │ │ ├── index.php │ │ │ ├── invoice_edit.php │ │ │ ├── invoice_edit_header.php │ │ │ ├── invoice_group_form.php │ │ │ ├── invoice_group_index.php │ │ │ ├── invoice_group_sidebar.php │ │ │ ├── invoice_table.php │ │ │ ├── invoice_templates │ │ │ ├── default.php │ │ │ ├── default_item_taxes.php │ │ │ ├── default_no_tax.php │ │ │ └── default_quote.php │ │ │ ├── item_form.php │ │ │ ├── item_table.php │ │ │ ├── jquery_choose_client.php │ │ │ ├── jquery_client_ac.php │ │ │ ├── jquery_invoice_generate.php │ │ │ ├── jquery_invoice_search.php │ │ │ ├── quote_to_invoice.php │ │ │ ├── settings.php │ │ │ ├── sidebar.php │ │ │ ├── tab_general.php │ │ │ ├── tab_history.php │ │ │ ├── tab_notes.php │ │ │ ├── tab_taxes.php │ │ │ └── upload_logo.php │ ├── mailer │ │ ├── config │ │ │ └── config.php │ │ ├── controllers │ │ │ ├── invoice_mailer.php │ │ │ ├── mailer.php │ │ │ └── payment_mailer.php │ │ ├── helpers │ │ │ ├── phpmailer │ │ │ │ ├── LICENSE │ │ │ │ ├── README │ │ │ │ ├── aboutus.html │ │ │ │ ├── changelog.txt │ │ │ │ ├── class.phpmailer.php │ │ │ │ ├── class.pop3.php │ │ │ │ ├── class.smtp.php │ │ │ │ ├── language │ │ │ │ │ ├── phpmailer.lang-ar.php │ │ │ │ │ ├── phpmailer.lang-br.php │ │ │ │ │ ├── phpmailer.lang-ca.php │ │ │ │ │ ├── phpmailer.lang-ch.php │ │ │ │ │ ├── phpmailer.lang-cz.php │ │ │ │ │ ├── phpmailer.lang-de.php │ │ │ │ │ ├── phpmailer.lang-dk.php │ │ │ │ │ ├── phpmailer.lang-es.php │ │ │ │ │ ├── phpmailer.lang-et.php │ │ │ │ │ ├── phpmailer.lang-fi.php │ │ │ │ │ ├── phpmailer.lang-fo.php │ │ │ │ │ ├── phpmailer.lang-fr.php │ │ │ │ │ ├── phpmailer.lang-hu.php │ │ │ │ │ ├── phpmailer.lang-it.php │ │ │ │ │ ├── phpmailer.lang-ja.php │ │ │ │ │ ├── phpmailer.lang-nl.php │ │ │ │ │ ├── phpmailer.lang-no.php │ │ │ │ │ ├── phpmailer.lang-pl.php │ │ │ │ │ ├── phpmailer.lang-ro.php │ │ │ │ │ ├── phpmailer.lang-ru.php │ │ │ │ │ ├── phpmailer.lang-se.php │ │ │ │ │ ├── phpmailer.lang-tr.php │ │ │ │ │ ├── phpmailer.lang-zh.php │ │ │ │ │ └── phpmailer.lang-zh_cn.php │ │ │ │ └── mailtest.php │ │ │ └── phpmailer_helper.php │ │ ├── models │ │ │ └── mdl_mailer.php │ │ └── views │ │ │ ├── invoice_mailer.php │ │ │ ├── invoice_overdue.php │ │ │ ├── payment_mailer.php │ │ │ └── settings.php │ ├── mcb_data │ │ └── models │ │ │ ├── mdl_mcb_client_data.php │ │ │ ├── mdl_mcb_data.php │ │ │ └── mdl_mcb_userdata.php │ ├── mcb_language │ │ └── controllers │ │ │ └── mcb_language.php │ ├── mcb_menu │ │ ├── config │ │ │ └── mcb_menu.php │ │ └── controllers │ │ │ └── mcb_menu.php │ ├── mcb_modules │ │ ├── controllers │ │ │ └── mcb_modules.php │ │ ├── models │ │ │ └── mdl_mcb_modules.php │ │ └── views │ │ │ └── index.php │ ├── payments │ │ ├── config │ │ │ └── config.php │ │ ├── controllers │ │ │ ├── client_credits.php │ │ │ ├── payment_handler.php │ │ │ ├── payment_methods.php │ │ │ ├── payment_settings.php │ │ │ ├── payment_widgets.php │ │ │ └── payments.php │ │ ├── libraries │ │ │ └── Lib_output.php │ │ ├── models │ │ │ ├── mdl_client_credits.php │ │ │ ├── mdl_payment_methods.php │ │ │ ├── mdl_payment_table.php │ │ │ └── mdl_payments.php │ │ └── views │ │ │ ├── client_credit_form.php │ │ │ ├── client_credit_index.php │ │ │ ├── client_credit_table.php │ │ │ ├── form.php │ │ │ ├── form_no_invoices.php │ │ │ ├── index.php │ │ │ ├── jquery_receipt_generate.php │ │ │ ├── payment_method_form.php │ │ │ ├── payment_method_index.php │ │ │ ├── receipt_templates │ │ │ └── default.php │ │ │ ├── settings.php │ │ │ ├── sidebar.php │ │ │ └── table.php │ ├── reports │ │ ├── controllers │ │ │ ├── client_list.php │ │ │ ├── client_statement.php │ │ │ ├── inventory_history.php │ │ │ ├── inventory_sales.php │ │ │ ├── reports.php │ │ │ ├── sales.php │ │ │ └── sales_by_customer.php │ │ ├── models │ │ │ ├── mdl_client_statement.php │ │ │ ├── mdl_inventory_sales.php │ │ │ ├── mdl_sales.php │ │ │ └── mdl_sales_by_customer.php │ │ └── views │ │ │ ├── client_list.php │ │ │ ├── client_list_pdf.php │ │ │ ├── client_list_view.php │ │ │ ├── client_statement.php │ │ │ ├── client_statement_pdf.php │ │ │ ├── client_statement_view.php │ │ │ ├── css.php │ │ │ ├── inventory_history.php │ │ │ ├── inventory_history_pdf.php │ │ │ ├── inventory_history_view.php │ │ │ ├── inventory_sales.php │ │ │ ├── inventory_sales_pdf.php │ │ │ ├── inventory_sales_view.php │ │ │ ├── partial_output_type.php │ │ │ ├── sales.php │ │ │ ├── sales_by_customer.php │ │ │ ├── sales_by_customer_pdf.php │ │ │ ├── sales_by_customer_view.php │ │ │ ├── sales_pdf.php │ │ │ └── sales_view.php │ ├── sessions │ │ ├── controllers │ │ │ └── sessions.php │ │ ├── models │ │ │ ├── mdl_auth.php │ │ │ └── mdl_recover.php │ │ └── views │ │ │ ├── login.php │ │ │ ├── recover.php │ │ │ └── recover_email.php │ ├── settings │ │ ├── config │ │ │ └── config.php │ │ ├── controllers │ │ │ ├── other_settings.php │ │ │ └── settings.php │ │ └── views │ │ │ ├── other_settings.php │ │ │ ├── settings.php │ │ │ └── sidebar.php │ ├── setup │ │ ├── controllers │ │ │ └── setup.php │ │ ├── libraries │ │ │ └── Lib_mysql.php │ │ ├── models │ │ │ └── mdl_setup.php │ │ └── views │ │ │ ├── ci_db_config.php │ │ │ ├── db_config.php │ │ │ ├── db_show_config.php │ │ │ ├── footer.php │ │ │ ├── header.php │ │ │ ├── index.php │ │ │ ├── install.php │ │ │ ├── install_status.php │ │ │ ├── license_agreement.php │ │ │ ├── upgrade.php │ │ │ └── upgrade_status.php │ ├── tax_rates │ │ ├── controllers │ │ │ └── tax_rates.php │ │ ├── models │ │ │ └── mdl_tax_rates.php │ │ └── views │ │ │ ├── form.php │ │ │ ├── index.php │ │ │ └── sidebar.php │ ├── templates │ │ ├── controllers │ │ │ └── templates.php │ │ ├── models │ │ │ └── mdl_templates.php │ │ └── views │ │ │ ├── form.php │ │ │ └── index.php │ ├── testing │ │ └── controllers │ │ │ └── testing.php │ └── users │ │ ├── controllers │ │ ├── profile.php │ │ └── users.php │ │ ├── models │ │ └── mdl_users.php │ │ └── views │ │ ├── change_password.php │ │ ├── form.php │ │ ├── form_tab_details.php │ │ ├── form_tab_settings.php │ │ ├── index.php │ │ └── sidebar.php ├── modules_custom │ ├── export │ │ ├── config │ │ │ └── config.php │ │ ├── controllers │ │ │ ├── export.php │ │ │ └── setup.php │ │ ├── language │ │ │ └── english │ │ │ │ └── export_lang.php │ │ ├── models │ │ │ └── mdl_export.php │ │ └── views │ │ │ └── index.php │ └── tasks │ │ ├── config │ │ └── config.php │ │ ├── controllers │ │ ├── setup.php │ │ ├── task_settings.php │ │ └── tasks.php │ │ ├── language │ │ └── english │ │ │ └── tasks_lang.php │ │ ├── models │ │ └── mdl_tasks.php │ │ └── views │ │ ├── dashboard_widget.php │ │ ├── form.php │ │ ├── header_menu.php │ │ ├── index.php │ │ ├── jquery_tasks.php │ │ ├── settings.php │ │ ├── sidebar.php │ │ └── table.php ├── third_party │ ├── MX │ │ ├── Base.php │ │ ├── Ci.php │ │ ├── Config.php │ │ ├── Controller.php │ │ ├── Lang.php │ │ ├── Loader.php │ │ ├── Modules.php │ │ └── Router.php │ └── index.html └── views │ ├── index.html │ └── welcome_message.php ├── assets ├── jquery │ ├── fullcalendar │ │ ├── GPL-LICENSE.txt │ │ ├── MIT-LICENSE.txt │ │ ├── changelog.txt │ │ ├── fullcalendar.css │ │ ├── fullcalendar.js │ │ ├── fullcalendar.min.js │ │ ├── fullcalendar.print.css │ │ └── gcal.js │ ├── hoverIntent.js │ ├── jquery-1.4.2.min.js │ ├── jquery-1.6.2.min.js │ ├── jquery-ui-1.8.16.custom.min.js │ ├── jquery-ui-1.8.4.custom.min.js │ ├── jquery.clearpassword.js │ ├── jquery.maskedinput-1.2.2.min.js │ ├── jquery.relcopy.js │ ├── jquery.tablednd_0_5.js │ ├── settings_email.js │ ├── superfish.js │ ├── supersubs.js │ └── ui-themes │ │ ├── black-tie │ │ ├── images │ │ │ ├── ui-bg_diagonals-thick_8_333333_40x40.png │ │ │ ├── ui-bg_flat_65_ffffff_40x100.png │ │ │ ├── ui-bg_glass_40_111111_1x400.png │ │ │ ├── ui-bg_glass_55_1c1c1c_1x400.png │ │ │ ├── ui-bg_highlight-hard_100_f9f9f9_1x100.png │ │ │ ├── ui-bg_highlight-hard_40_aaaaaa_1x100.png │ │ │ ├── ui-bg_highlight-soft_50_aaaaaa_1x100.png │ │ │ ├── ui-bg_inset-hard_45_cd0a0a_1x100.png │ │ │ ├── ui-bg_inset-hard_55_ffeb80_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_4ca300_256x240.png │ │ │ ├── ui-icons_bbbbbb_256x240.png │ │ │ ├── ui-icons_ededed_256x240.png │ │ │ ├── ui-icons_ffcf29_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ └── jquery-ui-1.8.4.custom.css │ │ ├── myclientbase │ │ ├── images │ │ │ ├── ui-bg_flat_65_ffffff_40x100.png │ │ │ ├── ui-bg_flat_8_333333_40x100.png │ │ │ ├── ui-bg_glass_40_111111_1x400.png │ │ │ ├── ui-bg_glass_55_1c1c1c_1x400.png │ │ │ ├── ui-bg_highlight-hard_100_f9f9f9_1x100.png │ │ │ ├── ui-bg_highlight-hard_40_aaaaaa_1x100.png │ │ │ ├── ui-bg_highlight-soft_50_aaaaaa_1x100.png │ │ │ ├── ui-bg_inset-hard_45_cd0a0a_1x100.png │ │ │ ├── ui-bg_inset-hard_55_ffeb80_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_4ca300_256x240.png │ │ │ ├── ui-icons_bbbbbb_256x240.png │ │ │ ├── ui-icons_ededed_256x240.png │ │ │ ├── ui-icons_ffcf29_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ └── jquery-ui-1.8.16.custom.css │ │ ├── myclientbase1 │ │ ├── images │ │ │ ├── ui-bg_flat_65_ffffff_40x100.png │ │ │ ├── ui-bg_glass_40_111111_1x400.png │ │ │ ├── ui-bg_glass_55_1c1c1c_1x400.png │ │ │ ├── ui-bg_glass_8_333333_1x400.png │ │ │ ├── ui-bg_highlight-hard_100_f9f9f9_1x100.png │ │ │ ├── ui-bg_highlight-hard_40_aaaaaa_1x100.png │ │ │ ├── ui-bg_highlight-soft_50_aaaaaa_1x100.png │ │ │ ├── ui-bg_inset-hard_45_cd0a0a_1x100.png │ │ │ ├── ui-bg_inset-hard_55_ffeb80_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_4ca300_256x240.png │ │ │ ├── ui-icons_bbbbbb_256x240.png │ │ │ ├── ui-icons_ededed_256x240.png │ │ │ ├── ui-icons_ffcf29_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ └── jquery-ui-1.8.4.custom.css │ │ └── smoothness │ │ ├── images │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_888888_256x240.png │ │ └── ui-icons_cd0a0a_256x240.png │ │ └── jquery-ui-1.8.4.custom.css └── style │ ├── css │ ├── general.css │ ├── grid.css │ ├── ie6.css │ ├── ie7.css │ ├── installer.css │ ├── layout.css │ ├── messages.css │ ├── pagination.css │ ├── reset.css │ ├── styles.css │ └── superfish.css │ └── img │ ├── header_bg.jpg │ ├── icons │ ├── check.png │ ├── copy.png │ ├── delete.png │ ├── edit.png │ ├── generate_invoice.png │ ├── generate_receipt.png │ ├── invoice.png │ ├── printer_48.png │ ├── quote.png │ └── zoom.png │ ├── messages │ ├── error.png │ ├── info.png │ ├── success.png │ └── warning.png │ ├── navigation_bg.jpg │ ├── navigation_hover_bg.jpg │ ├── navigation_selected_bg.jpg │ ├── section_bg.jpg │ └── th_bg.jpg ├── index.php ├── license_codeigniter.txt ├── license_myclientbase.txt ├── robots.txt ├── system ├── .htaccess ├── core │ ├── Benchmark.php │ ├── CodeIgniter.php │ ├── Common.php │ ├── Config.php │ ├── Controller.php │ ├── Exceptions.php │ ├── Hooks.php │ ├── Input.php │ ├── Lang.php │ ├── Loader.php │ ├── Model.php │ ├── Output.php │ ├── Router.php │ ├── Security.php │ ├── URI.php │ ├── Utf8.php │ └── index.html ├── database │ ├── DB.php │ ├── DB_active_rec.php │ ├── DB_cache.php │ ├── DB_driver.php │ ├── DB_forge.php │ ├── DB_result.php │ ├── DB_utility.php │ ├── drivers │ │ ├── cubrid │ │ │ ├── cubrid_driver.php │ │ │ ├── cubrid_forge.php │ │ │ ├── cubrid_result.php │ │ │ ├── cubrid_utility.php │ │ │ └── index.html │ │ ├── index.html │ │ ├── mssql │ │ │ ├── index.html │ │ │ ├── mssql_driver.php │ │ │ ├── mssql_forge.php │ │ │ ├── mssql_result.php │ │ │ └── mssql_utility.php │ │ ├── mysql │ │ │ ├── index.html │ │ │ ├── mysql_driver.php │ │ │ ├── mysql_forge.php │ │ │ ├── mysql_result.php │ │ │ └── mysql_utility.php │ │ ├── mysqli │ │ │ ├── index.html │ │ │ ├── mysqli_driver.php │ │ │ ├── mysqli_forge.php │ │ │ ├── mysqli_result.php │ │ │ └── mysqli_utility.php │ │ ├── oci8 │ │ │ ├── index.html │ │ │ ├── oci8_driver.php │ │ │ ├── oci8_forge.php │ │ │ ├── oci8_result.php │ │ │ └── oci8_utility.php │ │ ├── odbc │ │ │ ├── index.html │ │ │ ├── odbc_driver.php │ │ │ ├── odbc_forge.php │ │ │ ├── odbc_result.php │ │ │ └── odbc_utility.php │ │ ├── pdo │ │ │ ├── index.html │ │ │ ├── pdo_driver.php │ │ │ ├── pdo_forge.php │ │ │ ├── pdo_result.php │ │ │ └── pdo_utility.php │ │ ├── postgre │ │ │ ├── index.html │ │ │ ├── postgre_driver.php │ │ │ ├── postgre_forge.php │ │ │ ├── postgre_result.php │ │ │ └── postgre_utility.php │ │ ├── sqlite │ │ │ ├── index.html │ │ │ ├── sqlite_driver.php │ │ │ ├── sqlite_forge.php │ │ │ ├── sqlite_result.php │ │ │ └── sqlite_utility.php │ │ └── sqlsrv │ │ │ ├── index.html │ │ │ ├── sqlsrv_driver.php │ │ │ ├── sqlsrv_forge.php │ │ │ ├── sqlsrv_result.php │ │ │ └── sqlsrv_utility.php │ └── index.html ├── fonts │ ├── index.html │ └── texb.ttf ├── helpers │ ├── array_helper.php │ ├── captcha_helper.php │ ├── cookie_helper.php │ ├── date_helper.php │ ├── directory_helper.php │ ├── download_helper.php │ ├── email_helper.php │ ├── file_helper.php │ ├── form_helper.php │ ├── html_helper.php │ ├── index.html │ ├── inflector_helper.php │ ├── language_helper.php │ ├── number_helper.php │ ├── path_helper.php │ ├── security_helper.php │ ├── smiley_helper.php │ ├── string_helper.php │ ├── text_helper.php │ ├── typography_helper.php │ ├── url_helper.php │ └── xml_helper.php ├── index.html ├── language │ ├── english │ │ ├── calendar_lang.php │ │ ├── date_lang.php │ │ ├── db_lang.php │ │ ├── email_lang.php │ │ ├── form_validation_lang.php │ │ ├── ftp_lang.php │ │ ├── imglib_lang.php │ │ ├── index.html │ │ ├── migration_lang.php │ │ ├── number_lang.php │ │ ├── profiler_lang.php │ │ ├── unit_test_lang.php │ │ └── upload_lang.php │ └── index.html └── libraries │ ├── Cache │ ├── Cache.php │ └── drivers │ │ ├── Cache_apc.php │ │ ├── Cache_dummy.php │ │ ├── Cache_file.php │ │ └── Cache_memcached.php │ ├── Calendar.php │ ├── Cart.php │ ├── Driver.php │ ├── Email.php │ ├── Encrypt.php │ ├── Form_validation.php │ ├── Ftp.php │ ├── Image_lib.php │ ├── Javascript.php │ ├── Log.php │ ├── Migration.php │ ├── Pagination.php │ ├── Parser.php │ ├── Profiler.php │ ├── Security.php │ ├── Session.php │ ├── Sha1.php │ ├── Table.php │ ├── Trackback.php │ ├── Typography.php │ ├── Unit_test.php │ ├── Upload.php │ ├── User_agent.php │ ├── Xmlrpc.php │ ├── Xmlrpcs.php │ ├── Zip.php │ ├── index.html │ └── javascript │ └── Jquery.php └── uploads ├── .empty ├── invoice_logos └── .empty └── temp └── .empty /.gitattributes: -------------------------------------------------------------------------------- 1 | *.doc diff=astextplain 2 | *.DOC diff=astextplain 3 | *.docx diff=astextplain 4 | *.DOCX diff=astextplain 5 | *.dot diff=astextplain 6 | *.DOT diff=astextplain 7 | *.pdf diff=astextplain 8 | *.PDF diff=astextplain 9 | *.rtf diff=astextplain 10 | *.RTF diff=astextplain 11 | 12 | *.jpg binary 13 | *.png binary 14 | *.gif binary 15 | 16 | *.cs text=auto diff=csharp 17 | *.vb text=auto 18 | *.c text=auto 19 | *.cpp text=auto 20 | *.cxx text=auto 21 | *.h text=auto 22 | *.hxx text=auto 23 | *.py text=auto 24 | *.rb text=auto 25 | *.java text=auto 26 | *.html text=auto 27 | *.htm text=auto 28 | *.css text=auto 29 | *.scss text=auto 30 | *.sass text=auto 31 | *.less text=auto 32 | *.js text=auto 33 | *.lisp text=auto 34 | *.clj text=auto 35 | *.sql text=auto 36 | *.php text=auto 37 | *.lua text=auto 38 | *.m text=auto 39 | *.asm text=auto 40 | *.erl text=auto 41 | *.fs text=auto 42 | *.fsx text=auto 43 | *.hs text=auto 44 | 45 | *.csproj text=auto merge=union 46 | *.vbproj text=auto merge=union 47 | *.fsproj text=auto merge=union 48 | *.dbproj text=auto merge=union 49 | *.sln text=auto eol=crlf merge=union 50 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /application/helpers/mpdf/ 2 | system/config/database.php 3 | */logs/log-*.php 4 | */logs/!index.html 5 | */cache/* 6 | */cache/!index.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/config/doctypes.php: -------------------------------------------------------------------------------- 1 | '', 5 | 'xhtml1-strict' => '', 6 | 'xhtml1-trans' => '', 7 | 'xhtml1-frame' => '', 8 | 'html5' => '', 9 | 'html4-strict' => '', 10 | 'html4-trans' => '', 11 | 'html4-frame' => '' 12 | ); 13 | 14 | /* End of file doctypes.php */ 15 | /* Location: ./application/config/doctypes.php */ -------------------------------------------------------------------------------- /application/config/hooks.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 |