├── .gitignore
├── LICENSE
├── README.md
├── freelancer_billing.sql
└── src
├── .htaccess
├── application
├── .htaccess
├── cache
│ ├── .htaccess
│ └── index.html
├── config
│ ├── autoload.php
│ ├── config.php
│ ├── constants.php
│ ├── database.php
│ ├── doctypes.php
│ ├── foreign_chars.php
│ ├── hooks.php
│ ├── index.html
│ ├── migration.php
│ ├── mimes.php
│ ├── pagination.php
│ ├── profiler.php
│ ├── routes.php
│ ├── smileys.php
│ └── user_agents.php
├── controllers
│ ├── accounts.php
│ ├── documents.php
│ ├── index.html
│ ├── invoice_notifications.php
│ ├── invoice_status_updates.php
│ ├── invoices.php
│ ├── recurrencies.php
│ ├── settings.php
│ ├── system_files.php
│ ├── system_logs.php
│ └── updates.php
├── core
│ ├── MY_Loader.php
│ └── index.html
├── errors
│ ├── error_404.php
│ ├── error_db.php
│ ├── error_general.php
│ ├── error_php.php
│ └── index.html
├── helpers
│ ├── MY_date_helper.php
│ ├── MY_form_helper.php
│ ├── color_helper.php
│ ├── display_helper.php
│ ├── fonts_helper.php
│ ├── index.html
│ ├── pagination_helper.php
│ ├── security_helper.php
│ ├── translations_helper.php
│ └── validation_helper.php
├── hooks
│ └── index.html
├── index.html
├── language
│ ├── index.html
│ └── portuguese
│ │ ├── db_lang.php
│ │ ├── email_lang.php
│ │ ├── form_validation_lang.php
│ │ ├── general_lang.php
│ │ ├── notification_templates_lang.php
│ │ ├── number_lang.php
│ │ └── profiler_lang.php
├── libraries
│ ├── gateway.php
│ ├── gateway
│ │ ├── HTTPRequest.class.php
│ │ ├── XmlParser.class.php
│ │ ├── lib
│ │ │ ├── Address.class.php
│ │ │ ├── Helper.class.php
│ │ │ ├── Item.class.php
│ │ │ ├── Parameter.class.php
│ │ │ ├── ParameterItem.class.php
│ │ │ ├── PaymentParserPagSeguro.class.php
│ │ │ ├── Phone.class.php
│ │ │ ├── Sender.class.php
│ │ │ ├── Shipping.class.php
│ │ │ └── ShippingType.class.php
│ │ ├── paymentGateway.class.php
│ │ └── paymentRequest.class.php
│ └── index.html
├── logs
│ └── index.html
├── models
│ ├── account.php
│ ├── index.html
│ ├── invoice.php
│ ├── invoice_notification.php
│ ├── invoice_status_update.php
│ ├── payment_pagseguro.php
│ ├── recurrency.php
│ ├── system_file.php
│ ├── system_log.php
│ ├── system_mail.php
│ ├── system_notification.php
│ ├── system_settings.php
│ └── system_update.php
├── third_party
│ ├── google_fonts
│ │ └── fonts_list.json
│ └── index.html
└── views
│ ├── accounts
│ ├── create.php
│ ├── index.php
│ ├── inputs.php
│ ├── remove.php
│ ├── rows.php
│ ├── update.php
│ └── view.php
│ ├── documents
│ ├── balance.php
│ └── invoice.php
│ ├── index.html
│ ├── invoice_notifications
│ ├── create.php
│ ├── index.php
│ ├── inputs.php
│ ├── remove.php
│ ├── rows.php
│ ├── update.php
│ └── view.php
│ ├── invoice_status_updates
│ ├── create.php
│ ├── index.php
│ ├── inputs.php
│ ├── remove.php
│ ├── rows.php
│ ├── update.php
│ └── view.php
│ ├── invoices
│ ├── create.php
│ ├── index.php
│ ├── inputs.php
│ ├── remove.php
│ ├── rows.php
│ ├── update.php
│ └── view.php
│ ├── recurrencies
│ ├── create.php
│ ├── index.php
│ ├── inputs.php
│ ├── remove.php
│ ├── rows.php
│ ├── update.php
│ └── view.php
│ ├── settings
│ ├── password.php
│ ├── system.php
│ ├── update.php
│ └── view.php
│ ├── system_files
│ ├── delete.php
│ └── update.php
│ ├── system_logs
│ └── login.php
│ └── template
│ ├── admin_components
│ ├── applied_filters.php
│ ├── breadcrumbs.php
│ ├── file_zone.php
│ ├── inputs
│ │ ├── bool_filter_field.php
│ │ ├── bool_switch.php
│ │ ├── city_input.php
│ │ ├── code_input.php
│ │ ├── color_input.php
│ │ ├── datetime_picker.php
│ │ ├── fk_input.php
│ │ ├── number_input.php
│ │ ├── rate_input.php
│ │ ├── rich_text_input.php
│ │ ├── search_button.php
│ │ ├── select_input.php
│ │ ├── string_input.php
│ │ ├── textarea_input.php
│ │ └── zipcode_script.php
│ ├── load_more_button.php
│ ├── modal_search.php
│ └── no_results_warning.php
│ ├── documents.php
│ ├── head.php
│ ├── messages.php
│ ├── modal.php
│ ├── sidebar-navbar.php
│ └── template.php
├── assets
├── cdn
│ ├── Sortable.js
│ ├── bootstrap-theme.min.css
│ ├── bootstrap.min.css
│ ├── bootstrap.min.js
│ └── jquery.min.js
├── css
│ ├── app.css
│ ├── bootstrap.css
│ └── table-cells.css
├── img
│ ├── admin.png
│ ├── client.png
│ ├── login_background.png
│ └── no-user.jpg
└── js
│ ├── app-mask.js
│ ├── app.js
│ ├── bootstrap.js
│ ├── jquery.js
│ └── jquery.mask.min.js
├── index.php
├── license.txt
├── settings.json
└── 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
│ └── index.html
└── index.html
├── 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
├── 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
└── index.html
/.gitignore:
--------------------------------------------------------------------------------
1 | src/application/config/smtp.php
2 | src/application/config/config.php
--------------------------------------------------------------------------------
/src/.htaccess:
--------------------------------------------------------------------------------
1 | # Helicon ISAPI_Rewrite configuration file
2 | # Version 3.1.0.64
3 |
4 |
Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /src/application/config/constants.php: -------------------------------------------------------------------------------- 1 | '', 5 | 'xhtml1-strict' => '', 6 | 'xhtml1-trans' => '', 7 | 'xhtml1-frame' => '', 8 | 'html5' => '', 9 | 'html4-strict' => '', 10 | 'html4-trans' => '', 11 | 'html4-frame' => '' 12 | ); 13 | 14 | /* End of file doctypes.php */ 15 | /* Location: ./application/config/doctypes.php */ -------------------------------------------------------------------------------- /src/application/config/foreign_chars.php: -------------------------------------------------------------------------------- 1 | 'ae', 12 | '/ö|œ/' => 'oe', 13 | '/ü/' => 'ue', 14 | '/Ä/' => 'Ae', 15 | '/Ü/' => 'Ue', 16 | '/Ö/' => 'Oe', 17 | '/À|Á|Â|Ã|Ä|Å|Ǻ|Ā|Ă|Ą|Ǎ/' => 'A', 18 | '/à|á|â|ã|å|ǻ|ā|ă|ą|ǎ|ª/' => 'a', 19 | '/Ç|Ć|Ĉ|Ċ|Č/' => 'C', 20 | '/ç|ć|ĉ|ċ|č/' => 'c', 21 | '/Ð|Ď|Đ/' => 'D', 22 | '/ð|ď|đ/' => 'd', 23 | '/È|É|Ê|Ë|Ē|Ĕ|Ė|Ę|Ě/' => 'E', 24 | '/è|é|ê|ë|ē|ĕ|ė|ę|ě/' => 'e', 25 | '/Ĝ|Ğ|Ġ|Ģ/' => 'G', 26 | '/ĝ|ğ|ġ|ģ/' => 'g', 27 | '/Ĥ|Ħ/' => 'H', 28 | '/ĥ|ħ/' => 'h', 29 | '/Ì|Í|Î|Ï|Ĩ|Ī|Ĭ|Ǐ|Į|İ/' => 'I', 30 | '/ì|í|î|ï|ĩ|ī|ĭ|ǐ|į|ı/' => 'i', 31 | '/Ĵ/' => 'J', 32 | '/ĵ/' => 'j', 33 | '/Ķ/' => 'K', 34 | '/ķ/' => 'k', 35 | '/Ĺ|Ļ|Ľ|Ŀ|Ł/' => 'L', 36 | '/ĺ|ļ|ľ|ŀ|ł/' => 'l', 37 | '/Ñ|Ń|Ņ|Ň/' => 'N', 38 | '/ñ|ń|ņ|ň|ʼn/' => 'n', 39 | '/Ò|Ó|Ô|Õ|Ō|Ŏ|Ǒ|Ő|Ơ|Ø|Ǿ/' => 'O', 40 | '/ò|ó|ô|õ|ō|ŏ|ǒ|ő|ơ|ø|ǿ|º/' => 'o', 41 | '/Ŕ|Ŗ|Ř/' => 'R', 42 | '/ŕ|ŗ|ř/' => 'r', 43 | '/Ś|Ŝ|Ş|Š/' => 'S', 44 | '/ś|ŝ|ş|š|ſ/' => 's', 45 | '/Ţ|Ť|Ŧ/' => 'T', 46 | '/ţ|ť|ŧ/' => 't', 47 | '/Ù|Ú|Û|Ũ|Ū|Ŭ|Ů|Ű|Ų|Ư|Ǔ|Ǖ|Ǘ|Ǚ|Ǜ/' => 'U', 48 | '/ù|ú|û|ũ|ū|ŭ|ů|ű|ų|ư|ǔ|ǖ|ǘ|ǚ|ǜ/' => 'u', 49 | '/Ý|Ÿ|Ŷ/' => 'Y', 50 | '/ý|ÿ|ŷ/' => 'y', 51 | '/Ŵ/' => 'W', 52 | '/ŵ/' => 'w', 53 | '/Ź|Ż|Ž/' => 'Z', 54 | '/ź|ż|ž/' => 'z', 55 | '/Æ|Ǽ/' => 'AE', 56 | '/ß/'=> 'ss', 57 | '/IJ/' => 'IJ', 58 | '/ij/' => 'ij', 59 | '/Œ/' => 'OE', 60 | '/ƒ/' => 'f' 61 | ); 62 | 63 | /* End of file foreign_chars.php */ 64 | /* Location: ./application/config/foreign_chars.php */ -------------------------------------------------------------------------------- /src/application/config/hooks.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 |