├── .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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/README.md -------------------------------------------------------------------------------- /application/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /application/cache/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all -------------------------------------------------------------------------------- /application/cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/cache/index.html -------------------------------------------------------------------------------- /application/config/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/config/autoload.php -------------------------------------------------------------------------------- /application/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/config/config.php -------------------------------------------------------------------------------- /application/config/constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/config/constants.php -------------------------------------------------------------------------------- /application/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/config/database.php -------------------------------------------------------------------------------- /application/config/doctypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/config/doctypes.php -------------------------------------------------------------------------------- /application/config/foreign_chars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/config/foreign_chars.php -------------------------------------------------------------------------------- /application/config/hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/config/hooks.php -------------------------------------------------------------------------------- /application/config/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/config/index.html -------------------------------------------------------------------------------- /application/config/mimes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/config/mimes.php -------------------------------------------------------------------------------- /application/config/profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/config/profiler.php -------------------------------------------------------------------------------- /application/config/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/config/routes.php -------------------------------------------------------------------------------- /application/config/smileys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/config/smileys.php -------------------------------------------------------------------------------- /application/config/user_agents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/config/user_agents.php -------------------------------------------------------------------------------- /application/controllers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/controllers/index.html -------------------------------------------------------------------------------- /application/controllers/welcome.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/controllers/welcome.php -------------------------------------------------------------------------------- /application/core/Admin_Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/core/Admin_Controller.php -------------------------------------------------------------------------------- /application/core/Client_Center_Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/core/Client_Center_Controller.php -------------------------------------------------------------------------------- /application/core/Cron_Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/core/Cron_Controller.php -------------------------------------------------------------------------------- /application/core/MY_Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/core/MY_Controller.php -------------------------------------------------------------------------------- /application/core/MY_Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/core/MY_Loader.php -------------------------------------------------------------------------------- /application/core/MY_Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/core/MY_Model.php -------------------------------------------------------------------------------- /application/core/MY_Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/core/MY_Router.php -------------------------------------------------------------------------------- /application/core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/core/index.html -------------------------------------------------------------------------------- /application/errors/error_404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/errors/error_404.php -------------------------------------------------------------------------------- /application/errors/error_db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/errors/error_db.php -------------------------------------------------------------------------------- /application/errors/error_general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/errors/error_general.php -------------------------------------------------------------------------------- /application/errors/error_php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/errors/error_php.php -------------------------------------------------------------------------------- /application/errors/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/errors/index.html -------------------------------------------------------------------------------- /application/helpers/MY_text_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/MY_text_helper.php -------------------------------------------------------------------------------- /application/helpers/dompdf/LICENSE.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/LICENSE.LGPL -------------------------------------------------------------------------------- /application/helpers/dompdf/dompdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/dompdf.php -------------------------------------------------------------------------------- /application/helpers/dompdf/dompdf_config.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/dompdf_config.inc.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/absolute_positioner.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/absolute_positioner.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/abstract_renderer.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/abstract_renderer.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/attribute_translator.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/attribute_translator.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/block_frame_decorator.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/block_frame_decorator.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/block_frame_reflower.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/block_frame_reflower.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/block_positioner.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/block_positioner.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/block_renderer.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/block_renderer.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/cached_pdf_decorator.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/cached_pdf_decorator.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/canvas.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/canvas.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/canvas_factory.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/canvas_factory.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/cellmap.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/cellmap.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/cpdf_adapter.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/cpdf_adapter.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/dompdf.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/dompdf.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/dompdf_exception.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/dompdf_exception.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/dompdf_internal_exception.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/dompdf_internal_exception.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/file.skel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/file.skel -------------------------------------------------------------------------------- /application/helpers/dompdf/include/font_metrics.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/font_metrics.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/frame.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/frame.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/frame_decorator.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/frame_decorator.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/frame_factory.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/frame_factory.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/frame_reflower.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/frame_reflower.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/frame_tree.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/frame_tree.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/functions.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/functions.inc.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/gd_adapter.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/gd_adapter.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/generated_frame_reflower.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/generated_frame_reflower.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/image_cache.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/image_cache.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/image_frame_decorator.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/image_frame_decorator.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/image_frame_reflower.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/image_frame_reflower.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/image_renderer.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/image_renderer.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/inline_frame_decorator.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/inline_frame_decorator.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/inline_frame_reflower.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/inline_frame_reflower.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/inline_positioner.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/inline_positioner.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/inline_renderer.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/inline_renderer.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/list_bullet_frame_reflower.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/list_bullet_frame_reflower.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/list_bullet_positioner.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/list_bullet_positioner.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/list_bullet_renderer.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/list_bullet_renderer.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/null_frame_decorator.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/null_frame_decorator.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/null_frame_reflower.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/null_frame_reflower.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/null_positioner.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/null_positioner.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/page_cache.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/page_cache.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/page_frame_decorator.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/page_frame_decorator.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/page_frame_reflower.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/page_frame_reflower.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/pdflib_adapter.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/pdflib_adapter.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/php_evaluator.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/php_evaluator.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/positioner.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/positioner.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/renderer.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/renderer.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/style.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/style.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/stylesheet.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/stylesheet.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/table_cell_frame_decorator.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/table_cell_frame_decorator.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/table_cell_frame_reflower.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/table_cell_frame_reflower.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/table_cell_positioner.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/table_cell_positioner.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/table_cell_renderer.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/table_cell_renderer.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/table_frame_decorator.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/table_frame_decorator.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/table_frame_reflower.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/table_frame_reflower.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/table_row_frame_decorator.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/table_row_frame_decorator.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/table_row_frame_reflower.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/table_row_frame_reflower.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/table_row_positioner.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/table_row_positioner.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/tcpdf_adapter.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/tcpdf_adapter.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/text_frame_decorator.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/text_frame_decorator.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/text_frame_reflower.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/text_frame_reflower.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/include/text_renderer.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/include/text_renderer.cls.php -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/class.pdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/class.pdf.php -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/fonts/Courier-Bold.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/fonts/Courier-Bold.afm -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/fonts/Courier-Bold.ufm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/fonts/Courier-Bold.ufm -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/fonts/Courier-BoldOblique.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/fonts/Courier-BoldOblique.afm -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/fonts/Courier-BoldOblique.ufm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/fonts/Courier-BoldOblique.ufm -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/fonts/Courier-Oblique.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/fonts/Courier-Oblique.afm -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/fonts/Courier-Oblique.ufm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/fonts/Courier-Oblique.ufm -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/fonts/Courier.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/fonts/Courier.afm -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/fonts/Courier.ufm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/fonts/Courier.ufm -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/fonts/Helvetica-Bold.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/fonts/Helvetica-Bold.afm -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/fonts/Helvetica-Bold.ufm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/fonts/Helvetica-Bold.ufm -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/fonts/Helvetica-BoldOblique.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/fonts/Helvetica-BoldOblique.afm -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/fonts/Helvetica-BoldOblique.ufm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/fonts/Helvetica-BoldOblique.ufm -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/fonts/Helvetica-Oblique.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/fonts/Helvetica-Oblique.afm -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/fonts/Helvetica-Oblique.ufm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/fonts/Helvetica-Oblique.ufm -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/fonts/Helvetica.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/fonts/Helvetica.afm -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/fonts/Helvetica.ufm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/fonts/Helvetica.ufm -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/fonts/Symbol.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/fonts/Symbol.afm -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/fonts/Symbol.ufm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/fonts/Symbol.ufm -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/fonts/Times-Bold.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/fonts/Times-Bold.afm -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/fonts/Times-Bold.ufm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/fonts/Times-Bold.ufm -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/fonts/Times-BoldItalic.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/fonts/Times-BoldItalic.afm -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/fonts/Times-BoldItalic.ufm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/fonts/Times-BoldItalic.ufm -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/fonts/Times-Italic.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/fonts/Times-Italic.afm -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/fonts/Times-Italic.ufm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/fonts/Times-Italic.ufm -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/fonts/Times-Roman.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/fonts/Times-Roman.afm -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/fonts/Times-Roman.ufm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/fonts/Times-Roman.ufm -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/fonts/Zapf-Dingbats.ufm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/fonts/Zapf-Dingbats.ufm -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/fonts/ZapfDingbats.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/fonts/ZapfDingbats.afm -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/fonts/dompdf_font_family_cache.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/fonts/dompdf_font_family_cache.dist -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/fonts/mustRead.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/fonts/mustRead.html -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/fonts/php_Helvetica-Bold.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/fonts/php_Helvetica-Bold.afm -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/fonts/php_Helvetica.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/fonts/php_Helvetica.afm -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/fonts/php_Times-Bold.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/fonts/php_Times-Bold.afm -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/fonts/php_Times-Roman.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/fonts/php_Times-Roman.afm -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/res/broken_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/res/broken_image.png -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/res/html.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/res/html.css -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/README.TXT -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/CHANGES: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/CHANGES.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/CHANGES.html -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/COPYRIGHT -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/FONTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/FONTS -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/FONTS.hpux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/FONTS.hpux -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/FONTS.hpux.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/FONTS.hpux.html -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/FONTS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/FONTS.html -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/Makefile -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/README -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/README.FIRST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/README.FIRST -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/README.html -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/bdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/bdf.c -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/bitmap.c -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/byteorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/byteorder.h -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/cygbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/cygbuild.sh -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/encodings/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/encodings/README -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/encodings/adobestd/adobe-std.tbl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/encodings/latin1/iso8859-1.tbl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/encodings/latin2/iso8859-2.tbl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/encodings/latin4/iso8859-4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/encodings/latin4/iso8859-4.tbl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/encodings/latin5/iso8859-9: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/ft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/ft.c -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/global.h -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/maps/CP1250.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/maps/CP1250.map -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/maps/CP1251.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/maps/CP1251.map -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/maps/cubg5plus.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/maps/cubg5plus.map -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/maps/cubig5.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/maps/cubig5.map -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/maps/cugb.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/maps/cugb.map -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/maps/cugbk.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/maps/cugbk.map -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/maps/ubig5.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/maps/ubig5.map -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/maps/ugb.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/maps/ugb.map -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/maps/ugbk.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/maps/ugbk.map -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/other/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/other/Makefile -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/other/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/other/README -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/other/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/other/README.html -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/other/bmpfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/other/bmpfont.h -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/other/bz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/other/bz.c -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/other/bzscreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/other/bzscreen.c -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/other/bzscreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/other/bzscreen.h -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/other/cmpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/other/cmpf.c -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/other/cntstems.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/other/cntstems.pl -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/other/dmpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/other/dmpf.c -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/other/lst.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/other/lst.pl -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/other/showdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/other/showdf -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/other/showg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/other/showg -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/pt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/pt1.c -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/pt1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/pt1.h -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/runt1asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/runt1asm.c -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/scripts/convert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/scripts/convert -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/scripts/forceiso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/scripts/forceiso -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/scripts/frommap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/scripts/frommap -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/scripts/html2man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/scripts/html2man -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/scripts/inst_dir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/scripts/inst_dir -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/scripts/inst_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/scripts/inst_file -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/scripts/mkrel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/scripts/mkrel -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/scripts/t1fdir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/scripts/t1fdir -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/scripts/trans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/scripts/trans -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/scripts/unhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/scripts/unhtml -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/scripts/x2gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/scripts/x2gs -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/t1asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/t1asm.c -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/ttf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/ttf.c -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/ttf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/ttf.h -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/ttf2pt1.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/ttf2pt1.1 -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/ttf2pt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/ttf2pt1.c -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/ttf2pt1_convert.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/ttf2pt1_convert.1 -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/ttf2pt1_x2gs.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/ttf2pt1_x2gs.1 -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/ttf2ufm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/ttf2ufm -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/version.h -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/winbuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/winbuild.bat -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm-src/windows.h -------------------------------------------------------------------------------- /application/helpers/dompdf/lib/ttf2ufm/ttf2ufm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/lib/ttf2ufm/ttf2ufm.exe -------------------------------------------------------------------------------- /application/helpers/dompdf/load_font.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf/load_font.php -------------------------------------------------------------------------------- /application/helpers/dompdf_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/dompdf_helper.php -------------------------------------------------------------------------------- /application/helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/index.html -------------------------------------------------------------------------------- /application/helpers/mcb_app_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/mcb_app_helper.php -------------------------------------------------------------------------------- /application/helpers/mcb_currency_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/mcb_currency_helper.php -------------------------------------------------------------------------------- /application/helpers/mcb_custom_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/mcb_custom_helper.php -------------------------------------------------------------------------------- /application/helpers/mcb_date_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/mcb_date_helper.php -------------------------------------------------------------------------------- /application/helpers/mcb_icon_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/mcb_icon_helper.php -------------------------------------------------------------------------------- /application/helpers/mcb_invoice_amount_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/mcb_invoice_amount_helper.php -------------------------------------------------------------------------------- /application/helpers/mcb_invoice_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/mcb_invoice_helper.php -------------------------------------------------------------------------------- /application/helpers/mcb_invoice_item_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/mcb_invoice_item_helper.php -------------------------------------------------------------------------------- /application/helpers/mcb_invoice_payment_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/mcb_invoice_payment_helper.php -------------------------------------------------------------------------------- /application/helpers/mcb_numbers_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/mcb_numbers_helper.php -------------------------------------------------------------------------------- /application/helpers/mpdf_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/mpdf_helper.php -------------------------------------------------------------------------------- /application/helpers/uri_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/helpers/uri_helper.php -------------------------------------------------------------------------------- /application/hooks/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/hooks/index.html -------------------------------------------------------------------------------- /application/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/index.html -------------------------------------------------------------------------------- /application/language/english/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/language/english/index.html -------------------------------------------------------------------------------- /application/language/english/mcb_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/language/english/mcb_lang.php -------------------------------------------------------------------------------- /application/libraries/MY_Form_validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/libraries/MY_Form_validation.php -------------------------------------------------------------------------------- /application/libraries/Merchant/Merchant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/libraries/Merchant/Merchant.php -------------------------------------------------------------------------------- /application/libraries/Merchant/drivers/Merchant_paypal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/libraries/Merchant/drivers/Merchant_paypal.php -------------------------------------------------------------------------------- /application/libraries/db_backup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/libraries/db_backup.php -------------------------------------------------------------------------------- /application/libraries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/libraries/index.html -------------------------------------------------------------------------------- /application/libraries/redir.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/libraries/redir.php -------------------------------------------------------------------------------- /application/logs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/logs/index.html -------------------------------------------------------------------------------- /application/models/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/models/index.html -------------------------------------------------------------------------------- /application/modules_core/calendar/controllers/calendar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/calendar/controllers/calendar.php -------------------------------------------------------------------------------- /application/modules_core/calendar/controllers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/calendar/controllers/index.html -------------------------------------------------------------------------------- /application/modules_core/calendar/credit.txt: -------------------------------------------------------------------------------- 1 | Calendar module for MyClientBase provided by Omar Orellana -------------------------------------------------------------------------------- /application/modules_core/calendar/models/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/calendar/models/index.html -------------------------------------------------------------------------------- /application/modules_core/calendar/views/header_insert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/calendar/views/header_insert.php -------------------------------------------------------------------------------- /application/modules_core/calendar/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/calendar/views/index.html -------------------------------------------------------------------------------- /application/modules_core/calendar/views/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/calendar/views/index.php -------------------------------------------------------------------------------- /application/modules_core/client_center/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/client_center/config/config.php -------------------------------------------------------------------------------- /application/modules_core/client_center/controllers/account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/client_center/controllers/account.php -------------------------------------------------------------------------------- /application/modules_core/client_center/controllers/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/client_center/controllers/admin.php -------------------------------------------------------------------------------- /application/modules_core/client_center/controllers/admin_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/client_center/controllers/admin_settings.php -------------------------------------------------------------------------------- /application/modules_core/client_center/controllers/client_center.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/client_center/controllers/client_center.php -------------------------------------------------------------------------------- /application/modules_core/client_center/models/mdl_client_account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/client_center/models/mdl_client_account.php -------------------------------------------------------------------------------- /application/modules_core/client_center/models/mdl_client_auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/client_center/models/mdl_client_auth.php -------------------------------------------------------------------------------- /application/modules_core/client_center/models/mdl_client_center.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/client_center/models/mdl_client_center.php -------------------------------------------------------------------------------- /application/modules_core/client_center/models/mdl_client_sessions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/client_center/models/mdl_client_sessions.php -------------------------------------------------------------------------------- /application/modules_core/client_center/views/account_change_pw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/client_center/views/account_change_pw.php -------------------------------------------------------------------------------- /application/modules_core/client_center/views/account_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/client_center/views/account_form.php -------------------------------------------------------------------------------- /application/modules_core/client_center/views/admin_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/client_center/views/admin_form.php -------------------------------------------------------------------------------- /application/modules_core/client_center/views/admin_index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/client_center/views/admin_index.php -------------------------------------------------------------------------------- /application/modules_core/client_center/views/admin_sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/client_center/views/admin_sidebar.php -------------------------------------------------------------------------------- /application/modules_core/client_center/views/footer.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /application/modules_core/client_center/views/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/client_center/views/header.php -------------------------------------------------------------------------------- /application/modules_core/client_center/views/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/client_center/views/index.php -------------------------------------------------------------------------------- /application/modules_core/client_center/views/invoice_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/client_center/views/invoice_table.php -------------------------------------------------------------------------------- /application/modules_core/client_center/views/invoice_view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/client_center/views/invoice_view.php -------------------------------------------------------------------------------- /application/modules_core/client_center/views/invoices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/client_center/views/invoices.php -------------------------------------------------------------------------------- /application/modules_core/client_center/views/jquery_client_ac.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/client_center/views/jquery_client_ac.php -------------------------------------------------------------------------------- /application/modules_core/client_center/views/jquery_hover_links.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/client_center/views/jquery_hover_links.php -------------------------------------------------------------------------------- /application/modules_core/client_center/views/merchant_cancel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/client_center/views/merchant_cancel.php -------------------------------------------------------------------------------- /application/modules_core/client_center/views/merchant_return.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/client_center/views/merchant_return.php -------------------------------------------------------------------------------- /application/modules_core/client_center/views/payment_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/client_center/views/payment_table.php -------------------------------------------------------------------------------- /application/modules_core/client_center/views/quotes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/client_center/views/quotes.php -------------------------------------------------------------------------------- /application/modules_core/client_center/views/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/client_center/views/settings.php -------------------------------------------------------------------------------- /application/modules_core/client_center/views/sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/client_center/views/sidebar.php -------------------------------------------------------------------------------- /application/modules_core/client_center/views/sidebar_change_pw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/client_center/views/sidebar_change_pw.php -------------------------------------------------------------------------------- /application/modules_core/clients/controllers/clients.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/clients/controllers/clients.php -------------------------------------------------------------------------------- /application/modules_core/clients/controllers/contacts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/clients/controllers/contacts.php -------------------------------------------------------------------------------- /application/modules_core/clients/models/mdl_client_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/clients/models/mdl_client_table.php -------------------------------------------------------------------------------- /application/modules_core/clients/models/mdl_clients.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/clients/models/mdl_clients.php -------------------------------------------------------------------------------- /application/modules_core/clients/models/mdl_contacts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/clients/models/mdl_contacts.php -------------------------------------------------------------------------------- /application/modules_core/clients/views/contact_details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/clients/views/contact_details.php -------------------------------------------------------------------------------- /application/modules_core/clients/views/contact_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/clients/views/contact_form.php -------------------------------------------------------------------------------- /application/modules_core/clients/views/contact_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/clients/views/contact_table.php -------------------------------------------------------------------------------- /application/modules_core/clients/views/details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/clients/views/details.php -------------------------------------------------------------------------------- /application/modules_core/clients/views/details_header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/clients/views/details_header.php -------------------------------------------------------------------------------- /application/modules_core/clients/views/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/clients/views/form.php -------------------------------------------------------------------------------- /application/modules_core/clients/views/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/clients/views/index.php -------------------------------------------------------------------------------- /application/modules_core/clients/views/sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/clients/views/sidebar.php -------------------------------------------------------------------------------- /application/modules_core/clients/views/tab_details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/clients/views/tab_details.php -------------------------------------------------------------------------------- /application/modules_core/clients/views/tab_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/clients/views/tab_settings.php -------------------------------------------------------------------------------- /application/modules_core/cron/controllers/cron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/cron/controllers/cron.php -------------------------------------------------------------------------------- /application/modules_core/dashboard/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/dashboard/config/config.php -------------------------------------------------------------------------------- /application/modules_core/dashboard/controllers/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/dashboard/controllers/dashboard.php -------------------------------------------------------------------------------- /application/modules_core/dashboard/controllers/dashboard_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/dashboard/controllers/dashboard_settings.php -------------------------------------------------------------------------------- /application/modules_core/dashboard/controllers/dashboard_widgets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/dashboard/controllers/dashboard_widgets.php -------------------------------------------------------------------------------- /application/modules_core/dashboard/views/btn_add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/dashboard/views/btn_add.php -------------------------------------------------------------------------------- /application/modules_core/dashboard/views/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/dashboard/views/dashboard.php -------------------------------------------------------------------------------- /application/modules_core/dashboard/views/example_form_container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/dashboard/views/example_form_container.php -------------------------------------------------------------------------------- /application/modules_core/dashboard/views/example_index_container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/dashboard/views/example_index_container.php -------------------------------------------------------------------------------- /application/modules_core/dashboard/views/footer.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /application/modules_core/dashboard/views/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/dashboard/views/header.php -------------------------------------------------------------------------------- /application/modules_core/dashboard/views/header_menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/dashboard/views/header_menu.php -------------------------------------------------------------------------------- /application/modules_core/dashboard/views/jquery_clear_password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/dashboard/views/jquery_clear_password.php -------------------------------------------------------------------------------- /application/modules_core/dashboard/views/jquery_date_picker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/dashboard/views/jquery_date_picker.php -------------------------------------------------------------------------------- /application/modules_core/dashboard/views/jquery_set_focus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/dashboard/views/jquery_set_focus.php -------------------------------------------------------------------------------- /application/modules_core/dashboard/views/jquery_table_dnd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/dashboard/views/jquery_table_dnd.php -------------------------------------------------------------------------------- /application/modules_core/dashboard/views/jquery_tabs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/dashboard/views/jquery_tabs.php -------------------------------------------------------------------------------- /application/modules_core/dashboard/views/record_not_found.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/dashboard/views/record_not_found.php -------------------------------------------------------------------------------- /application/modules_core/dashboard/views/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/dashboard/views/settings.php -------------------------------------------------------------------------------- /application/modules_core/dashboard/views/sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/dashboard/views/sidebar.php -------------------------------------------------------------------------------- /application/modules_core/dashboard/views/sidebar_control_center.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/dashboard/views/sidebar_control_center.php -------------------------------------------------------------------------------- /application/modules_core/dashboard/views/sidebar_custom_modules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/dashboard/views/sidebar_custom_modules.php -------------------------------------------------------------------------------- /application/modules_core/dashboard/views/sidebar_invoice_balance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/dashboard/views/sidebar_invoice_balance.php -------------------------------------------------------------------------------- /application/modules_core/dashboard/views/sidebar_invoice_paid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/dashboard/views/sidebar_invoice_paid.php -------------------------------------------------------------------------------- /application/modules_core/dashboard/views/sidebar_quicklinks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/dashboard/views/sidebar_quicklinks.php -------------------------------------------------------------------------------- /application/modules_core/dashboard/views/system_messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/dashboard/views/system_messages.php -------------------------------------------------------------------------------- /application/modules_core/email_templates/views/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/email_templates/views/form.php -------------------------------------------------------------------------------- /application/modules_core/email_templates/views/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/email_templates/views/index.php -------------------------------------------------------------------------------- /application/modules_core/fields/controllers/fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/fields/controllers/fields.php -------------------------------------------------------------------------------- /application/modules_core/fields/models/mdl_fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/fields/models/mdl_fields.php -------------------------------------------------------------------------------- /application/modules_core/fields/views/custom_fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/fields/views/custom_fields.php -------------------------------------------------------------------------------- /application/modules_core/fields/views/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/fields/views/form.php -------------------------------------------------------------------------------- /application/modules_core/fields/views/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/fields/views/index.php -------------------------------------------------------------------------------- /application/modules_core/fields/views/sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/fields/views/sidebar.php -------------------------------------------------------------------------------- /application/modules_core/inventory/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/inventory/config/config.php -------------------------------------------------------------------------------- /application/modules_core/inventory/controllers/inventory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/inventory/controllers/inventory.php -------------------------------------------------------------------------------- /application/modules_core/inventory/controllers/inventory_types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/inventory/controllers/inventory_types.php -------------------------------------------------------------------------------- /application/modules_core/inventory/models/mdl_inventory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/inventory/models/mdl_inventory.php -------------------------------------------------------------------------------- /application/modules_core/inventory/models/mdl_inventory_stock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/inventory/models/mdl_inventory_stock.php -------------------------------------------------------------------------------- /application/modules_core/inventory/models/mdl_inventory_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/inventory/models/mdl_inventory_table.php -------------------------------------------------------------------------------- /application/modules_core/inventory/models/mdl_inventory_types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/inventory/models/mdl_inventory_types.php -------------------------------------------------------------------------------- /application/modules_core/inventory/views/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/inventory/views/form.php -------------------------------------------------------------------------------- /application/modules_core/inventory/views/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/inventory/views/index.php -------------------------------------------------------------------------------- /application/modules_core/inventory/views/inventory_select.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/inventory/views/inventory_select.php -------------------------------------------------------------------------------- /application/modules_core/inventory/views/inventory_types_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/inventory/views/inventory_types_form.php -------------------------------------------------------------------------------- /application/modules_core/inventory/views/inventory_types_index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/inventory/views/inventory_types_index.php -------------------------------------------------------------------------------- /application/modules_core/inventory/views/jquery_inventory_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/inventory/views/jquery_inventory_form.php -------------------------------------------------------------------------------- /application/modules_core/inventory/views/jquery_stock_adjustment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/inventory/views/jquery_stock_adjustment.php -------------------------------------------------------------------------------- /application/modules_core/inventory/views/sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/inventory/views/sidebar.php -------------------------------------------------------------------------------- /application/modules_core/invoice_search/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/invoice_search/config/config.php -------------------------------------------------------------------------------- /application/modules_core/invoice_search/models/mdl_invoice_search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/invoice_search/models/mdl_invoice_search.php -------------------------------------------------------------------------------- /application/modules_core/invoice_search/views/html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/invoice_search/views/html.php -------------------------------------------------------------------------------- /application/modules_core/invoice_search/views/results.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/invoice_search/views/results.php -------------------------------------------------------------------------------- /application/modules_core/invoice_search/views/search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/invoice_search/views/search.php -------------------------------------------------------------------------------- /application/modules_core/invoice_statuses/views/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/invoice_statuses/views/form.php -------------------------------------------------------------------------------- /application/modules_core/invoice_statuses/views/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/invoice_statuses/views/index.php -------------------------------------------------------------------------------- /application/modules_core/invoice_statuses/views/sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/invoice_statuses/views/sidebar.php -------------------------------------------------------------------------------- /application/modules_core/invoices/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/invoices/config/config.php -------------------------------------------------------------------------------- /application/modules_core/invoices/controllers/invoice_api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/invoices/controllers/invoice_api.php -------------------------------------------------------------------------------- /application/modules_core/invoices/controllers/invoice_groups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/invoices/controllers/invoice_groups.php -------------------------------------------------------------------------------- /application/modules_core/invoices/controllers/invoice_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/invoices/controllers/invoice_settings.php -------------------------------------------------------------------------------- /application/modules_core/invoices/controllers/invoices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/invoices/controllers/invoices.php -------------------------------------------------------------------------------- /application/modules_core/invoices/controllers/items.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/invoices/controllers/items.php -------------------------------------------------------------------------------- /application/modules_core/invoices/controllers/upload_logo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/invoices/controllers/upload_logo.php -------------------------------------------------------------------------------- /application/modules_core/invoices/controllers/widgets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/invoices/controllers/widgets.php -------------------------------------------------------------------------------- /application/modules_core/invoices/libraries/Lib_output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/invoices/libraries/Lib_output.php -------------------------------------------------------------------------------- /application/modules_core/invoices/models/mdl_invoice_amounts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/invoices/models/mdl_invoice_amounts.php -------------------------------------------------------------------------------- /application/modules_core/invoices/models/mdl_invoice_groups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/invoices/models/mdl_invoice_groups.php -------------------------------------------------------------------------------- /application/modules_core/invoices/models/mdl_invoice_history.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/invoices/models/mdl_invoice_history.php -------------------------------------------------------------------------------- /application/modules_core/invoices/models/mdl_invoice_reports.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/invoices/models/mdl_invoice_reports.php -------------------------------------------------------------------------------- /application/modules_core/invoices/models/mdl_invoice_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/invoices/models/mdl_invoice_table.php -------------------------------------------------------------------------------- /application/modules_core/invoices/models/mdl_invoice_tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/invoices/models/mdl_invoice_tags.php -------------------------------------------------------------------------------- /application/modules_core/invoices/models/mdl_invoices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/invoices/models/mdl_invoices.php -------------------------------------------------------------------------------- /application/modules_core/invoices/models/mdl_items.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/invoices/models/mdl_items.php -------------------------------------------------------------------------------- /application/modules_core/invoices/views/choose_client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/invoices/views/choose_client.php -------------------------------------------------------------------------------- /application/modules_core/invoices/views/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/invoices/views/index.php -------------------------------------------------------------------------------- /application/modules_core/invoices/views/invoice_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/invoices/views/invoice_edit.php -------------------------------------------------------------------------------- /application/modules_core/invoices/views/invoice_edit_header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/invoices/views/invoice_edit_header.php -------------------------------------------------------------------------------- /application/modules_core/invoices/views/invoice_group_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/invoices/views/invoice_group_form.php -------------------------------------------------------------------------------- /application/modules_core/invoices/views/invoice_group_index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/invoices/views/invoice_group_index.php -------------------------------------------------------------------------------- /application/modules_core/invoices/views/invoice_group_sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/invoices/views/invoice_group_sidebar.php -------------------------------------------------------------------------------- /application/modules_core/invoices/views/invoice_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/invoices/views/invoice_table.php -------------------------------------------------------------------------------- /application/modules_core/invoices/views/invoice_templates/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/invoices/views/invoice_templates/default.php -------------------------------------------------------------------------------- /application/modules_core/invoices/views/item_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/invoices/views/item_form.php -------------------------------------------------------------------------------- /application/modules_core/invoices/views/item_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/invoices/views/item_table.php -------------------------------------------------------------------------------- /application/modules_core/invoices/views/jquery_choose_client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/invoices/views/jquery_choose_client.php -------------------------------------------------------------------------------- /application/modules_core/invoices/views/jquery_client_ac.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/invoices/views/jquery_client_ac.php -------------------------------------------------------------------------------- /application/modules_core/invoices/views/jquery_invoice_generate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/invoices/views/jquery_invoice_generate.php -------------------------------------------------------------------------------- /application/modules_core/invoices/views/jquery_invoice_search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/invoices/views/jquery_invoice_search.php -------------------------------------------------------------------------------- /application/modules_core/invoices/views/quote_to_invoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/invoices/views/quote_to_invoice.php -------------------------------------------------------------------------------- /application/modules_core/invoices/views/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/invoices/views/settings.php -------------------------------------------------------------------------------- /application/modules_core/invoices/views/sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/invoices/views/sidebar.php -------------------------------------------------------------------------------- /application/modules_core/invoices/views/tab_general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/invoices/views/tab_general.php -------------------------------------------------------------------------------- /application/modules_core/invoices/views/tab_history.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/invoices/views/tab_history.php -------------------------------------------------------------------------------- /application/modules_core/invoices/views/tab_notes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/invoices/views/tab_notes.php -------------------------------------------------------------------------------- /application/modules_core/invoices/views/tab_taxes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/invoices/views/tab_taxes.php -------------------------------------------------------------------------------- /application/modules_core/invoices/views/upload_logo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/invoices/views/upload_logo.php -------------------------------------------------------------------------------- /application/modules_core/mailer/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/mailer/config/config.php -------------------------------------------------------------------------------- /application/modules_core/mailer/controllers/invoice_mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/mailer/controllers/invoice_mailer.php -------------------------------------------------------------------------------- /application/modules_core/mailer/controllers/mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/mailer/controllers/mailer.php -------------------------------------------------------------------------------- /application/modules_core/mailer/controllers/payment_mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/mailer/controllers/payment_mailer.php -------------------------------------------------------------------------------- /application/modules_core/mailer/helpers/phpmailer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/mailer/helpers/phpmailer/LICENSE -------------------------------------------------------------------------------- /application/modules_core/mailer/helpers/phpmailer/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/mailer/helpers/phpmailer/README -------------------------------------------------------------------------------- /application/modules_core/mailer/helpers/phpmailer/aboutus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/mailer/helpers/phpmailer/aboutus.html -------------------------------------------------------------------------------- /application/modules_core/mailer/helpers/phpmailer/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/mailer/helpers/phpmailer/changelog.txt -------------------------------------------------------------------------------- /application/modules_core/mailer/helpers/phpmailer/class.phpmailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/mailer/helpers/phpmailer/class.phpmailer.php -------------------------------------------------------------------------------- /application/modules_core/mailer/helpers/phpmailer/class.pop3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/mailer/helpers/phpmailer/class.pop3.php -------------------------------------------------------------------------------- /application/modules_core/mailer/helpers/phpmailer/class.smtp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/mailer/helpers/phpmailer/class.smtp.php -------------------------------------------------------------------------------- /application/modules_core/mailer/helpers/phpmailer/mailtest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/mailer/helpers/phpmailer/mailtest.php -------------------------------------------------------------------------------- /application/modules_core/mailer/helpers/phpmailer_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/mailer/helpers/phpmailer_helper.php -------------------------------------------------------------------------------- /application/modules_core/mailer/models/mdl_mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/mailer/models/mdl_mailer.php -------------------------------------------------------------------------------- /application/modules_core/mailer/views/invoice_mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/mailer/views/invoice_mailer.php -------------------------------------------------------------------------------- /application/modules_core/mailer/views/invoice_overdue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/mailer/views/invoice_overdue.php -------------------------------------------------------------------------------- /application/modules_core/mailer/views/payment_mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/mailer/views/payment_mailer.php -------------------------------------------------------------------------------- /application/modules_core/mailer/views/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/mailer/views/settings.php -------------------------------------------------------------------------------- /application/modules_core/mcb_data/models/mdl_mcb_client_data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/mcb_data/models/mdl_mcb_client_data.php -------------------------------------------------------------------------------- /application/modules_core/mcb_data/models/mdl_mcb_data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/mcb_data/models/mdl_mcb_data.php -------------------------------------------------------------------------------- /application/modules_core/mcb_data/models/mdl_mcb_userdata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/mcb_data/models/mdl_mcb_userdata.php -------------------------------------------------------------------------------- /application/modules_core/mcb_language/controllers/mcb_language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/mcb_language/controllers/mcb_language.php -------------------------------------------------------------------------------- /application/modules_core/mcb_menu/config/mcb_menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/mcb_menu/config/mcb_menu.php -------------------------------------------------------------------------------- /application/modules_core/mcb_menu/controllers/mcb_menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/mcb_menu/controllers/mcb_menu.php -------------------------------------------------------------------------------- /application/modules_core/mcb_modules/controllers/mcb_modules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/mcb_modules/controllers/mcb_modules.php -------------------------------------------------------------------------------- /application/modules_core/mcb_modules/models/mdl_mcb_modules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/mcb_modules/models/mdl_mcb_modules.php -------------------------------------------------------------------------------- /application/modules_core/mcb_modules/views/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/mcb_modules/views/index.php -------------------------------------------------------------------------------- /application/modules_core/payments/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/payments/config/config.php -------------------------------------------------------------------------------- /application/modules_core/payments/controllers/client_credits.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/payments/controllers/client_credits.php -------------------------------------------------------------------------------- /application/modules_core/payments/controllers/payment_handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/payments/controllers/payment_handler.php -------------------------------------------------------------------------------- /application/modules_core/payments/controllers/payment_methods.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/payments/controllers/payment_methods.php -------------------------------------------------------------------------------- /application/modules_core/payments/controllers/payment_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/payments/controllers/payment_settings.php -------------------------------------------------------------------------------- /application/modules_core/payments/controllers/payment_widgets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/payments/controllers/payment_widgets.php -------------------------------------------------------------------------------- /application/modules_core/payments/controllers/payments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/payments/controllers/payments.php -------------------------------------------------------------------------------- /application/modules_core/payments/libraries/Lib_output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/payments/libraries/Lib_output.php -------------------------------------------------------------------------------- /application/modules_core/payments/models/mdl_client_credits.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/payments/models/mdl_client_credits.php -------------------------------------------------------------------------------- /application/modules_core/payments/models/mdl_payment_methods.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/payments/models/mdl_payment_methods.php -------------------------------------------------------------------------------- /application/modules_core/payments/models/mdl_payment_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/payments/models/mdl_payment_table.php -------------------------------------------------------------------------------- /application/modules_core/payments/models/mdl_payments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/payments/models/mdl_payments.php -------------------------------------------------------------------------------- /application/modules_core/payments/views/client_credit_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/payments/views/client_credit_form.php -------------------------------------------------------------------------------- /application/modules_core/payments/views/client_credit_index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/payments/views/client_credit_index.php -------------------------------------------------------------------------------- /application/modules_core/payments/views/client_credit_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/payments/views/client_credit_table.php -------------------------------------------------------------------------------- /application/modules_core/payments/views/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/payments/views/form.php -------------------------------------------------------------------------------- /application/modules_core/payments/views/form_no_invoices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/payments/views/form_no_invoices.php -------------------------------------------------------------------------------- /application/modules_core/payments/views/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/payments/views/index.php -------------------------------------------------------------------------------- /application/modules_core/payments/views/jquery_receipt_generate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/payments/views/jquery_receipt_generate.php -------------------------------------------------------------------------------- /application/modules_core/payments/views/payment_method_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/payments/views/payment_method_form.php -------------------------------------------------------------------------------- /application/modules_core/payments/views/payment_method_index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/payments/views/payment_method_index.php -------------------------------------------------------------------------------- /application/modules_core/payments/views/receipt_templates/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/payments/views/receipt_templates/default.php -------------------------------------------------------------------------------- /application/modules_core/payments/views/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/payments/views/settings.php -------------------------------------------------------------------------------- /application/modules_core/payments/views/sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/payments/views/sidebar.php -------------------------------------------------------------------------------- /application/modules_core/payments/views/table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/payments/views/table.php -------------------------------------------------------------------------------- /application/modules_core/reports/controllers/client_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/reports/controllers/client_list.php -------------------------------------------------------------------------------- /application/modules_core/reports/controllers/client_statement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/reports/controllers/client_statement.php -------------------------------------------------------------------------------- /application/modules_core/reports/controllers/inventory_history.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/reports/controllers/inventory_history.php -------------------------------------------------------------------------------- /application/modules_core/reports/controllers/inventory_sales.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/reports/controllers/inventory_sales.php -------------------------------------------------------------------------------- /application/modules_core/reports/controllers/reports.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/reports/controllers/reports.php -------------------------------------------------------------------------------- /application/modules_core/reports/controllers/sales.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/reports/controllers/sales.php -------------------------------------------------------------------------------- /application/modules_core/reports/controllers/sales_by_customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/reports/controllers/sales_by_customer.php -------------------------------------------------------------------------------- /application/modules_core/reports/models/mdl_client_statement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/reports/models/mdl_client_statement.php -------------------------------------------------------------------------------- /application/modules_core/reports/models/mdl_inventory_sales.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/reports/models/mdl_inventory_sales.php -------------------------------------------------------------------------------- /application/modules_core/reports/models/mdl_sales.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/reports/models/mdl_sales.php -------------------------------------------------------------------------------- /application/modules_core/reports/models/mdl_sales_by_customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/reports/models/mdl_sales_by_customer.php -------------------------------------------------------------------------------- /application/modules_core/reports/views/client_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/reports/views/client_list.php -------------------------------------------------------------------------------- /application/modules_core/reports/views/client_list_pdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/reports/views/client_list_pdf.php -------------------------------------------------------------------------------- /application/modules_core/reports/views/client_list_view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/reports/views/client_list_view.php -------------------------------------------------------------------------------- /application/modules_core/reports/views/client_statement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/reports/views/client_statement.php -------------------------------------------------------------------------------- /application/modules_core/reports/views/client_statement_pdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/reports/views/client_statement_pdf.php -------------------------------------------------------------------------------- /application/modules_core/reports/views/client_statement_view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/reports/views/client_statement_view.php -------------------------------------------------------------------------------- /application/modules_core/reports/views/css.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/reports/views/css.php -------------------------------------------------------------------------------- /application/modules_core/reports/views/inventory_history.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/reports/views/inventory_history.php -------------------------------------------------------------------------------- /application/modules_core/reports/views/inventory_history_pdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/reports/views/inventory_history_pdf.php -------------------------------------------------------------------------------- /application/modules_core/reports/views/inventory_history_view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/reports/views/inventory_history_view.php -------------------------------------------------------------------------------- /application/modules_core/reports/views/inventory_sales.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/reports/views/inventory_sales.php -------------------------------------------------------------------------------- /application/modules_core/reports/views/inventory_sales_pdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/reports/views/inventory_sales_pdf.php -------------------------------------------------------------------------------- /application/modules_core/reports/views/inventory_sales_view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/reports/views/inventory_sales_view.php -------------------------------------------------------------------------------- /application/modules_core/reports/views/partial_output_type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/reports/views/partial_output_type.php -------------------------------------------------------------------------------- /application/modules_core/reports/views/sales.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/reports/views/sales.php -------------------------------------------------------------------------------- /application/modules_core/reports/views/sales_by_customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/reports/views/sales_by_customer.php -------------------------------------------------------------------------------- /application/modules_core/reports/views/sales_by_customer_pdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/reports/views/sales_by_customer_pdf.php -------------------------------------------------------------------------------- /application/modules_core/reports/views/sales_by_customer_view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/reports/views/sales_by_customer_view.php -------------------------------------------------------------------------------- /application/modules_core/reports/views/sales_pdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/reports/views/sales_pdf.php -------------------------------------------------------------------------------- /application/modules_core/reports/views/sales_view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/reports/views/sales_view.php -------------------------------------------------------------------------------- /application/modules_core/sessions/controllers/sessions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/sessions/controllers/sessions.php -------------------------------------------------------------------------------- /application/modules_core/sessions/models/mdl_auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/sessions/models/mdl_auth.php -------------------------------------------------------------------------------- /application/modules_core/sessions/models/mdl_recover.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/sessions/models/mdl_recover.php -------------------------------------------------------------------------------- /application/modules_core/sessions/views/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/sessions/views/login.php -------------------------------------------------------------------------------- /application/modules_core/sessions/views/recover.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/sessions/views/recover.php -------------------------------------------------------------------------------- /application/modules_core/sessions/views/recover_email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/sessions/views/recover_email.php -------------------------------------------------------------------------------- /application/modules_core/settings/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/settings/config/config.php -------------------------------------------------------------------------------- /application/modules_core/settings/controllers/other_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/settings/controllers/other_settings.php -------------------------------------------------------------------------------- /application/modules_core/settings/controllers/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/settings/controllers/settings.php -------------------------------------------------------------------------------- /application/modules_core/settings/views/other_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/settings/views/other_settings.php -------------------------------------------------------------------------------- /application/modules_core/settings/views/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/settings/views/settings.php -------------------------------------------------------------------------------- /application/modules_core/settings/views/sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/settings/views/sidebar.php -------------------------------------------------------------------------------- /application/modules_core/setup/controllers/setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/setup/controllers/setup.php -------------------------------------------------------------------------------- /application/modules_core/setup/libraries/Lib_mysql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/setup/libraries/Lib_mysql.php -------------------------------------------------------------------------------- /application/modules_core/setup/models/mdl_setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/setup/models/mdl_setup.php -------------------------------------------------------------------------------- /application/modules_core/setup/views/ci_db_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/setup/views/ci_db_config.php -------------------------------------------------------------------------------- /application/modules_core/setup/views/db_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/setup/views/db_config.php -------------------------------------------------------------------------------- /application/modules_core/setup/views/db_show_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/setup/views/db_show_config.php -------------------------------------------------------------------------------- /application/modules_core/setup/views/footer.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /application/modules_core/setup/views/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/setup/views/header.php -------------------------------------------------------------------------------- /application/modules_core/setup/views/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/setup/views/index.php -------------------------------------------------------------------------------- /application/modules_core/setup/views/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/setup/views/install.php -------------------------------------------------------------------------------- /application/modules_core/setup/views/install_status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/setup/views/install_status.php -------------------------------------------------------------------------------- /application/modules_core/setup/views/license_agreement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/setup/views/license_agreement.php -------------------------------------------------------------------------------- /application/modules_core/setup/views/upgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/setup/views/upgrade.php -------------------------------------------------------------------------------- /application/modules_core/setup/views/upgrade_status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/setup/views/upgrade_status.php -------------------------------------------------------------------------------- /application/modules_core/tax_rates/controllers/tax_rates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/tax_rates/controllers/tax_rates.php -------------------------------------------------------------------------------- /application/modules_core/tax_rates/models/mdl_tax_rates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/tax_rates/models/mdl_tax_rates.php -------------------------------------------------------------------------------- /application/modules_core/tax_rates/views/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/tax_rates/views/form.php -------------------------------------------------------------------------------- /application/modules_core/tax_rates/views/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/tax_rates/views/index.php -------------------------------------------------------------------------------- /application/modules_core/tax_rates/views/sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/tax_rates/views/sidebar.php -------------------------------------------------------------------------------- /application/modules_core/templates/controllers/templates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/templates/controllers/templates.php -------------------------------------------------------------------------------- /application/modules_core/templates/models/mdl_templates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/templates/models/mdl_templates.php -------------------------------------------------------------------------------- /application/modules_core/templates/views/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/templates/views/form.php -------------------------------------------------------------------------------- /application/modules_core/templates/views/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/templates/views/index.php -------------------------------------------------------------------------------- /application/modules_core/testing/controllers/testing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/testing/controllers/testing.php -------------------------------------------------------------------------------- /application/modules_core/users/controllers/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/users/controllers/profile.php -------------------------------------------------------------------------------- /application/modules_core/users/controllers/users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/users/controllers/users.php -------------------------------------------------------------------------------- /application/modules_core/users/models/mdl_users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/users/models/mdl_users.php -------------------------------------------------------------------------------- /application/modules_core/users/views/change_password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/users/views/change_password.php -------------------------------------------------------------------------------- /application/modules_core/users/views/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/users/views/form.php -------------------------------------------------------------------------------- /application/modules_core/users/views/form_tab_details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/users/views/form_tab_details.php -------------------------------------------------------------------------------- /application/modules_core/users/views/form_tab_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/users/views/form_tab_settings.php -------------------------------------------------------------------------------- /application/modules_core/users/views/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/users/views/index.php -------------------------------------------------------------------------------- /application/modules_core/users/views/sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_core/users/views/sidebar.php -------------------------------------------------------------------------------- /application/modules_custom/export/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_custom/export/config/config.php -------------------------------------------------------------------------------- /application/modules_custom/export/controllers/export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_custom/export/controllers/export.php -------------------------------------------------------------------------------- /application/modules_custom/export/controllers/setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_custom/export/controllers/setup.php -------------------------------------------------------------------------------- /application/modules_custom/export/language/english/export_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_custom/export/language/english/export_lang.php -------------------------------------------------------------------------------- /application/modules_custom/export/models/mdl_export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_custom/export/models/mdl_export.php -------------------------------------------------------------------------------- /application/modules_custom/export/views/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_custom/export/views/index.php -------------------------------------------------------------------------------- /application/modules_custom/tasks/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_custom/tasks/config/config.php -------------------------------------------------------------------------------- /application/modules_custom/tasks/controllers/setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_custom/tasks/controllers/setup.php -------------------------------------------------------------------------------- /application/modules_custom/tasks/controllers/task_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_custom/tasks/controllers/task_settings.php -------------------------------------------------------------------------------- /application/modules_custom/tasks/controllers/tasks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_custom/tasks/controllers/tasks.php -------------------------------------------------------------------------------- /application/modules_custom/tasks/language/english/tasks_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_custom/tasks/language/english/tasks_lang.php -------------------------------------------------------------------------------- /application/modules_custom/tasks/models/mdl_tasks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_custom/tasks/models/mdl_tasks.php -------------------------------------------------------------------------------- /application/modules_custom/tasks/views/dashboard_widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_custom/tasks/views/dashboard_widget.php -------------------------------------------------------------------------------- /application/modules_custom/tasks/views/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_custom/tasks/views/form.php -------------------------------------------------------------------------------- /application/modules_custom/tasks/views/header_menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_custom/tasks/views/header_menu.php -------------------------------------------------------------------------------- /application/modules_custom/tasks/views/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_custom/tasks/views/index.php -------------------------------------------------------------------------------- /application/modules_custom/tasks/views/jquery_tasks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_custom/tasks/views/jquery_tasks.php -------------------------------------------------------------------------------- /application/modules_custom/tasks/views/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_custom/tasks/views/settings.php -------------------------------------------------------------------------------- /application/modules_custom/tasks/views/sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_custom/tasks/views/sidebar.php -------------------------------------------------------------------------------- /application/modules_custom/tasks/views/table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/modules_custom/tasks/views/table.php -------------------------------------------------------------------------------- /application/third_party/MX/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/third_party/MX/Base.php -------------------------------------------------------------------------------- /application/third_party/MX/Ci.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/third_party/MX/Ci.php -------------------------------------------------------------------------------- /application/third_party/MX/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/third_party/MX/Config.php -------------------------------------------------------------------------------- /application/third_party/MX/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/third_party/MX/Controller.php -------------------------------------------------------------------------------- /application/third_party/MX/Lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/third_party/MX/Lang.php -------------------------------------------------------------------------------- /application/third_party/MX/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/third_party/MX/Loader.php -------------------------------------------------------------------------------- /application/third_party/MX/Modules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/third_party/MX/Modules.php -------------------------------------------------------------------------------- /application/third_party/MX/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/third_party/MX/Router.php -------------------------------------------------------------------------------- /application/third_party/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/third_party/index.html -------------------------------------------------------------------------------- /application/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/views/index.html -------------------------------------------------------------------------------- /application/views/welcome_message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/application/views/welcome_message.php -------------------------------------------------------------------------------- /assets/jquery/fullcalendar/GPL-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/jquery/fullcalendar/GPL-LICENSE.txt -------------------------------------------------------------------------------- /assets/jquery/fullcalendar/MIT-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/jquery/fullcalendar/MIT-LICENSE.txt -------------------------------------------------------------------------------- /assets/jquery/fullcalendar/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/jquery/fullcalendar/changelog.txt -------------------------------------------------------------------------------- /assets/jquery/fullcalendar/fullcalendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/jquery/fullcalendar/fullcalendar.css -------------------------------------------------------------------------------- /assets/jquery/fullcalendar/fullcalendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/jquery/fullcalendar/fullcalendar.js -------------------------------------------------------------------------------- /assets/jquery/fullcalendar/fullcalendar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/jquery/fullcalendar/fullcalendar.min.js -------------------------------------------------------------------------------- /assets/jquery/fullcalendar/fullcalendar.print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/jquery/fullcalendar/fullcalendar.print.css -------------------------------------------------------------------------------- /assets/jquery/fullcalendar/gcal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/jquery/fullcalendar/gcal.js -------------------------------------------------------------------------------- /assets/jquery/hoverIntent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/jquery/hoverIntent.js -------------------------------------------------------------------------------- /assets/jquery/jquery-1.4.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/jquery/jquery-1.4.2.min.js -------------------------------------------------------------------------------- /assets/jquery/jquery-1.6.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/jquery/jquery-1.6.2.min.js -------------------------------------------------------------------------------- /assets/jquery/jquery-ui-1.8.16.custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/jquery/jquery-ui-1.8.16.custom.min.js -------------------------------------------------------------------------------- /assets/jquery/jquery-ui-1.8.4.custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/jquery/jquery-ui-1.8.4.custom.min.js -------------------------------------------------------------------------------- /assets/jquery/jquery.clearpassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/jquery/jquery.clearpassword.js -------------------------------------------------------------------------------- /assets/jquery/jquery.maskedinput-1.2.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/jquery/jquery.maskedinput-1.2.2.min.js -------------------------------------------------------------------------------- /assets/jquery/jquery.relcopy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/jquery/jquery.relcopy.js -------------------------------------------------------------------------------- /assets/jquery/jquery.tablednd_0_5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/jquery/jquery.tablednd_0_5.js -------------------------------------------------------------------------------- /assets/jquery/settings_email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/jquery/settings_email.js -------------------------------------------------------------------------------- /assets/jquery/superfish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/jquery/superfish.js -------------------------------------------------------------------------------- /assets/jquery/supersubs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/jquery/supersubs.js -------------------------------------------------------------------------------- /assets/jquery/ui-themes/black-tie/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/jquery/ui-themes/black-tie/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /assets/jquery/ui-themes/black-tie/jquery-ui-1.8.4.custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/jquery/ui-themes/black-tie/jquery-ui-1.8.4.custom.css -------------------------------------------------------------------------------- /assets/jquery/ui-themes/myclientbase/jquery-ui-1.8.16.custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/jquery/ui-themes/myclientbase/jquery-ui-1.8.16.custom.css -------------------------------------------------------------------------------- /assets/jquery/ui-themes/myclientbase1/jquery-ui-1.8.4.custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/jquery/ui-themes/myclientbase1/jquery-ui-1.8.4.custom.css -------------------------------------------------------------------------------- /assets/jquery/ui-themes/smoothness/jquery-ui-1.8.4.custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/jquery/ui-themes/smoothness/jquery-ui-1.8.4.custom.css -------------------------------------------------------------------------------- /assets/style/css/general.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/style/css/general.css -------------------------------------------------------------------------------- /assets/style/css/grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/style/css/grid.css -------------------------------------------------------------------------------- /assets/style/css/ie6.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/style/css/ie6.css -------------------------------------------------------------------------------- /assets/style/css/ie7.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/style/css/ie7.css -------------------------------------------------------------------------------- /assets/style/css/installer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/style/css/installer.css -------------------------------------------------------------------------------- /assets/style/css/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/style/css/layout.css -------------------------------------------------------------------------------- /assets/style/css/messages.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/style/css/messages.css -------------------------------------------------------------------------------- /assets/style/css/pagination.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/style/css/pagination.css -------------------------------------------------------------------------------- /assets/style/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/style/css/reset.css -------------------------------------------------------------------------------- /assets/style/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/style/css/styles.css -------------------------------------------------------------------------------- /assets/style/css/superfish.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/style/css/superfish.css -------------------------------------------------------------------------------- /assets/style/img/header_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/style/img/header_bg.jpg -------------------------------------------------------------------------------- /assets/style/img/icons/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/style/img/icons/check.png -------------------------------------------------------------------------------- /assets/style/img/icons/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/style/img/icons/copy.png -------------------------------------------------------------------------------- /assets/style/img/icons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/style/img/icons/delete.png -------------------------------------------------------------------------------- /assets/style/img/icons/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/style/img/icons/edit.png -------------------------------------------------------------------------------- /assets/style/img/icons/generate_invoice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/style/img/icons/generate_invoice.png -------------------------------------------------------------------------------- /assets/style/img/icons/generate_receipt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/style/img/icons/generate_receipt.png -------------------------------------------------------------------------------- /assets/style/img/icons/invoice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/style/img/icons/invoice.png -------------------------------------------------------------------------------- /assets/style/img/icons/printer_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/style/img/icons/printer_48.png -------------------------------------------------------------------------------- /assets/style/img/icons/quote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/style/img/icons/quote.png -------------------------------------------------------------------------------- /assets/style/img/icons/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/style/img/icons/zoom.png -------------------------------------------------------------------------------- /assets/style/img/messages/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/style/img/messages/error.png -------------------------------------------------------------------------------- /assets/style/img/messages/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/style/img/messages/info.png -------------------------------------------------------------------------------- /assets/style/img/messages/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/style/img/messages/success.png -------------------------------------------------------------------------------- /assets/style/img/messages/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/style/img/messages/warning.png -------------------------------------------------------------------------------- /assets/style/img/navigation_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/style/img/navigation_bg.jpg -------------------------------------------------------------------------------- /assets/style/img/navigation_hover_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/style/img/navigation_hover_bg.jpg -------------------------------------------------------------------------------- /assets/style/img/navigation_selected_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/style/img/navigation_selected_bg.jpg -------------------------------------------------------------------------------- /assets/style/img/section_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/style/img/section_bg.jpg -------------------------------------------------------------------------------- /assets/style/img/th_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/assets/style/img/th_bg.jpg -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/index.php -------------------------------------------------------------------------------- /license_codeigniter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/license_codeigniter.txt -------------------------------------------------------------------------------- /license_myclientbase.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/license_myclientbase.txt -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / -------------------------------------------------------------------------------- /system/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /system/core/Benchmark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/core/Benchmark.php -------------------------------------------------------------------------------- /system/core/CodeIgniter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/core/CodeIgniter.php -------------------------------------------------------------------------------- /system/core/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/core/Common.php -------------------------------------------------------------------------------- /system/core/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/core/Config.php -------------------------------------------------------------------------------- /system/core/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/core/Controller.php -------------------------------------------------------------------------------- /system/core/Exceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/core/Exceptions.php -------------------------------------------------------------------------------- /system/core/Hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/core/Hooks.php -------------------------------------------------------------------------------- /system/core/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/core/Input.php -------------------------------------------------------------------------------- /system/core/Lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/core/Lang.php -------------------------------------------------------------------------------- /system/core/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/core/Loader.php -------------------------------------------------------------------------------- /system/core/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/core/Model.php -------------------------------------------------------------------------------- /system/core/Output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/core/Output.php -------------------------------------------------------------------------------- /system/core/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/core/Router.php -------------------------------------------------------------------------------- /system/core/Security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/core/Security.php -------------------------------------------------------------------------------- /system/core/URI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/core/URI.php -------------------------------------------------------------------------------- /system/core/Utf8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/core/Utf8.php -------------------------------------------------------------------------------- /system/core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/core/index.html -------------------------------------------------------------------------------- /system/database/DB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/DB.php -------------------------------------------------------------------------------- /system/database/DB_active_rec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/DB_active_rec.php -------------------------------------------------------------------------------- /system/database/DB_cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/DB_cache.php -------------------------------------------------------------------------------- /system/database/DB_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/DB_driver.php -------------------------------------------------------------------------------- /system/database/DB_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/DB_forge.php -------------------------------------------------------------------------------- /system/database/DB_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/DB_result.php -------------------------------------------------------------------------------- /system/database/DB_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/DB_utility.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/cubrid_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/drivers/cubrid/cubrid_driver.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/cubrid_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/drivers/cubrid/cubrid_forge.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/cubrid_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/drivers/cubrid/cubrid_result.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/cubrid_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/drivers/cubrid/cubrid_utility.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/drivers/cubrid/index.html -------------------------------------------------------------------------------- /system/database/drivers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/drivers/index.html -------------------------------------------------------------------------------- /system/database/drivers/mssql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/drivers/mssql/index.html -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/drivers/mssql/mssql_driver.php -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/drivers/mssql/mssql_forge.php -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/drivers/mssql/mssql_result.php -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/drivers/mssql/mssql_utility.php -------------------------------------------------------------------------------- /system/database/drivers/mysql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/drivers/mysql/index.html -------------------------------------------------------------------------------- /system/database/drivers/mysql/mysql_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/drivers/mysql/mysql_driver.php -------------------------------------------------------------------------------- /system/database/drivers/mysql/mysql_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/drivers/mysql/mysql_forge.php -------------------------------------------------------------------------------- /system/database/drivers/mysql/mysql_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/drivers/mysql/mysql_result.php -------------------------------------------------------------------------------- /system/database/drivers/mysql/mysql_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/drivers/mysql/mysql_utility.php -------------------------------------------------------------------------------- /system/database/drivers/mysqli/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/drivers/mysqli/index.html -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/drivers/mysqli/mysqli_driver.php -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/drivers/mysqli/mysqli_forge.php -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/drivers/mysqli/mysqli_result.php -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/drivers/mysqli/mysqli_utility.php -------------------------------------------------------------------------------- /system/database/drivers/oci8/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/drivers/oci8/index.html -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/drivers/oci8/oci8_driver.php -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/drivers/oci8/oci8_forge.php -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/drivers/oci8/oci8_result.php -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/drivers/oci8/oci8_utility.php -------------------------------------------------------------------------------- /system/database/drivers/odbc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/drivers/odbc/index.html -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/drivers/odbc/odbc_driver.php -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/drivers/odbc/odbc_forge.php -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/drivers/odbc/odbc_result.php -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/drivers/odbc/odbc_utility.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/drivers/pdo/index.html -------------------------------------------------------------------------------- /system/database/drivers/pdo/pdo_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/drivers/pdo/pdo_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/pdo_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/drivers/pdo/pdo_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/pdo_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/drivers/pdo/pdo_result.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/pdo_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/drivers/pdo/pdo_utility.php -------------------------------------------------------------------------------- /system/database/drivers/postgre/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/drivers/postgre/index.html -------------------------------------------------------------------------------- /system/database/drivers/postgre/postgre_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/drivers/postgre/postgre_driver.php -------------------------------------------------------------------------------- /system/database/drivers/postgre/postgre_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/drivers/postgre/postgre_forge.php -------------------------------------------------------------------------------- /system/database/drivers/postgre/postgre_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/drivers/postgre/postgre_result.php -------------------------------------------------------------------------------- /system/database/drivers/postgre/postgre_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/drivers/postgre/postgre_utility.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/drivers/sqlite/index.html -------------------------------------------------------------------------------- /system/database/drivers/sqlite/sqlite_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/drivers/sqlite/sqlite_driver.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite/sqlite_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/drivers/sqlite/sqlite_forge.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite/sqlite_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/drivers/sqlite/sqlite_result.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite/sqlite_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/drivers/sqlite/sqlite_utility.php -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/drivers/sqlsrv/index.html -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/sqlsrv_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/drivers/sqlsrv/sqlsrv_driver.php -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/sqlsrv_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/drivers/sqlsrv/sqlsrv_forge.php -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/sqlsrv_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/drivers/sqlsrv/sqlsrv_result.php -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/sqlsrv_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/drivers/sqlsrv/sqlsrv_utility.php -------------------------------------------------------------------------------- /system/database/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/database/index.html -------------------------------------------------------------------------------- /system/fonts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/fonts/index.html -------------------------------------------------------------------------------- /system/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/fonts/texb.ttf -------------------------------------------------------------------------------- /system/helpers/array_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/helpers/array_helper.php -------------------------------------------------------------------------------- /system/helpers/captcha_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/helpers/captcha_helper.php -------------------------------------------------------------------------------- /system/helpers/cookie_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/helpers/cookie_helper.php -------------------------------------------------------------------------------- /system/helpers/date_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/helpers/date_helper.php -------------------------------------------------------------------------------- /system/helpers/directory_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/helpers/directory_helper.php -------------------------------------------------------------------------------- /system/helpers/download_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/helpers/download_helper.php -------------------------------------------------------------------------------- /system/helpers/email_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/helpers/email_helper.php -------------------------------------------------------------------------------- /system/helpers/file_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/helpers/file_helper.php -------------------------------------------------------------------------------- /system/helpers/form_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/helpers/form_helper.php -------------------------------------------------------------------------------- /system/helpers/html_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/helpers/html_helper.php -------------------------------------------------------------------------------- /system/helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/helpers/index.html -------------------------------------------------------------------------------- /system/helpers/inflector_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/helpers/inflector_helper.php -------------------------------------------------------------------------------- /system/helpers/language_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/helpers/language_helper.php -------------------------------------------------------------------------------- /system/helpers/number_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/helpers/number_helper.php -------------------------------------------------------------------------------- /system/helpers/path_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/helpers/path_helper.php -------------------------------------------------------------------------------- /system/helpers/security_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/helpers/security_helper.php -------------------------------------------------------------------------------- /system/helpers/smiley_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/helpers/smiley_helper.php -------------------------------------------------------------------------------- /system/helpers/string_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/helpers/string_helper.php -------------------------------------------------------------------------------- /system/helpers/text_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/helpers/text_helper.php -------------------------------------------------------------------------------- /system/helpers/typography_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/helpers/typography_helper.php -------------------------------------------------------------------------------- /system/helpers/url_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/helpers/url_helper.php -------------------------------------------------------------------------------- /system/helpers/xml_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/helpers/xml_helper.php -------------------------------------------------------------------------------- /system/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/index.html -------------------------------------------------------------------------------- /system/language/english/calendar_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/language/english/calendar_lang.php -------------------------------------------------------------------------------- /system/language/english/date_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/language/english/date_lang.php -------------------------------------------------------------------------------- /system/language/english/db_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/language/english/db_lang.php -------------------------------------------------------------------------------- /system/language/english/email_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/language/english/email_lang.php -------------------------------------------------------------------------------- /system/language/english/form_validation_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/language/english/form_validation_lang.php -------------------------------------------------------------------------------- /system/language/english/ftp_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/language/english/ftp_lang.php -------------------------------------------------------------------------------- /system/language/english/imglib_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/language/english/imglib_lang.php -------------------------------------------------------------------------------- /system/language/english/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/language/english/index.html -------------------------------------------------------------------------------- /system/language/english/migration_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/language/english/migration_lang.php -------------------------------------------------------------------------------- /system/language/english/number_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/language/english/number_lang.php -------------------------------------------------------------------------------- /system/language/english/profiler_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/language/english/profiler_lang.php -------------------------------------------------------------------------------- /system/language/english/unit_test_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/language/english/unit_test_lang.php -------------------------------------------------------------------------------- /system/language/english/upload_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/language/english/upload_lang.php -------------------------------------------------------------------------------- /system/language/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/language/index.html -------------------------------------------------------------------------------- /system/libraries/Cache/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/libraries/Cache/Cache.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_apc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/libraries/Cache/drivers/Cache_apc.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_dummy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/libraries/Cache/drivers/Cache_dummy.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/libraries/Cache/drivers/Cache_file.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_memcached.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/libraries/Cache/drivers/Cache_memcached.php -------------------------------------------------------------------------------- /system/libraries/Calendar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/libraries/Calendar.php -------------------------------------------------------------------------------- /system/libraries/Cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/libraries/Cart.php -------------------------------------------------------------------------------- /system/libraries/Driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/libraries/Driver.php -------------------------------------------------------------------------------- /system/libraries/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/libraries/Email.php -------------------------------------------------------------------------------- /system/libraries/Encrypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/libraries/Encrypt.php -------------------------------------------------------------------------------- /system/libraries/Form_validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/libraries/Form_validation.php -------------------------------------------------------------------------------- /system/libraries/Ftp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/libraries/Ftp.php -------------------------------------------------------------------------------- /system/libraries/Image_lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/libraries/Image_lib.php -------------------------------------------------------------------------------- /system/libraries/Javascript.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/libraries/Javascript.php -------------------------------------------------------------------------------- /system/libraries/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/libraries/Log.php -------------------------------------------------------------------------------- /system/libraries/Migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/libraries/Migration.php -------------------------------------------------------------------------------- /system/libraries/Pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/libraries/Pagination.php -------------------------------------------------------------------------------- /system/libraries/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/libraries/Parser.php -------------------------------------------------------------------------------- /system/libraries/Profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/libraries/Profiler.php -------------------------------------------------------------------------------- /system/libraries/Security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/libraries/Security.php -------------------------------------------------------------------------------- /system/libraries/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/libraries/Session.php -------------------------------------------------------------------------------- /system/libraries/Sha1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/libraries/Sha1.php -------------------------------------------------------------------------------- /system/libraries/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/libraries/Table.php -------------------------------------------------------------------------------- /system/libraries/Trackback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/libraries/Trackback.php -------------------------------------------------------------------------------- /system/libraries/Typography.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/libraries/Typography.php -------------------------------------------------------------------------------- /system/libraries/Unit_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/libraries/Unit_test.php -------------------------------------------------------------------------------- /system/libraries/Upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/libraries/Upload.php -------------------------------------------------------------------------------- /system/libraries/User_agent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/libraries/User_agent.php -------------------------------------------------------------------------------- /system/libraries/Xmlrpc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/libraries/Xmlrpc.php -------------------------------------------------------------------------------- /system/libraries/Xmlrpcs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/libraries/Xmlrpcs.php -------------------------------------------------------------------------------- /system/libraries/Zip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/libraries/Zip.php -------------------------------------------------------------------------------- /system/libraries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/libraries/index.html -------------------------------------------------------------------------------- /system/libraries/javascript/Jquery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenvheel/MyClientBase/HEAD/system/libraries/javascript/Jquery.php -------------------------------------------------------------------------------- /uploads/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uploads/invoice_logos/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uploads/temp/.empty: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------