├── LICENSE ├── README.md ├── access.log ├── admin.sh ├── app_a ├── php7_parse_str_bad.php ├── php7_parse_url_empty.php └── php8_parse_url_parse_str.php ├── ch01 ├── captcha_simple.html ├── captcha_simple.phtml ├── php7_attrib_reflect.php ├── php7_prop_danger.php ├── php7_prop_reduce.php ├── php7_single_char.php ├── php7_single_strategies.php ├── php7_switch.php ├── php8_attrib_reflect.php ├── php8_mixed_type.php ├── php8_named_args.php ├── php8_prop_danger.php ├── php8_prop_promo.php ├── php8_prop_reduce.php ├── php8_prop_type_1.php ├── php8_property_type.php ├── php8_single_char.php ├── php8_single_strategies.php ├── php8_switch.php └── php_prop_promo.php ├── ch02 ├── includes │ ├── auth_callback.php │ ├── nullsafe_config.php │ ├── nullsafe_data.csv │ ├── nullsafe_data.json │ ├── nullsafe_data.txt │ ├── php7_sql_lib.php │ ├── php8_sql_lib.php │ ├── produce.xml │ └── variadic_vacuum.phtml ├── php7_arbitrary_exp.php ├── php7_array_slice.php ├── php7_array_splice.php ├── php7_custom_response.php ├── php7_dereference_1.php ├── php7_dereference_2.php ├── php7_dereference_3.php ├── php7_dereference_4.php ├── php7_nested_ternary.php ├── php7_nullsafe_short.php ├── php7_nullsafe_xml.php ├── php7_ops_concat_1.php ├── php7_ops_variadic.php ├── php7_starts_ends_with.php ├── php7_str_contains.php ├── php7_variadic_inherit.php ├── php7_variadic_params.php ├── php7_variadic_vacuum.php ├── php7_variadics_problem.php ├── php7_variadics_sql.php ├── php8_arbitrary_exp_new.php ├── php8_array_slice.php ├── php8_array_splice.php ├── php8_arrow_func_1.php ├── php8_arrow_func_2.php ├── php8_arrow_func_3.php ├── php8_dereference_1.php ├── php8_dereference_2.php ├── php8_dereference_3.php ├── php8_dereference_4.php ├── php8_nested_ternary.php ├── php8_nullsafe_short.php ├── php8_nullsafe_xml.php ├── php8_ops_concat_1.php ├── php8_ops_variadic.php ├── php8_sqlite_auth_admin.php ├── php8_sqlite_auth_callback.php ├── php8_sqlite_query.php ├── php8_starts_ends_with.php ├── php8_str_contains.php ├── php8_variadic_inherit.php ├── php8_variadics_no_problem.php └── php8_variadics_sql.php ├── ch03 ├── includes │ └── causes_parse_error.php ├── php7_array_unpack.php ├── php7_undef_const.php ├── php7_undef_var.php ├── php7_warn_array.php ├── php7_warn_array_foreach.php ├── php7_warn_array_occupied.php ├── php7_warn_array_unpack.php ├── php7_warn_array_unset.php ├── php7_warn_prop_nobj.php ├── php8_array_unpack.php ├── php8_at_silencer.php ├── php8_at_silencer_err_rep.php ├── php8_error_str_empty.php ├── php8_error_str_pos.php ├── php8_string_access_using_array_syntax.php ├── php8_undef_const.php ├── php8_undef_var.php ├── php8_warn_amb_offset.php ├── php8_warn_array.php ├── php8_warn_array_empty.php ├── php8_warn_array_foreach.php ├── php8_warn_array_isset.php ├── php8_warn_array_occupied.php ├── php8_warn_array_offset.php ├── php8_warn_array_str_conv.php ├── php8_warn_array_unpack.php ├── php8_warn_array_unset.php ├── php8_warn_prop_nobj.php ├── php8_warn_resource_offset.php ├── php8_warn_str_deref_bad_off.php ├── php8_warn_string.php ├── php8_warn_un_init_offset.php ├── php8_warn_undef_array_key.php └── php8_warn_undef_prop.php ├── ch04 ├── bubble.c ├── bubble.o ├── libbubble.so ├── libsort.so ├── main.c ├── php8_ffi_addr_free_memset_memcpy.php ├── php8_ffi_alignof_sizeof.php ├── php8_ffi_array.php ├── php8_ffi_cast.php ├── php8_ffi_cdef.php ├── php8_ffi_memcmp.php ├── php8_ffi_php_callbacks.php ├── php8_ffi_typeof.php └── php8_ffi_using_func_from_lib.php ├── ch05 ├── gettysburg.txt ├── includes │ └── you_been_hacked.html ├── php7_autoload_function.php ├── php7_construct_exit.php ├── php7_spl_spl_autoload_register.php ├── php7_spl_spldoublylinkedlist.php ├── php7_spl_splfileobject.php ├── php7_spl_splheap.php ├── php8_bc_break_construct.php ├── php8_bc_break_destruct.php ├── php8_bc_break_magic.php ├── php8_bc_break_magic_to_string.php ├── php8_bc_break_serializable.php ├── php8_bc_break_serialization.php ├── php8_bc_break_sleep.php ├── php8_construct_exit.php ├── php8_oop_diff_anon_class_renaming.php ├── php8_oop_diff_array_key_exists.php ├── php8_oop_diff_static.php ├── php8_oop_diff_stringable.php ├── php8_serialization.php ├── php8_serialization_sleep.php ├── php8_serialization_wakeup.php ├── php8_serialization_wakeup_timing.php ├── php8_serialization_wakup_timing.php ├── php8_spl_spl_autoload_register.php ├── php8_spl_spldoublylinkedlist.php ├── php8_spl_splfileobject.php ├── php8_spl_splheap.php ├── php8_variance_contravariant.php ├── php8_variance_contravariant_2.php ├── php8_variance_covariant.php └── php8_variance_invariant.php ├── ch06 ├── includes │ └── php7_array_curly_1.php ├── php7_arith_non_scalar_ops.php ├── php7_array_neg_index_workaround.php ├── php7_compare_num_spaces.php ├── php7_compare_num_str.php ├── php7_compare_num_str_valid.php ├── php7_constants.php ├── php7_curly_brace_usage.php ├── php7_disabled_funcs.php ├── php7_implode_args.php ├── php7_num_str_empty_needle.php ├── php7_vprintf_bc_break.php ├── php8_args_resolve_null.php ├── php8_arith_non_scalar_ops.php ├── php8_array_negative_index.php ├── php8_assert.php ├── php8_compare_num_str.php ├── php8_crypt_sha256.php ├── php8_curly_brace_usage.php ├── php8_disabled_funcs_redefine.php ├── php8_locale_independent.php ├── php8_null_length_arg.php ├── php8_num_str_empty_needle.php ├── php8_num_str_handling.php ├── php8_num_str_is_numeric.php ├── php8_num_str_needle.php ├── php8_num_str_needle_type_hint.php ├── php8_num_str_non_wf_extracted.php ├── php8_operator_precedence.php ├── php8_password_hash.php ├── php8_printf_vs_vprintf.php └── php8_vprintf_bc_break.php ├── ch07 ├── includes │ ├── kitten.jpg │ ├── test.png │ ├── test.zip │ └── tree.xml ├── php7_ext_is_resource.php ├── php7_gd_is_resource.php ├── php7_mb_string_ereg_replace.php ├── php7_mb_string_strpos.php ├── php7_pcre.php ├── php7_reflection_signature.php ├── php7_reflection_type_tostring.php ├── php7_reflection_usage.php ├── php7_simple_xml.php ├── php7_zip_functions.php ├── php8_ext_is_resource.php ├── php8_gd_is_resource.php ├── php8_intl_date_fmt.php ├── php8_mb_string_empty_needle.php ├── php8_mb_string_ereg_replace.php ├── php8_mb_string_strpos.php ├── php8_objs_returned.php ├── php8_reflection_parms_defaults.php ├── php8_simple_xml.php ├── php8_xml_writer.php └── php8_zip_oop.php ├── ch08 ├── access_sorted_by_ip.log ├── includes │ └── reflection.html ├── php7_back_trace.php ├── php7_closure_from_callable.php ├── php7_create_function.php ├── php7_each.php ├── php7_error_handler.php ├── php7_hash_bracket_comment.php ├── php7_mbstring_func_overload.php ├── php7_money_format.php ├── php7_pdo_err_mode.php ├── php7_preg_replace_e_modifier.php ├── php7_real.php ├── php7_reflection_export.php ├── php7_restore_include_path.php ├── php7_stream_filters.php ├── php7_track_errors.php ├── php7_usage_param_order.php ├── php8_create_function.php ├── php8_each_replacements.php ├── php8_number_formatter_fmt_curr.php ├── php8_pgsql_changes.php ├── php8_restore_include_path.php ├── php8_track_errors.php └── php8_usage_param_order.php ├── ch09 ├── dom_test_1.html ├── dom_test_2.html ├── php7_class_and_obj.php ├── php7_class_normal.php ├── php7_date_time.php ├── php7_date_time_30-60-90.php ├── php7_dom_changes.php ├── php7_namespace_bad.php ├── php7_oop_diffs_private_method.php ├── php7_pdo_query_signature.php ├── php7_tidy_repair_str_static.php ├── php7_trait_abstract_signature.php ├── php7_trait_conflict_as.php ├── php8_bc_break_magic.php ├── php8_bc_break_magic_wrong.php ├── php8_class_and_obj.php ├── php8_date_time.php ├── php8_dom_changes.php ├── php8_namespace_reserved.php ├── php8_pdo_signature_change.php ├── php8_static_return_type.php ├── php8_tidy_repair_str_static.php ├── php8_trailing_comma.php └── php8_trait_conflict_as.php ├── ch10 ├── composer.json ├── composer.lock ├── info.php ├── php.ini ├── php7_spl_fixed_arr_iter.php ├── php7_spl_fixed_arr_multi.php ├── php7_spl_fixed_arr_size.php ├── php7_weak_map_problem.php ├── php8_jit_debug_values.php ├── php8_jit_mandelbrot.php ├── php8_jit_reset.php ├── php8_sort_illegal_func.php ├── php8_sort_stable.php ├── php8_sort_stable_keys.php ├── php8_sort_stable_simple.php ├── php8_spl_fixed_arr_iter.php ├── php8_spl_obj_storage.php ├── php8_weak_map_problem.php └── php8_weak_reference.php ├── ch11 ├── .gitignore ├── php7_bc_break_scanner.php ├── php7_build_magic_signature_regex.php ├── php8_bc_break_scanner_config.php ├── php8_xdebug.php └── test.csv ├── ch12 ├── composer.json ├── composer.lock ├── config │ └── config.php ├── docker-compose.yml ├── docker │ ├── Dockerfile │ ├── configure_options.txt │ ├── interrim │ │ ├── Dockerfile │ │ ├── php-fpm.conf │ │ ├── php.ini │ │ ├── php8_tips.sql │ │ ├── run.sh │ │ ├── startup.sh │ │ ├── www.conf │ │ └── www.conf.default │ ├── my.cnf │ ├── php.ini │ ├── php8_tips.sql │ ├── run.sh │ └── startup.sh ├── init.bat ├── init.sh ├── php8_chat_ajax.php ├── php8_chat_api.php ├── php8_chat_front_end.php ├── php8_chat_react.php ├── php8_chat_swoole.php ├── php8_chat_test.php ├── php8_chat_with_jquery.php ├── php8_fibers_blocked.php ├── php8_fibers_include.php ├── php8_fibers_unblocked.php ├── php8_swoole_hello_world.php ├── phpunit.xml ├── src │ ├── Chat │ │ ├── Generic │ │ │ └── Constants.php │ │ ├── Handler │ │ │ ├── DeleteHandler.php │ │ │ ├── GetAllNamesHandler.php │ │ │ ├── GetHandler.php │ │ │ ├── NextHandler.php │ │ │ └── PostHandler.php │ │ ├── Http │ │ │ ├── Client.php │ │ │ └── SwooleToPsr7.php │ │ ├── Message │ │ │ ├── Api.php │ │ │ ├── Pipe.php │ │ │ └── Render.php │ │ ├── Middleware │ │ │ ├── Access.php │ │ │ ├── Validate.php │ │ │ └── ValidatePost.php │ │ └── Service │ │ │ ├── Base.php │ │ │ ├── Connection.php │ │ │ ├── Message.php │ │ │ └── User.php │ └── config │ │ └── config.php ├── test.php └── tests │ ├── .gitignore │ └── ChatTest │ ├── Handler │ ├── GetAllNamesHandlerTest.php │ └── GetHandlerTest.php │ ├── Http │ └── ClientTest.php │ ├── Message │ └── PipeTest.php │ └── Service │ ├── BaseTest.php │ ├── MessageTest.php │ └── UserTest.php ├── css ├── bootstrap-grid.css ├── bootstrap-grid.css.map ├── bootstrap-grid.min.css ├── bootstrap-grid.min.css.map ├── bootstrap-reboot.css ├── bootstrap-reboot.css.map ├── bootstrap-reboot.min.css ├── bootstrap-reboot.min.css.map ├── bootstrap.css ├── bootstrap.css.map ├── bootstrap.min.css ├── bootstrap.min.css.map └── scrolling-nav.css ├── docker-compose.yml ├── docker ├── php7 │ ├── Dockerfile │ ├── interrim │ │ ├── Dockerfile │ │ ├── pgsql_users_create.sql │ │ ├── php8_tips.sql │ │ ├── postgresql_setup.sh │ │ └── startup.sh │ ├── php8_tips.sql │ ├── run.sh │ └── startup.sh ├── php8 │ ├── Dockerfile │ ├── interrim │ │ ├── Dockerfile │ │ ├── configure_options.txt │ │ ├── pgsql_users_create.sql │ │ ├── php8_tips.sql │ │ ├── postgresql_setup.sh │ │ └── startup.sh │ ├── php8_tips.sql │ ├── run.sh │ └── startup.sh └── startup.sh ├── favicon.ico ├── fonts ├── FreeMono.ttf ├── FreeMonoBold.ttf ├── FreeMonoBoldOblique.ttf ├── FreeMonoOblique.ttf ├── FreeSans.ttf ├── FreeSansBold.ttf ├── FreeSansBoldOblique.ttf ├── FreeSansOblique.ttf ├── FreeSerif.ttf ├── FreeSerifBold.ttf ├── FreeSerifBoldItalic.ttf └── FreeSerifItalic.ttf ├── home.phtml ├── images └── index.php ├── img ├── php7_logo.png ├── php8_logo.png └── unlikelysource_logo.png ├── index.php ├── info.php ├── init.bat ├── init.sh ├── js ├── bootstrap.bundle.js ├── bootstrap.bundle.js.map ├── bootstrap.bundle.min.js ├── bootstrap.bundle.min.js.map ├── bootstrap.js ├── bootstrap.js.map ├── bootstrap.min.js ├── bootstrap.min.js.map ├── jquery.easing.min.js ├── jquery.min.js └── scrolling-nav.js ├── run.php ├── sample_data ├── Mandelbrot.php.bin ├── access.csv ├── access.log ├── billionaires.txt ├── cities15000_min.txt ├── countryInfo.txt ├── file_list.txt ├── geonames.db ├── gettysburg.txt ├── html_src.html ├── ipsum.pdf ├── pgsql_users_create.sql ├── php8_tips.sql ├── phpMyAdmin-4.6.6-all-languages │ ├── CONTRIBUTING.md │ ├── ChangeLog │ ├── DCO │ ├── LICENSE │ ├── README │ ├── RELEASE-DATE-4.6.6 │ ├── browse_foreigners.php │ ├── build.xml │ ├── changelog.php │ ├── chk_rel.php │ ├── composer.json │ ├── config.sample.inc.php │ ├── db_central_columns.php │ ├── db_datadict.php │ ├── db_designer.php │ ├── db_events.php │ ├── db_export.php │ ├── db_import.php │ ├── db_operations.php │ ├── db_qbe.php │ ├── db_routines.php │ ├── db_search.php │ ├── db_sql.php │ ├── db_sql_autocomplete.php │ ├── db_sql_format.php │ ├── db_structure.php │ ├── db_tracking.php │ ├── db_triggers.php │ ├── doc │ │ ├── Makefile │ │ ├── _ext │ │ │ └── configext.py │ │ ├── conf.py │ │ ├── config.rst │ │ ├── copyright.rst │ │ ├── credits.rst │ │ ├── developers.rst │ │ ├── doctrees │ │ │ ├── config.doctree │ │ │ ├── copyright.doctree │ │ │ ├── credits.doctree │ │ │ ├── developers.doctree │ │ │ ├── environment.pickle │ │ │ ├── faq.doctree │ │ │ ├── glossary.doctree │ │ │ ├── import_export.doctree │ │ │ ├── index.doctree │ │ │ ├── intro.doctree │ │ │ ├── other.doctree │ │ │ ├── privileges.doctree │ │ │ ├── require.doctree │ │ │ ├── setup.doctree │ │ │ ├── transformations.doctree │ │ │ ├── user.doctree │ │ │ └── vendors.doctree │ │ ├── faq.rst │ │ ├── glossary.rst │ │ ├── html │ │ │ ├── .buildinfo │ │ │ ├── _images │ │ │ │ └── usergroups.png │ │ │ ├── _sources │ │ │ │ ├── config.txt │ │ │ │ ├── copyright.txt │ │ │ │ ├── credits.txt │ │ │ │ ├── developers.txt │ │ │ │ ├── faq.txt │ │ │ │ ├── glossary.txt │ │ │ │ ├── import_export.txt │ │ │ │ ├── index.txt │ │ │ │ ├── intro.txt │ │ │ │ ├── other.txt │ │ │ │ ├── privileges.txt │ │ │ │ ├── require.txt │ │ │ │ ├── setup.txt │ │ │ │ ├── transformations.txt │ │ │ │ ├── user.txt │ │ │ │ └── vendors.txt │ │ │ ├── _static │ │ │ │ ├── ajax-loader.gif │ │ │ │ ├── basic.css │ │ │ │ ├── classic.css │ │ │ │ ├── comment-bright.png │ │ │ │ ├── comment-close.png │ │ │ │ ├── comment.png │ │ │ │ ├── default.css │ │ │ │ ├── doctools.js │ │ │ │ ├── down-pressed.png │ │ │ │ ├── down.png │ │ │ │ ├── file.png │ │ │ │ ├── jquery.js │ │ │ │ ├── minus.png │ │ │ │ ├── plus.png │ │ │ │ ├── pygments.css │ │ │ │ ├── searchtools.js │ │ │ │ ├── sidebar.js │ │ │ │ ├── underscore.js │ │ │ │ ├── up-pressed.png │ │ │ │ ├── up.png │ │ │ │ └── websupport.js │ │ │ ├── config.html │ │ │ ├── copyright.html │ │ │ ├── credits.html │ │ │ ├── developers.html │ │ │ ├── faq.html │ │ │ ├── genindex.html │ │ │ ├── glossary.html │ │ │ ├── import_export.html │ │ │ ├── index.html │ │ │ ├── intro.html │ │ │ ├── objects.inv │ │ │ ├── other.html │ │ │ ├── privileges.html │ │ │ ├── require.html │ │ │ ├── search.html │ │ │ ├── searchindex.js │ │ │ ├── setup.html │ │ │ ├── transformations.html │ │ │ ├── user.html │ │ │ └── vendors.html │ │ ├── images │ │ │ └── usergroups.png │ │ ├── import_export.rst │ │ ├── index.rst │ │ ├── intro.rst │ │ ├── make.bat │ │ ├── other.rst │ │ ├── privileges.rst │ │ ├── require.rst │ │ ├── setup.rst │ │ ├── transformations.rst │ │ ├── user.rst │ │ └── vendors.rst │ ├── error_report.php │ ├── examples │ │ ├── config.manyhosts.inc.php │ │ ├── openid.php │ │ ├── signon-script.php │ │ └── signon.php │ ├── export.php │ ├── favicon.ico │ ├── file_echo.php │ ├── gis_data_editor.php │ ├── import.php │ ├── import_status.php │ ├── index.php │ ├── js │ │ ├── ajax.js │ │ ├── big_ints.js │ │ ├── chart.js │ │ ├── codemirror │ │ │ ├── LICENSE │ │ │ ├── addon │ │ │ │ ├── hint │ │ │ │ │ ├── show-hint.css │ │ │ │ │ ├── show-hint.js │ │ │ │ │ └── sql-hint.js │ │ │ │ ├── lint │ │ │ │ │ ├── lint.css │ │ │ │ │ ├── lint.js │ │ │ │ │ └── sql-lint.js │ │ │ │ └── runmode │ │ │ │ │ └── runmode.js │ │ │ ├── lib │ │ │ │ ├── codemirror.css │ │ │ │ └── codemirror.js │ │ │ └── mode │ │ │ │ ├── javascript │ │ │ │ └── javascript.js │ │ │ │ ├── sql │ │ │ │ └── sql.js │ │ │ │ └── xml │ │ │ │ └── xml.js │ │ ├── common.js │ │ ├── config.js │ │ ├── console.js │ │ ├── cross_framing_protection.js │ │ ├── db_central_columns.js │ │ ├── db_operations.js │ │ ├── db_qbe.js │ │ ├── db_search.js │ │ ├── db_structure.js │ │ ├── db_tracking.js │ │ ├── doclinks.js │ │ ├── error_report.js │ │ ├── export.js │ │ ├── functions.js │ │ ├── get_image.js.php │ │ ├── get_scripts.js.php │ │ ├── gis_data_editor.js │ │ ├── import.js │ │ ├── indexes.js │ │ ├── jqplot │ │ │ ├── jquery.jqplot.js │ │ │ └── plugins │ │ │ │ ├── jqplot.barRenderer.js │ │ │ │ ├── jqplot.byteFormatter.js │ │ │ │ ├── jqplot.canvasAxisLabelRenderer.js │ │ │ │ ├── jqplot.canvasTextRenderer.js │ │ │ │ ├── jqplot.categoryAxisRenderer.js │ │ │ │ ├── jqplot.cursor.js │ │ │ │ ├── jqplot.dateAxisRenderer.js │ │ │ │ ├── jqplot.highlighter.js │ │ │ │ ├── jqplot.pieRenderer.js │ │ │ │ └── jqplot.pointLabels.js │ │ ├── jquery │ │ │ ├── MIT-LICENSE.txt │ │ │ ├── additional-methods.js │ │ │ ├── jquery-2.1.4.min.js │ │ │ ├── jquery-ui-1.11.4.min.js │ │ │ ├── jquery-ui-timepicker-addon.js │ │ │ ├── jquery.ba-hashchange-1.3.js │ │ │ ├── jquery.cookie.js │ │ │ ├── jquery.debounce-1.0.5.js │ │ │ ├── jquery.event.drag-2.2.js │ │ │ ├── jquery.fullscreen.js │ │ │ ├── jquery.mousewheel.js │ │ │ ├── jquery.sortableTable.js │ │ │ ├── jquery.svg.js │ │ │ ├── jquery.tablesorter.js │ │ │ ├── jquery.uitablefilter.js │ │ │ ├── jquery.validate.js │ │ │ └── src │ │ │ │ ├── README │ │ │ │ ├── jquery-ui │ │ │ │ ├── .jshintrc │ │ │ │ ├── accordion.js │ │ │ │ ├── autocomplete.js │ │ │ │ ├── button.js │ │ │ │ ├── core.js │ │ │ │ ├── datepicker.js │ │ │ │ ├── dialog.js │ │ │ │ ├── draggable.js │ │ │ │ ├── droppable.js │ │ │ │ ├── effect-blind.js │ │ │ │ ├── effect-bounce.js │ │ │ │ ├── effect-clip.js │ │ │ │ ├── effect-drop.js │ │ │ │ ├── effect-explode.js │ │ │ │ ├── effect-fade.js │ │ │ │ ├── effect-fold.js │ │ │ │ ├── effect-highlight.js │ │ │ │ ├── effect-puff.js │ │ │ │ ├── effect-pulsate.js │ │ │ │ ├── effect-scale.js │ │ │ │ ├── effect-shake.js │ │ │ │ ├── effect-size.js │ │ │ │ ├── effect-slide.js │ │ │ │ ├── effect-transfer.js │ │ │ │ ├── effect.js │ │ │ │ ├── menu.js │ │ │ │ ├── mouse.js │ │ │ │ ├── position.js │ │ │ │ ├── progressbar.js │ │ │ │ ├── resizable.js │ │ │ │ ├── selectable.js │ │ │ │ ├── selectmenu.js │ │ │ │ ├── slider.js │ │ │ │ ├── sortable.js │ │ │ │ ├── spinner.js │ │ │ │ ├── tabs.js │ │ │ │ ├── tooltip.js │ │ │ │ └── widget.js │ │ │ │ └── jquery │ │ │ │ ├── .jshintrc │ │ │ │ ├── ajax.js │ │ │ │ ├── ajax │ │ │ │ ├── jsonp.js │ │ │ │ ├── load.js │ │ │ │ ├── parseJSON.js │ │ │ │ ├── parseXML.js │ │ │ │ ├── script.js │ │ │ │ ├── var │ │ │ │ │ ├── nonce.js │ │ │ │ │ └── rquery.js │ │ │ │ └── xhr.js │ │ │ │ ├── attributes.js │ │ │ │ ├── attributes │ │ │ │ ├── attr.js │ │ │ │ ├── classes.js │ │ │ │ ├── prop.js │ │ │ │ ├── support.js │ │ │ │ └── val.js │ │ │ │ ├── callbacks.js │ │ │ │ ├── core.js │ │ │ │ ├── core │ │ │ │ ├── access.js │ │ │ │ ├── init.js │ │ │ │ ├── parseHTML.js │ │ │ │ ├── ready.js │ │ │ │ └── var │ │ │ │ │ └── rsingleTag.js │ │ │ │ ├── css.js │ │ │ │ ├── css │ │ │ │ ├── addGetHookIf.js │ │ │ │ ├── curCSS.js │ │ │ │ ├── defaultDisplay.js │ │ │ │ ├── hiddenVisibleSelectors.js │ │ │ │ ├── support.js │ │ │ │ ├── swap.js │ │ │ │ └── var │ │ │ │ │ ├── cssExpand.js │ │ │ │ │ ├── getStyles.js │ │ │ │ │ ├── isHidden.js │ │ │ │ │ ├── rmargin.js │ │ │ │ │ └── rnumnonpx.js │ │ │ │ ├── data.js │ │ │ │ ├── data │ │ │ │ ├── Data.js │ │ │ │ ├── accepts.js │ │ │ │ └── var │ │ │ │ │ ├── data_priv.js │ │ │ │ │ └── data_user.js │ │ │ │ ├── deferred.js │ │ │ │ ├── deprecated.js │ │ │ │ ├── dimensions.js │ │ │ │ ├── effects.js │ │ │ │ ├── effects │ │ │ │ ├── Tween.js │ │ │ │ └── animatedSelector.js │ │ │ │ ├── event.js │ │ │ │ ├── event │ │ │ │ ├── ajax.js │ │ │ │ ├── alias.js │ │ │ │ └── support.js │ │ │ │ ├── exports │ │ │ │ ├── amd.js │ │ │ │ └── global.js │ │ │ │ ├── intro.js │ │ │ │ ├── jquery.js │ │ │ │ ├── manipulation.js │ │ │ │ ├── manipulation │ │ │ │ ├── _evalUrl.js │ │ │ │ ├── support.js │ │ │ │ └── var │ │ │ │ │ └── rcheckableType.js │ │ │ │ ├── offset.js │ │ │ │ ├── outro.js │ │ │ │ ├── queue.js │ │ │ │ ├── queue │ │ │ │ └── delay.js │ │ │ │ ├── selector-native.js │ │ │ │ ├── selector-sizzle.js │ │ │ │ ├── selector.js │ │ │ │ ├── serialize.js │ │ │ │ ├── sizzle │ │ │ │ ├── dist │ │ │ │ │ ├── sizzle.js │ │ │ │ │ ├── sizzle.min.js │ │ │ │ │ └── sizzle.min.map │ │ │ │ └── test │ │ │ │ │ ├── data │ │ │ │ │ ├── empty.js │ │ │ │ │ ├── mixed_sort.html │ │ │ │ │ └── testinit.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jquery.js │ │ │ │ │ └── unit │ │ │ │ │ ├── extending.js │ │ │ │ │ ├── selector.js │ │ │ │ │ └── utilities.js │ │ │ │ ├── traversing.js │ │ │ │ ├── traversing │ │ │ │ ├── findFilter.js │ │ │ │ └── var │ │ │ │ │ └── rneedsContext.js │ │ │ │ ├── var │ │ │ │ ├── arr.js │ │ │ │ ├── class2type.js │ │ │ │ ├── concat.js │ │ │ │ ├── hasOwn.js │ │ │ │ ├── indexOf.js │ │ │ │ ├── pnum.js │ │ │ │ ├── push.js │ │ │ │ ├── rnotwhite.js │ │ │ │ ├── slice.js │ │ │ │ ├── strundefined.js │ │ │ │ ├── support.js │ │ │ │ └── toString.js │ │ │ │ └── wrap.js │ │ ├── keyhandler.js │ │ ├── line_counts.php │ │ ├── makegrid.js │ │ ├── menu-resizer.js │ │ ├── messages.php │ │ ├── microhistory.js │ │ ├── multi_column_sort.js │ │ ├── navigation.js │ │ ├── normalization.js │ │ ├── openlayers │ │ │ ├── OpenLayers.js │ │ │ ├── img │ │ │ │ ├── blank.gif │ │ │ │ ├── cloud-popup-relative.png │ │ │ │ ├── drag-rectangle-off.png │ │ │ │ ├── drag-rectangle-on.png │ │ │ │ ├── east-mini.png │ │ │ │ ├── layer-switcher-maximize.png │ │ │ │ ├── layer-switcher-minimize.png │ │ │ │ ├── marker-blue.png │ │ │ │ ├── marker-gold.png │ │ │ │ ├── marker-green.png │ │ │ │ ├── marker.png │ │ │ │ ├── measuring-stick-off.png │ │ │ │ ├── measuring-stick-on.png │ │ │ │ ├── north-mini.png │ │ │ │ ├── panning-hand-off.png │ │ │ │ ├── panning-hand-on.png │ │ │ │ ├── slider.png │ │ │ │ ├── south-mini.png │ │ │ │ ├── west-mini.png │ │ │ │ ├── zoom-minus-mini.png │ │ │ │ ├── zoom-plus-mini.png │ │ │ │ ├── zoom-world-mini.png │ │ │ │ └── zoombar.png │ │ │ ├── src │ │ │ │ ├── openlayers │ │ │ │ │ └── lib │ │ │ │ │ │ ├── Firebug │ │ │ │ │ │ ├── errorIcon.png │ │ │ │ │ │ ├── firebug.css │ │ │ │ │ │ ├── firebug.html │ │ │ │ │ │ ├── firebug.js │ │ │ │ │ │ ├── firebugx.js │ │ │ │ │ │ ├── infoIcon.png │ │ │ │ │ │ ├── license.txt │ │ │ │ │ │ ├── readme.txt │ │ │ │ │ │ └── warningIcon.png │ │ │ │ │ │ ├── OpenLayers.js │ │ │ │ │ │ ├── OpenLayers │ │ │ │ │ │ ├── Animation.js │ │ │ │ │ │ ├── BaseTypes.js │ │ │ │ │ │ ├── BaseTypes │ │ │ │ │ │ │ ├── Bounds.js │ │ │ │ │ │ │ ├── Class.js │ │ │ │ │ │ │ ├── Date.js │ │ │ │ │ │ │ ├── Element.js │ │ │ │ │ │ │ ├── LonLat.js │ │ │ │ │ │ │ ├── Pixel.js │ │ │ │ │ │ │ └── Size.js │ │ │ │ │ │ ├── Console.js │ │ │ │ │ │ ├── Control.js │ │ │ │ │ │ ├── Control │ │ │ │ │ │ │ ├── ArgParser.js │ │ │ │ │ │ │ ├── Attribution.js │ │ │ │ │ │ │ ├── Button.js │ │ │ │ │ │ │ ├── CacheRead.js │ │ │ │ │ │ │ ├── CacheWrite.js │ │ │ │ │ │ │ ├── DragFeature.js │ │ │ │ │ │ │ ├── DragPan.js │ │ │ │ │ │ │ ├── DrawFeature.js │ │ │ │ │ │ │ ├── EditingToolbar.js │ │ │ │ │ │ │ ├── Geolocate.js │ │ │ │ │ │ │ ├── GetFeature.js │ │ │ │ │ │ │ ├── Graticule.js │ │ │ │ │ │ │ ├── KeyboardDefaults.js │ │ │ │ │ │ │ ├── LayerSwitcher.js │ │ │ │ │ │ │ ├── Measure.js │ │ │ │ │ │ │ ├── ModifyFeature.js │ │ │ │ │ │ │ ├── MousePosition.js │ │ │ │ │ │ │ ├── NavToolbar.js │ │ │ │ │ │ │ ├── Navigation.js │ │ │ │ │ │ │ ├── NavigationHistory.js │ │ │ │ │ │ │ ├── OverviewMap.js │ │ │ │ │ │ │ ├── Pan.js │ │ │ │ │ │ │ ├── PanPanel.js │ │ │ │ │ │ │ ├── PanZoom.js │ │ │ │ │ │ │ ├── PanZoomBar.js │ │ │ │ │ │ │ ├── Panel.js │ │ │ │ │ │ │ ├── Permalink.js │ │ │ │ │ │ │ ├── PinchZoom.js │ │ │ │ │ │ │ ├── SLDSelect.js │ │ │ │ │ │ │ ├── Scale.js │ │ │ │ │ │ │ ├── ScaleLine.js │ │ │ │ │ │ │ ├── SelectFeature.js │ │ │ │ │ │ │ ├── Snapping.js │ │ │ │ │ │ │ ├── Split.js │ │ │ │ │ │ │ ├── TouchNavigation.js │ │ │ │ │ │ │ ├── TransformFeature.js │ │ │ │ │ │ │ ├── UTFGrid.js │ │ │ │ │ │ │ ├── WMSGetFeatureInfo.js │ │ │ │ │ │ │ ├── WMTSGetFeatureInfo.js │ │ │ │ │ │ │ ├── Zoom.js │ │ │ │ │ │ │ ├── ZoomBox.js │ │ │ │ │ │ │ ├── ZoomIn.js │ │ │ │ │ │ │ ├── ZoomOut.js │ │ │ │ │ │ │ ├── ZoomPanel.js │ │ │ │ │ │ │ └── ZoomToMaxExtent.js │ │ │ │ │ │ ├── Events.js │ │ │ │ │ │ ├── Events │ │ │ │ │ │ │ ├── buttonclick.js │ │ │ │ │ │ │ └── featureclick.js │ │ │ │ │ │ ├── Feature.js │ │ │ │ │ │ ├── Feature │ │ │ │ │ │ │ └── Vector.js │ │ │ │ │ │ ├── Filter.js │ │ │ │ │ │ ├── Filter │ │ │ │ │ │ │ ├── Comparison.js │ │ │ │ │ │ │ ├── FeatureId.js │ │ │ │ │ │ │ ├── Function.js │ │ │ │ │ │ │ ├── Logical.js │ │ │ │ │ │ │ └── Spatial.js │ │ │ │ │ │ ├── Format.js │ │ │ │ │ │ ├── Format │ │ │ │ │ │ │ ├── ArcXML.js │ │ │ │ │ │ │ ├── ArcXML │ │ │ │ │ │ │ │ └── Features.js │ │ │ │ │ │ │ ├── Atom.js │ │ │ │ │ │ │ ├── CQL.js │ │ │ │ │ │ │ ├── CSWGetDomain.js │ │ │ │ │ │ │ ├── CSWGetDomain │ │ │ │ │ │ │ │ └── v2_0_2.js │ │ │ │ │ │ │ ├── CSWGetRecords.js │ │ │ │ │ │ │ ├── CSWGetRecords │ │ │ │ │ │ │ │ └── v2_0_2.js │ │ │ │ │ │ │ ├── Context.js │ │ │ │ │ │ │ ├── EncodedPolyline.js │ │ │ │ │ │ │ ├── Filter.js │ │ │ │ │ │ │ ├── Filter │ │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ │ │ ├── GML.js │ │ │ │ │ │ │ ├── GML │ │ │ │ │ │ │ │ ├── Base.js │ │ │ │ │ │ │ │ ├── v2.js │ │ │ │ │ │ │ │ └── v3.js │ │ │ │ │ │ │ ├── GPX.js │ │ │ │ │ │ │ ├── GeoJSON.js │ │ │ │ │ │ │ ├── GeoRSS.js │ │ │ │ │ │ │ ├── JSON.js │ │ │ │ │ │ │ ├── KML.js │ │ │ │ │ │ │ ├── OGCExceptionReport.js │ │ │ │ │ │ │ ├── OSM.js │ │ │ │ │ │ │ ├── OWSCommon.js │ │ │ │ │ │ │ ├── OWSCommon │ │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ │ │ ├── OWSContext.js │ │ │ │ │ │ │ ├── OWSContext │ │ │ │ │ │ │ │ └── v0_3_1.js │ │ │ │ │ │ │ ├── QueryStringFilter.js │ │ │ │ │ │ │ ├── SLD.js │ │ │ │ │ │ │ ├── SLD │ │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ │ │ └── v1_0_0_GeoServer.js │ │ │ │ │ │ │ ├── SOSCapabilities.js │ │ │ │ │ │ │ ├── SOSCapabilities │ │ │ │ │ │ │ │ └── v1_0_0.js │ │ │ │ │ │ │ ├── SOSGetFeatureOfInterest.js │ │ │ │ │ │ │ ├── SOSGetObservation.js │ │ │ │ │ │ │ ├── Text.js │ │ │ │ │ │ │ ├── WCSCapabilities.js │ │ │ │ │ │ │ ├── WCSCapabilities │ │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ │ │ ├── WCSGetCoverage.js │ │ │ │ │ │ │ ├── WFS.js │ │ │ │ │ │ │ ├── WFSCapabilities.js │ │ │ │ │ │ │ ├── WFSCapabilities │ │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ │ │ ├── WFSDescribeFeatureType.js │ │ │ │ │ │ │ ├── WFST.js │ │ │ │ │ │ │ ├── WFST │ │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ │ │ ├── WKT.js │ │ │ │ │ │ │ ├── WMC.js │ │ │ │ │ │ │ ├── WMC │ │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ │ │ ├── WMSCapabilities.js │ │ │ │ │ │ │ ├── WMSCapabilities │ │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ │ ├── v1_1.js │ │ │ │ │ │ │ │ ├── v1_1_0.js │ │ │ │ │ │ │ │ ├── v1_1_1.js │ │ │ │ │ │ │ │ ├── v1_1_1_WMSC.js │ │ │ │ │ │ │ │ ├── v1_3.js │ │ │ │ │ │ │ │ └── v1_3_0.js │ │ │ │ │ │ │ ├── WMSDescribeLayer.js │ │ │ │ │ │ │ ├── WMSDescribeLayer │ │ │ │ │ │ │ │ └── v1_1.js │ │ │ │ │ │ │ ├── WMSGetFeatureInfo.js │ │ │ │ │ │ │ ├── WMTSCapabilities.js │ │ │ │ │ │ │ ├── WMTSCapabilities │ │ │ │ │ │ │ │ └── v1_0_0.js │ │ │ │ │ │ │ ├── WPSCapabilities.js │ │ │ │ │ │ │ ├── WPSCapabilities │ │ │ │ │ │ │ │ └── v1_0_0.js │ │ │ │ │ │ │ ├── WPSDescribeProcess.js │ │ │ │ │ │ │ ├── WPSExecute.js │ │ │ │ │ │ │ ├── XLS.js │ │ │ │ │ │ │ ├── XLS │ │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ │ │ ├── XML.js │ │ │ │ │ │ │ └── XML │ │ │ │ │ │ │ │ └── VersionedOGC.js │ │ │ │ │ │ ├── Geometry.js │ │ │ │ │ │ ├── Geometry │ │ │ │ │ │ │ ├── Collection.js │ │ │ │ │ │ │ ├── Curve.js │ │ │ │ │ │ │ ├── LineString.js │ │ │ │ │ │ │ ├── LinearRing.js │ │ │ │ │ │ │ ├── MultiLineString.js │ │ │ │ │ │ │ ├── MultiPoint.js │ │ │ │ │ │ │ ├── MultiPolygon.js │ │ │ │ │ │ │ ├── Point.js │ │ │ │ │ │ │ └── Polygon.js │ │ │ │ │ │ ├── Handler.js │ │ │ │ │ │ ├── Handler │ │ │ │ │ │ │ ├── Box.js │ │ │ │ │ │ │ ├── Click.js │ │ │ │ │ │ │ ├── Drag.js │ │ │ │ │ │ │ ├── Feature.js │ │ │ │ │ │ │ ├── Hover.js │ │ │ │ │ │ │ ├── Keyboard.js │ │ │ │ │ │ │ ├── MouseWheel.js │ │ │ │ │ │ │ ├── Path.js │ │ │ │ │ │ │ ├── Pinch.js │ │ │ │ │ │ │ ├── Point.js │ │ │ │ │ │ │ ├── Polygon.js │ │ │ │ │ │ │ └── RegularPolygon.js │ │ │ │ │ │ ├── Icon.js │ │ │ │ │ │ ├── Kinetic.js │ │ │ │ │ │ ├── Lang.js │ │ │ │ │ │ ├── Lang │ │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ │ ├── be-tarask.js │ │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ │ ├── br.js │ │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ │ ├── cs-CZ.js │ │ │ │ │ │ │ ├── da-DK.js │ │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ │ ├── en-CA.js │ │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ │ ├── fur.js │ │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ │ ├── gsw.js │ │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ │ ├── hsb.js │ │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ │ ├── ia.js │ │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ │ ├── io.js │ │ │ │ │ │ │ ├── is.js │ │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ │ ├── ksh.js │ │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ │ ├── nds.js │ │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ │ ├── nn.js │ │ │ │ │ │ │ ├── oc.js │ │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ │ ├── pt-BR.js │ │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ │ ├── sv-SE.js │ │ │ │ │ │ │ ├── te.js │ │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ │ ├── zh-CN.js │ │ │ │ │ │ │ └── zh-TW.js │ │ │ │ │ │ ├── Layer.js │ │ │ │ │ │ ├── Layer │ │ │ │ │ │ │ ├── ArcGIS93Rest.js │ │ │ │ │ │ │ ├── ArcGISCache.js │ │ │ │ │ │ │ ├── ArcIMS.js │ │ │ │ │ │ │ ├── Bing.js │ │ │ │ │ │ │ ├── Boxes.js │ │ │ │ │ │ │ ├── EventPane.js │ │ │ │ │ │ │ ├── FixedZoomLevels.js │ │ │ │ │ │ │ ├── GeoRSS.js │ │ │ │ │ │ │ ├── Google.js │ │ │ │ │ │ │ ├── Google │ │ │ │ │ │ │ │ └── v3.js │ │ │ │ │ │ │ ├── Grid.js │ │ │ │ │ │ │ ├── HTTPRequest.js │ │ │ │ │ │ │ ├── Image.js │ │ │ │ │ │ │ ├── KaMap.js │ │ │ │ │ │ │ ├── KaMapCache.js │ │ │ │ │ │ │ ├── MapGuide.js │ │ │ │ │ │ │ ├── MapServer.js │ │ │ │ │ │ │ ├── Markers.js │ │ │ │ │ │ │ ├── OSM.js │ │ │ │ │ │ │ ├── PointGrid.js │ │ │ │ │ │ │ ├── PointTrack.js │ │ │ │ │ │ │ ├── SphericalMercator.js │ │ │ │ │ │ │ ├── TMS.js │ │ │ │ │ │ │ ├── Text.js │ │ │ │ │ │ │ ├── TileCache.js │ │ │ │ │ │ │ ├── UTFGrid.js │ │ │ │ │ │ │ ├── Vector.js │ │ │ │ │ │ │ ├── Vector │ │ │ │ │ │ │ │ └── RootContainer.js │ │ │ │ │ │ │ ├── WMS.js │ │ │ │ │ │ │ ├── WMTS.js │ │ │ │ │ │ │ ├── WorldWind.js │ │ │ │ │ │ │ ├── XYZ.js │ │ │ │ │ │ │ └── Zoomify.js │ │ │ │ │ │ ├── Map.js │ │ │ │ │ │ ├── Marker.js │ │ │ │ │ │ ├── Marker │ │ │ │ │ │ │ └── Box.js │ │ │ │ │ │ ├── Popup.js │ │ │ │ │ │ ├── Popup │ │ │ │ │ │ │ ├── Anchored.js │ │ │ │ │ │ │ ├── Framed.js │ │ │ │ │ │ │ └── FramedCloud.js │ │ │ │ │ │ ├── Projection.js │ │ │ │ │ │ ├── Protocol.js │ │ │ │ │ │ ├── Protocol │ │ │ │ │ │ │ ├── CSW.js │ │ │ │ │ │ │ ├── CSW │ │ │ │ │ │ │ │ └── v2_0_2.js │ │ │ │ │ │ │ ├── HTTP.js │ │ │ │ │ │ │ ├── SOS.js │ │ │ │ │ │ │ ├── SOS │ │ │ │ │ │ │ │ └── v1_0_0.js │ │ │ │ │ │ │ ├── Script.js │ │ │ │ │ │ │ ├── WFS.js │ │ │ │ │ │ │ └── WFS │ │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ │ ├── Renderer.js │ │ │ │ │ │ ├── Renderer │ │ │ │ │ │ │ ├── Canvas.js │ │ │ │ │ │ │ ├── Elements.js │ │ │ │ │ │ │ ├── SVG.js │ │ │ │ │ │ │ └── VML.js │ │ │ │ │ │ ├── Request.js │ │ │ │ │ │ ├── Request │ │ │ │ │ │ │ └── XMLHttpRequest.js │ │ │ │ │ │ ├── Rule.js │ │ │ │ │ │ ├── SingleFile.js │ │ │ │ │ │ ├── Spherical.js │ │ │ │ │ │ ├── Strategy.js │ │ │ │ │ │ ├── Strategy │ │ │ │ │ │ │ ├── BBOX.js │ │ │ │ │ │ │ ├── Cluster.js │ │ │ │ │ │ │ ├── Filter.js │ │ │ │ │ │ │ ├── Fixed.js │ │ │ │ │ │ │ ├── Paging.js │ │ │ │ │ │ │ ├── Refresh.js │ │ │ │ │ │ │ └── Save.js │ │ │ │ │ │ ├── Style.js │ │ │ │ │ │ ├── Style2.js │ │ │ │ │ │ ├── StyleMap.js │ │ │ │ │ │ ├── Symbolizer.js │ │ │ │ │ │ ├── Symbolizer │ │ │ │ │ │ │ ├── Line.js │ │ │ │ │ │ │ ├── Point.js │ │ │ │ │ │ │ ├── Polygon.js │ │ │ │ │ │ │ ├── Raster.js │ │ │ │ │ │ │ └── Text.js │ │ │ │ │ │ ├── Tile.js │ │ │ │ │ │ ├── Tile │ │ │ │ │ │ │ ├── Image.js │ │ │ │ │ │ │ ├── Image │ │ │ │ │ │ │ │ └── IFrame.js │ │ │ │ │ │ │ └── UTFGrid.js │ │ │ │ │ │ ├── TileManager.js │ │ │ │ │ │ ├── Tween.js │ │ │ │ │ │ ├── Util.js │ │ │ │ │ │ ├── Util │ │ │ │ │ │ │ └── vendorPrefix.js │ │ │ │ │ │ ├── WPSClient.js │ │ │ │ │ │ └── WPSProcess.js │ │ │ │ │ │ ├── Rico │ │ │ │ │ │ ├── Color.js │ │ │ │ │ │ ├── Corner.js │ │ │ │ │ │ └── license.js │ │ │ │ │ │ └── deprecated.js │ │ │ │ └── readme.md │ │ │ └── theme │ │ │ │ └── default │ │ │ │ ├── google.css │ │ │ │ ├── google.tidy.css │ │ │ │ ├── ie6-style.css │ │ │ │ ├── ie6-style.tidy.css │ │ │ │ ├── img │ │ │ │ ├── add_point_off.png │ │ │ │ ├── add_point_on.png │ │ │ │ ├── blank.gif │ │ │ │ ├── close.gif │ │ │ │ ├── drag-rectangle-off.png │ │ │ │ ├── drag-rectangle-on.png │ │ │ │ ├── draw_line_off.png │ │ │ │ ├── draw_line_on.png │ │ │ │ ├── draw_point_off.png │ │ │ │ ├── draw_point_on.png │ │ │ │ ├── draw_polygon_off.png │ │ │ │ ├── draw_polygon_on.png │ │ │ │ ├── editing_tool_bar.png │ │ │ │ ├── move_feature_off.png │ │ │ │ ├── move_feature_on.png │ │ │ │ ├── navigation_history.png │ │ │ │ ├── overview_replacement.gif │ │ │ │ ├── pan-panel-NOALPHA.png │ │ │ │ ├── pan-panel.png │ │ │ │ ├── pan_off.png │ │ │ │ ├── pan_on.png │ │ │ │ ├── panning-hand-off.png │ │ │ │ ├── panning-hand-on.png │ │ │ │ ├── remove_point_off.png │ │ │ │ ├── remove_point_on.png │ │ │ │ ├── ruler.png │ │ │ │ ├── save_features_off.png │ │ │ │ ├── save_features_on.png │ │ │ │ ├── view_next_off.png │ │ │ │ ├── view_next_on.png │ │ │ │ ├── view_previous_off.png │ │ │ │ ├── view_previous_on.png │ │ │ │ ├── zoom-panel-NOALPHA.png │ │ │ │ └── zoom-panel.png │ │ │ │ ├── style.css │ │ │ │ ├── style.mobile.css │ │ │ │ ├── style.mobile.tidy.css │ │ │ │ └── style.tidy.css │ │ ├── page_settings.js │ │ ├── pmd │ │ │ ├── designer_db.js │ │ │ ├── designer_objects.js │ │ │ ├── designer_page.js │ │ │ ├── history.js │ │ │ ├── init.js │ │ │ └── move.js │ │ ├── replication.js │ │ ├── rte.js │ │ ├── server_databases.js │ │ ├── server_plugins.js │ │ ├── server_privileges.js │ │ ├── server_status_advisor.js │ │ ├── server_status_monitor.js │ │ ├── server_status_processes.js │ │ ├── server_status_queries.js │ │ ├── server_status_sorter.js │ │ ├── server_status_variables.js │ │ ├── server_user_groups.js │ │ ├── server_variables.js │ │ ├── sprintf.js │ │ ├── sql.js │ │ ├── tbl_change.js │ │ ├── tbl_chart.js │ │ ├── tbl_find_replace.js │ │ ├── tbl_gis_visualization.js │ │ ├── tbl_operations.js │ │ ├── tbl_relation.js │ │ ├── tbl_select.js │ │ ├── tbl_structure.js │ │ ├── tbl_tracking.js │ │ ├── tbl_zoom_plot_jqplot.js │ │ ├── tracekit │ │ │ └── tracekit.js │ │ ├── transformations │ │ │ ├── image_upload.js │ │ │ ├── json.js │ │ │ ├── json_editor.js │ │ │ ├── sql_editor.js │ │ │ ├── xml.js │ │ │ └── xml_editor.js │ │ └── whitelist.php │ ├── libraries │ │ ├── Advisor.php │ │ ├── Config.php │ │ ├── Console.php │ │ ├── DatabaseInterface.php │ │ ├── DbList.php │ │ ├── DbQbe.php │ │ ├── DbSearch.php │ │ ├── DisplayResults.php │ │ ├── Error.php │ │ ├── ErrorHandler.php │ │ ├── File.php │ │ ├── Font.php │ │ ├── Footer.php │ │ ├── Header.php │ │ ├── Index.php │ │ ├── IndexColumn.php │ │ ├── Language.php │ │ ├── LanguageManager.php │ │ ├── Linter.php │ │ ├── ListAbstract.php │ │ ├── ListDatabase.php │ │ ├── Menu.php │ │ ├── Message.php │ │ ├── OutputBuffering.php │ │ ├── PDF.php │ │ ├── Partition.php │ │ ├── Psr4Autoloader.php │ │ ├── RecentFavoriteTable.php │ │ ├── Response.php │ │ ├── SavedSearches.php │ │ ├── Scripts.php │ │ ├── ServerStatusData.php │ │ ├── StorageEngine.php │ │ ├── SubPartition.php │ │ ├── SysInfo.php │ │ ├── SysInfoLinux.php │ │ ├── SysInfoSunOS.php │ │ ├── SysInfoWINNT.php │ │ ├── SystemDatabase.php │ │ ├── Table.php │ │ ├── Template.php │ │ ├── Theme.php │ │ ├── ThemeManager.php │ │ ├── Tracker.php │ │ ├── Types.php │ │ ├── TypesMySQL.php │ │ ├── Util.php │ │ ├── VersionInformation.php │ │ ├── ZipFile.php │ │ ├── advisor.lib.php │ │ ├── advisory_rules.txt │ │ ├── autoloader.php │ │ ├── bfShapeFiles │ │ │ └── ShapeFile.lib.php │ │ ├── bookmark.lib.php │ │ ├── browse_foreigners.lib.php │ │ ├── central_columns.lib.php │ │ ├── charset_conversion.lib.php │ │ ├── check_user_privileges.lib.php │ │ ├── cleanup.lib.php │ │ ├── common.inc.php │ │ ├── config.default.php │ │ ├── config.values.php │ │ ├── config │ │ │ ├── ConfigFile.php │ │ │ ├── Form.php │ │ │ ├── FormDisplay.php │ │ │ ├── FormDisplay.tpl.php │ │ │ ├── PageSettings.php │ │ │ ├── ServerConfigChecks.php │ │ │ ├── Validator.php │ │ │ ├── config_functions.lib.php │ │ │ ├── messages.inc.php │ │ │ ├── page_settings.forms.php │ │ │ ├── setup.forms.php │ │ │ └── user_preferences.forms.php │ │ ├── controllers │ │ │ ├── Controller.php │ │ │ ├── DatabaseController.php │ │ │ ├── TableController.php │ │ │ ├── database │ │ │ │ └── DatabaseStructureController.php │ │ │ ├── server │ │ │ │ ├── ServerBinlogController.php │ │ │ │ ├── ServerCollationsController.php │ │ │ │ ├── ServerDatabasesController.php │ │ │ │ ├── ServerEnginesController.php │ │ │ │ ├── ServerPluginsController.php │ │ │ │ └── ServerVariablesController.php │ │ │ └── table │ │ │ │ ├── TableChartController.php │ │ │ │ ├── TableGisVisualizationController.php │ │ │ │ ├── TableIndexesController.php │ │ │ │ ├── TableRelationController.php │ │ │ │ ├── TableSearchController.php │ │ │ │ └── TableStructureController.php │ │ ├── core.lib.php │ │ ├── create_addfield.lib.php │ │ ├── database_interface.inc.php │ │ ├── db_common.inc.php │ │ ├── db_designer.lib.php │ │ ├── db_table_exists.lib.php │ │ ├── dbi │ │ │ ├── DBIDummy.php │ │ │ ├── DBIExtension.lib.php │ │ │ ├── DBIExtension.php │ │ │ ├── DBIMysql.php │ │ │ ├── DBIMysqli.lib.php │ │ │ └── DBIMysqli.php │ │ ├── di │ │ │ ├── AliasItem.php │ │ │ ├── Container.php │ │ │ ├── FactoryItem.php │ │ │ ├── Item.php │ │ │ ├── ReflectorItem.php │ │ │ ├── ServiceItem.php │ │ │ └── ValueItem.php │ │ ├── display_change_password.lib.php │ │ ├── display_create_table.lib.php │ │ ├── display_export.lib.php │ │ ├── display_git_revision.lib.php │ │ ├── display_import.lib.php │ │ ├── display_import_ajax.lib.php │ │ ├── display_select_lang.lib.php │ │ ├── engines │ │ │ ├── Bdb.php │ │ │ ├── Berkeleydb.php │ │ │ ├── Binlog.php │ │ │ ├── Innobase.php │ │ │ ├── Innodb.php │ │ │ ├── Memory.php │ │ │ ├── Merge.php │ │ │ ├── Mrg_Myisam.php │ │ │ ├── Myisam.php │ │ │ ├── Ndbcluster.php │ │ │ ├── Pbxt.php │ │ │ └── Performance_Schema.php │ │ ├── error.inc.php │ │ ├── error_report.lib.php │ │ ├── export.lib.php │ │ ├── file_listing.lib.php │ │ ├── gis │ │ │ ├── GISFactory.php │ │ │ ├── GISGeometry.php │ │ │ ├── GISGeometrycollection.php │ │ │ ├── GISLinestring.php │ │ │ ├── GISMultilinestring.php │ │ │ ├── GISMultipoint.php │ │ │ ├── GISMultipolygon.php │ │ │ ├── GISPoint.php │ │ │ ├── GISPolygon.php │ │ │ └── GISVisualization.php │ │ ├── iconv_wrapper.lib.php │ │ ├── import.lib.php │ │ ├── index.lib.php │ │ ├── information_schema_relations.lib.php │ │ ├── insert_edit.lib.php │ │ ├── ip_allow_deny.lib.php │ │ ├── js_escape.lib.php │ │ ├── kanji-encoding.lib.php │ │ ├── language_stats.inc.php │ │ ├── logging.lib.php │ │ ├── mime.lib.php │ │ ├── mult_submits.inc.php │ │ ├── mult_submits.lib.php │ │ ├── mysql_charsets.inc.php │ │ ├── mysql_charsets.lib.php │ │ ├── mysql_relations.lib.php │ │ ├── navigation │ │ │ ├── Navigation.php │ │ │ ├── NavigationHeader.php │ │ │ ├── NavigationTree.php │ │ │ ├── NodeFactory.php │ │ │ └── nodes │ │ │ │ ├── Node.php │ │ │ │ ├── NodeColumn.php │ │ │ │ ├── NodeColumnContainer.php │ │ │ │ ├── NodeDatabase.php │ │ │ │ ├── NodeDatabaseChild.php │ │ │ │ ├── NodeDatabaseChildContainer.php │ │ │ │ ├── NodeDatabaseContainer.php │ │ │ │ ├── NodeEvent.php │ │ │ │ ├── NodeEventContainer.php │ │ │ │ ├── NodeFunction.php │ │ │ │ ├── NodeFunctionContainer.php │ │ │ │ ├── NodeIndex.php │ │ │ │ ├── NodeIndexContainer.php │ │ │ │ ├── NodeProcedure.php │ │ │ │ ├── NodeProcedureContainer.php │ │ │ │ ├── NodeTable.php │ │ │ │ ├── NodeTableContainer.php │ │ │ │ ├── NodeTrigger.php │ │ │ │ ├── NodeTriggerContainer.php │ │ │ │ ├── NodeView.php │ │ │ │ └── NodeViewContainer.php │ │ ├── normalization.lib.php │ │ ├── opendocument.lib.php │ │ ├── operations.lib.php │ │ ├── parse_analyze.lib.php │ │ ├── php-gettext │ │ │ ├── gettext.inc │ │ │ ├── gettext.php │ │ │ └── streams.php │ │ ├── phpseclib │ │ │ ├── Crypt │ │ │ │ ├── AES.php │ │ │ │ ├── Base.php │ │ │ │ ├── Random.php │ │ │ │ └── Rijndael.php │ │ │ └── LICENSE │ │ ├── plugin_interface.lib.php │ │ ├── plugins │ │ │ ├── AuthenticationPlugin.php │ │ │ ├── ExportPlugin.php │ │ │ ├── IOTransformationsPlugin.php │ │ │ ├── ImportPlugin.php │ │ │ ├── SchemaPlugin.php │ │ │ ├── TransformationsInterface.php │ │ │ ├── TransformationsPlugin.php │ │ │ ├── UploadInterface.php │ │ │ ├── auth │ │ │ │ ├── AuthenticationConfig.php │ │ │ │ ├── AuthenticationCookie.php │ │ │ │ ├── AuthenticationHttp.php │ │ │ │ ├── AuthenticationSignon.php │ │ │ │ └── recaptcha │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── ReCaptcha │ │ │ │ │ ├── ReCaptcha.php │ │ │ │ │ ├── RequestMethod.php │ │ │ │ │ ├── RequestMethod │ │ │ │ │ │ ├── Curl.php │ │ │ │ │ │ ├── CurlPost.php │ │ │ │ │ │ ├── Post.php │ │ │ │ │ │ ├── Socket.php │ │ │ │ │ │ └── SocketPost.php │ │ │ │ │ ├── RequestParameters.php │ │ │ │ │ └── Response.php │ │ │ │ │ └── autoload.php │ │ │ ├── export │ │ │ │ ├── ExportCodegen.php │ │ │ │ ├── ExportCsv.php │ │ │ │ ├── ExportExcel.php │ │ │ │ ├── ExportHtmlword.php │ │ │ │ ├── ExportJson.php │ │ │ │ ├── ExportLatex.php │ │ │ │ ├── ExportMediawiki.php │ │ │ │ ├── ExportOds.php │ │ │ │ ├── ExportOdt.php │ │ │ │ ├── ExportPdf.php │ │ │ │ ├── ExportPhparray.php │ │ │ │ ├── ExportSql.php │ │ │ │ ├── ExportTexytext.php │ │ │ │ ├── ExportXml.php │ │ │ │ ├── ExportYaml.php │ │ │ │ ├── PMA_ExportPdf.php │ │ │ │ ├── README │ │ │ │ └── TableProperty.php │ │ │ ├── import │ │ │ │ ├── AbstractImportCsv.php │ │ │ │ ├── ImportCsv.php │ │ │ │ ├── ImportLdi.php │ │ │ │ ├── ImportMediawiki.php │ │ │ │ ├── ImportOds.php │ │ │ │ ├── ImportShp.php │ │ │ │ ├── ImportSql.php │ │ │ │ ├── ImportXml.php │ │ │ │ ├── README │ │ │ │ ├── ShapeFile.php │ │ │ │ ├── ShapeRecord.php │ │ │ │ └── upload │ │ │ │ │ ├── UploadApc.php │ │ │ │ │ ├── UploadNoplugin.php │ │ │ │ │ ├── UploadProgress.php │ │ │ │ │ └── UploadSession.php │ │ │ ├── schema │ │ │ │ ├── ExportRelationSchema.php │ │ │ │ ├── RelationStats.php │ │ │ │ ├── SchemaDia.php │ │ │ │ ├── SchemaEps.php │ │ │ │ ├── SchemaPdf.php │ │ │ │ ├── SchemaSvg.php │ │ │ │ ├── TableStats.php │ │ │ │ ├── dia │ │ │ │ │ ├── Dia.php │ │ │ │ │ ├── DiaRelationSchema.php │ │ │ │ │ ├── RelationStatsDia.php │ │ │ │ │ └── TableStatsDia.php │ │ │ │ ├── eps │ │ │ │ │ ├── Eps.php │ │ │ │ │ ├── EpsRelationSchema.php │ │ │ │ │ ├── RelationStatsEps.php │ │ │ │ │ └── TableStatsEps.php │ │ │ │ ├── pdf │ │ │ │ │ ├── Pdf.php │ │ │ │ │ ├── PdfRelationSchema.php │ │ │ │ │ ├── RelationStatsPdf.php │ │ │ │ │ └── TableStatsPdf.php │ │ │ │ └── svg │ │ │ │ │ ├── RelationStatsSvg.php │ │ │ │ │ ├── Svg.php │ │ │ │ │ ├── SvgRelationSchema.php │ │ │ │ │ └── TableStatsSvg.php │ │ │ └── transformations │ │ │ │ ├── README │ │ │ │ ├── TEMPLATE │ │ │ │ ├── TEMPLATE_ABSTRACT │ │ │ │ ├── Text_Plain_Link.php │ │ │ │ ├── Text_Plain_Longtoipv4.php │ │ │ │ ├── Text_Plain_PreApPend.php │ │ │ │ ├── Text_Plain_Substring.php │ │ │ │ ├── abs │ │ │ │ ├── Bool2TextTransformationsPlugin.php │ │ │ │ ├── CodeMirrorEditorTransformationPlugin.php │ │ │ │ ├── DateFormatTransformationsPlugin.php │ │ │ │ ├── DownloadTransformationsPlugin.php │ │ │ │ ├── ExternalTransformationsPlugin.php │ │ │ │ ├── FormattedTransformationsPlugin.php │ │ │ │ ├── HexTransformationsPlugin.php │ │ │ │ ├── ImageLinkTransformationsPlugin.php │ │ │ │ ├── ImageUploadTransformationsPlugin.php │ │ │ │ ├── InlineTransformationsPlugin.php │ │ │ │ ├── LongToIPv4TransformationsPlugin.php │ │ │ │ ├── PreApPendTransformationsPlugin.php │ │ │ │ ├── RegexValidationTransformationsPlugin.php │ │ │ │ ├── SQLTransformationsPlugin.php │ │ │ │ ├── SubstringTransformationsPlugin.php │ │ │ │ ├── TextFileUploadTransformationsPlugin.php │ │ │ │ ├── TextImageLinkTransformationsPlugin.php │ │ │ │ └── TextLinkTransformationsPlugin.php │ │ │ │ ├── input │ │ │ │ ├── Image_JPEG_Upload.php │ │ │ │ ├── Text_Plain_FileUpload.php │ │ │ │ ├── Text_Plain_Iptobinary.php │ │ │ │ ├── Text_Plain_JsonEditor.php │ │ │ │ ├── Text_Plain_RegexValidation.php │ │ │ │ ├── Text_Plain_SqlEditor.php │ │ │ │ └── Text_Plain_XmlEditor.php │ │ │ │ └── output │ │ │ │ ├── Application_Octetstream_Download.php │ │ │ │ ├── Application_Octetstream_Hex.php │ │ │ │ ├── Image_JPEG_Inline.php │ │ │ │ ├── Image_JPEG_Link.php │ │ │ │ ├── Image_PNG_Inline.php │ │ │ │ ├── Text_Octetstream_Sql.php │ │ │ │ ├── Text_Plain_Binarytoip.php │ │ │ │ ├── Text_Plain_Bool2Text.php │ │ │ │ ├── Text_Plain_Dateformat.php │ │ │ │ ├── Text_Plain_External.php │ │ │ │ ├── Text_Plain_Formatted.php │ │ │ │ ├── Text_Plain_Imagelink.php │ │ │ │ ├── Text_Plain_Json.php │ │ │ │ ├── Text_Plain_Sql.php │ │ │ │ └── Text_Plain_Xml.php │ │ ├── pmd_common.php │ │ ├── properties │ │ │ ├── PropertyItem.php │ │ │ ├── options │ │ │ │ ├── OptionsPropertyGroup.php │ │ │ │ ├── OptionsPropertyItem.php │ │ │ │ ├── OptionsPropertyOneItem.php │ │ │ │ ├── groups │ │ │ │ │ ├── OptionsPropertyMainGroup.php │ │ │ │ │ ├── OptionsPropertyRootGroup.php │ │ │ │ │ └── OptionsPropertySubgroup.php │ │ │ │ └── items │ │ │ │ │ ├── BoolPropertyItem.php │ │ │ │ │ ├── DocPropertyItem.php │ │ │ │ │ ├── HiddenPropertyItem.php │ │ │ │ │ ├── MessageOnlyPropertyItem.php │ │ │ │ │ ├── NumberPropertyItem.php │ │ │ │ │ ├── RadioPropertyItem.php │ │ │ │ │ ├── SelectPropertyItem.php │ │ │ │ │ └── TextPropertyItem.php │ │ │ └── plugins │ │ │ │ ├── ExportPluginProperties.php │ │ │ │ ├── ImportPluginProperties.php │ │ │ │ ├── PluginPropertyItem.php │ │ │ │ └── SchemaPluginProperties.php │ │ ├── relation.lib.php │ │ ├── relation_cleanup.lib.php │ │ ├── replication.inc.php │ │ ├── replication_gui.lib.php │ │ ├── rte │ │ │ ├── rte_events.lib.php │ │ │ ├── rte_export.lib.php │ │ │ ├── rte_footer.lib.php │ │ │ ├── rte_general.lib.php │ │ │ ├── rte_list.lib.php │ │ │ ├── rte_main.inc.php │ │ │ ├── rte_routines.lib.php │ │ │ ├── rte_triggers.lib.php │ │ │ └── rte_words.lib.php │ │ ├── sanitizing.lib.php │ │ ├── select_server.lib.php │ │ ├── server_common.inc.php │ │ ├── server_common.lib.php │ │ ├── server_privileges.lib.php │ │ ├── server_status.lib.php │ │ ├── server_status_advisor.lib.php │ │ ├── server_status_monitor.lib.php │ │ ├── server_status_processes.lib.php │ │ ├── server_status_queries.lib.php │ │ ├── server_status_variables.lib.php │ │ ├── server_user_groups.lib.php │ │ ├── server_users.lib.php │ │ ├── session.inc.php │ │ ├── session.lib.php │ │ ├── special_schema_links.lib.php │ │ ├── sql-parser │ │ │ ├── ClassLoader.php │ │ │ ├── autoload.php │ │ │ └── src │ │ │ │ ├── Component.php │ │ │ │ ├── Components │ │ │ │ ├── AlterOperation.php │ │ │ │ ├── Array2d.php │ │ │ │ ├── ArrayObj.php │ │ │ │ ├── CaseExpression.php │ │ │ │ ├── Condition.php │ │ │ │ ├── CreateDefinition.php │ │ │ │ ├── DataType.php │ │ │ │ ├── Expression.php │ │ │ │ ├── ExpressionArray.php │ │ │ │ ├── FunctionCall.php │ │ │ │ ├── IntoKeyword.php │ │ │ │ ├── JoinKeyword.php │ │ │ │ ├── Key.php │ │ │ │ ├── Limit.php │ │ │ │ ├── OptionsArray.php │ │ │ │ ├── OrderKeyword.php │ │ │ │ ├── ParameterDefinition.php │ │ │ │ ├── PartitionDefinition.php │ │ │ │ ├── Reference.php │ │ │ │ ├── RenameOperation.php │ │ │ │ ├── SetOperation.php │ │ │ │ └── UnionKeyword.php │ │ │ │ ├── Context.php │ │ │ │ ├── Contexts │ │ │ │ ├── ContextMySql50000.php │ │ │ │ ├── ContextMySql50100.php │ │ │ │ ├── ContextMySql50500.php │ │ │ │ ├── ContextMySql50600.php │ │ │ │ └── ContextMySql50700.php │ │ │ │ ├── Exceptions │ │ │ │ ├── LexerException.php │ │ │ │ └── ParserException.php │ │ │ │ ├── Lexer.php │ │ │ │ ├── Parser.php │ │ │ │ ├── Statement.php │ │ │ │ ├── Statements │ │ │ │ ├── AlterStatement.php │ │ │ │ ├── AnalyzeStatement.php │ │ │ │ ├── BackupStatement.php │ │ │ │ ├── CallStatement.php │ │ │ │ ├── CheckStatement.php │ │ │ │ ├── ChecksumStatement.php │ │ │ │ ├── CreateStatement.php │ │ │ │ ├── DeleteStatement.php │ │ │ │ ├── DropStatement.php │ │ │ │ ├── ExplainStatement.php │ │ │ │ ├── InsertStatement.php │ │ │ │ ├── MaintenanceStatement.php │ │ │ │ ├── NotImplementedStatement.php │ │ │ │ ├── OptimizeStatement.php │ │ │ │ ├── RenameStatement.php │ │ │ │ ├── RepairStatement.php │ │ │ │ ├── ReplaceStatement.php │ │ │ │ ├── RestoreStatement.php │ │ │ │ ├── SelectStatement.php │ │ │ │ ├── SetStatement.php │ │ │ │ ├── ShowStatement.php │ │ │ │ ├── TransactionStatement.php │ │ │ │ ├── TruncateStatement.php │ │ │ │ └── UpdateStatement.php │ │ │ │ ├── Token.php │ │ │ │ ├── TokensList.php │ │ │ │ ├── UtfString.php │ │ │ │ ├── Utils │ │ │ │ ├── BufferedQuery.php │ │ │ │ ├── CLI.php │ │ │ │ ├── Error.php │ │ │ │ ├── Formatter.php │ │ │ │ ├── Misc.php │ │ │ │ ├── Query.php │ │ │ │ ├── Routine.php │ │ │ │ ├── Table.php │ │ │ │ └── Tokens.php │ │ │ │ └── common.php │ │ ├── sql.lib.php │ │ ├── sql_query_form.lib.php │ │ ├── string.lib.php │ │ ├── stringMb.lib.php │ │ ├── stringNative.lib.php │ │ ├── sysinfo.lib.php │ │ ├── tbl_columns_definition_form.inc.php │ │ ├── tbl_common.inc.php │ │ ├── tbl_info.inc.php │ │ ├── tbl_partition_definition.inc.php │ │ ├── tcpdf │ │ │ ├── LICENSE.TXT │ │ │ ├── README.TXT │ │ │ ├── config │ │ │ │ └── tcpdf_config.php │ │ │ ├── fonts │ │ │ │ ├── dejavu-fonts-ttf-2.34 │ │ │ │ │ └── LICENSE │ │ │ │ ├── dejavusans.ctg.z │ │ │ │ ├── dejavusans.php │ │ │ │ ├── dejavusans.z │ │ │ │ ├── dejavusansb.ctg.z │ │ │ │ ├── dejavusansb.php │ │ │ │ ├── dejavusansb.z │ │ │ │ └── helvetica.php │ │ │ ├── include │ │ │ │ ├── tcpdf_colors.php │ │ │ │ ├── tcpdf_font_data.php │ │ │ │ ├── tcpdf_fonts.php │ │ │ │ ├── tcpdf_images.php │ │ │ │ └── tcpdf_static.php │ │ │ ├── tcpdf.php │ │ │ └── tcpdf_autoconfig.php │ │ ├── tracking.lib.php │ │ ├── transformations.lib.php │ │ ├── url_generating.lib.php │ │ ├── user_preferences.inc.php │ │ ├── user_preferences.lib.php │ │ ├── util.lib.php │ │ ├── vendor_config.php │ │ └── zip_extension.lib.php │ ├── license.php │ ├── lint.php │ ├── locale │ │ ├── az │ │ │ └── LC_MESSAGES │ │ │ │ └── phpmyadmin.mo │ │ ├── bg │ │ │ └── LC_MESSAGES │ │ │ │ └── phpmyadmin.mo │ │ ├── bn │ │ │ └── LC_MESSAGES │ │ │ │ └── phpmyadmin.mo │ │ ├── ca │ │ │ └── LC_MESSAGES │ │ │ │ └── phpmyadmin.mo │ │ ├── cs │ │ │ └── LC_MESSAGES │ │ │ │ └── phpmyadmin.mo │ │ ├── da │ │ │ └── LC_MESSAGES │ │ │ │ └── phpmyadmin.mo │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ └── phpmyadmin.mo │ │ ├── el │ │ │ └── LC_MESSAGES │ │ │ │ └── phpmyadmin.mo │ │ ├── en_GB │ │ │ └── LC_MESSAGES │ │ │ │ └── phpmyadmin.mo │ │ ├── es │ │ │ └── LC_MESSAGES │ │ │ │ └── phpmyadmin.mo │ │ ├── et │ │ │ └── LC_MESSAGES │ │ │ │ └── phpmyadmin.mo │ │ ├── fi │ │ │ └── LC_MESSAGES │ │ │ │ └── phpmyadmin.mo │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ └── phpmyadmin.mo │ │ ├── gl │ │ │ └── LC_MESSAGES │ │ │ │ └── phpmyadmin.mo │ │ ├── hu │ │ │ └── LC_MESSAGES │ │ │ │ └── phpmyadmin.mo │ │ ├── hy │ │ │ └── LC_MESSAGES │ │ │ │ └── phpmyadmin.mo │ │ ├── ia │ │ │ └── LC_MESSAGES │ │ │ │ └── phpmyadmin.mo │ │ ├── id │ │ │ └── LC_MESSAGES │ │ │ │ └── phpmyadmin.mo │ │ ├── it │ │ │ └── LC_MESSAGES │ │ │ │ └── phpmyadmin.mo │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ └── phpmyadmin.mo │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ └── phpmyadmin.mo │ │ ├── lt │ │ │ └── LC_MESSAGES │ │ │ │ └── phpmyadmin.mo │ │ ├── nb │ │ │ └── LC_MESSAGES │ │ │ │ └── phpmyadmin.mo │ │ ├── nl │ │ │ └── LC_MESSAGES │ │ │ │ └── phpmyadmin.mo │ │ ├── pl │ │ │ └── LC_MESSAGES │ │ │ │ └── phpmyadmin.mo │ │ ├── pt │ │ │ └── LC_MESSAGES │ │ │ │ └── phpmyadmin.mo │ │ ├── pt_BR │ │ │ └── LC_MESSAGES │ │ │ │ └── phpmyadmin.mo │ │ ├── ro │ │ │ └── LC_MESSAGES │ │ │ │ └── phpmyadmin.mo │ │ ├── ru │ │ │ └── LC_MESSAGES │ │ │ │ └── phpmyadmin.mo │ │ ├── si │ │ │ └── LC_MESSAGES │ │ │ │ └── phpmyadmin.mo │ │ ├── sk │ │ │ └── LC_MESSAGES │ │ │ │ └── phpmyadmin.mo │ │ ├── sl │ │ │ └── LC_MESSAGES │ │ │ │ └── phpmyadmin.mo │ │ ├── sq │ │ │ └── LC_MESSAGES │ │ │ │ └── phpmyadmin.mo │ │ ├── sr@latin │ │ │ └── LC_MESSAGES │ │ │ │ └── phpmyadmin.mo │ │ ├── sv │ │ │ └── LC_MESSAGES │ │ │ │ └── phpmyadmin.mo │ │ ├── tr │ │ │ └── LC_MESSAGES │ │ │ │ └── phpmyadmin.mo │ │ ├── uk │ │ │ └── LC_MESSAGES │ │ │ │ └── phpmyadmin.mo │ │ ├── vi │ │ │ └── LC_MESSAGES │ │ │ │ └── phpmyadmin.mo │ │ ├── zh_CN │ │ │ └── LC_MESSAGES │ │ │ │ └── phpmyadmin.mo │ │ └── zh_TW │ │ │ └── LC_MESSAGES │ │ │ └── phpmyadmin.mo │ ├── logout.php │ ├── navigation.php │ ├── normalization.php │ ├── phpinfo.php │ ├── phpmyadmin.css.php │ ├── phpunit.xml.dist │ ├── phpunit.xml.hhvm │ ├── phpunit.xml.nocoverage │ ├── prefs_forms.php │ ├── prefs_manage.php │ ├── print.css │ ├── robots.txt │ ├── schema_export.php │ ├── server_binlog.php │ ├── server_collations.php │ ├── server_databases.php │ ├── server_engines.php │ ├── server_export.php │ ├── server_import.php │ ├── server_plugins.php │ ├── server_privileges.php │ ├── server_replication.php │ ├── server_sql.php │ ├── server_status.php │ ├── server_status_advisor.php │ ├── server_status_monitor.php │ ├── server_status_processes.php │ ├── server_status_queries.php │ ├── server_status_variables.php │ ├── server_user_groups.php │ ├── server_variables.php │ ├── setup │ │ ├── ajax.js │ │ ├── config.php │ │ ├── frames │ │ │ ├── config.inc.php │ │ │ ├── form.inc.php │ │ │ ├── index.inc.php │ │ │ ├── menu.inc.php │ │ │ └── servers.inc.php │ │ ├── index.php │ │ ├── lib │ │ │ ├── ConfigGenerator.php │ │ │ ├── common.inc.php │ │ │ ├── form_processing.lib.php │ │ │ └── index.lib.php │ │ ├── scripts.js │ │ ├── styles.css │ │ └── validate.php │ ├── show_config_errors.php │ ├── sql.php │ ├── sql │ │ ├── create_tables.sql │ │ ├── upgrade_column_info_4_3_0+.sql │ │ └── upgrade_tables_mysql_4_1_2+.sql │ ├── tbl_addfield.php │ ├── tbl_change.php │ ├── tbl_chart.php │ ├── tbl_create.php │ ├── tbl_export.php │ ├── tbl_find_replace.php │ ├── tbl_get_field.php │ ├── tbl_gis_visualization.php │ ├── tbl_import.php │ ├── tbl_indexes.php │ ├── tbl_operations.php │ ├── tbl_recent_favorite.php │ ├── tbl_relation.php │ ├── tbl_replace.php │ ├── tbl_row_action.php │ ├── tbl_select.php │ ├── tbl_sql.php │ ├── tbl_structure.php │ ├── tbl_tracking.php │ ├── tbl_triggers.php │ ├── tbl_zoom_select.php │ ├── templates │ │ ├── columns_definitions │ │ │ ├── column_adjust_privileges.phtml │ │ │ ├── column_attribute.phtml │ │ │ ├── column_attributes.phtml │ │ │ ├── column_auto_increment.phtml │ │ │ ├── column_comment.phtml │ │ │ ├── column_default.phtml │ │ │ ├── column_definitions_form.phtml │ │ │ ├── column_extra.phtml │ │ │ ├── column_indexes.phtml │ │ │ ├── column_length.phtml │ │ │ ├── column_name.phtml │ │ │ ├── column_null.phtml │ │ │ ├── column_type.phtml │ │ │ ├── column_virtuality.phtml │ │ │ ├── mime_type.phtml │ │ │ ├── move_column.phtml │ │ │ ├── partitions.phtml │ │ │ ├── table_fields_definitions.phtml │ │ │ ├── transformation.phtml │ │ │ └── transformation_option.phtml │ │ ├── components │ │ │ └── error_message.phtml │ │ ├── database │ │ │ ├── create_table.phtml │ │ │ ├── designer │ │ │ │ ├── aggregate_query_panel.phtml │ │ │ │ ├── canvas.phtml │ │ │ │ ├── database_tables.phtml │ │ │ │ ├── delete_relation_panel.phtml │ │ │ │ ├── edit_delete_pages.phtml │ │ │ │ ├── having_query_panel.phtml │ │ │ │ ├── js_fields.phtml │ │ │ │ ├── new_relation_panel.phtml │ │ │ │ ├── options_panel.phtml │ │ │ │ ├── page_save_as.phtml │ │ │ │ ├── page_selector.phtml │ │ │ │ ├── query_details.phtml │ │ │ │ ├── rename_to_panel.phtml │ │ │ │ ├── schema_export.phtml │ │ │ │ ├── side_menu.phtml │ │ │ │ ├── table_list.phtml │ │ │ │ └── where_query_panel.phtml │ │ │ └── structure │ │ │ │ ├── body_for_table_summary.phtml │ │ │ │ ├── browse_table.phtml │ │ │ │ ├── browse_table_label.phtml │ │ │ │ ├── check_all_tables.phtml │ │ │ │ ├── empty_table.phtml │ │ │ │ ├── favorite_anchor.phtml │ │ │ │ ├── print_view_data_dictionary_link.phtml │ │ │ │ ├── search_table.phtml │ │ │ │ ├── show_create.phtml │ │ │ │ ├── show_create_row.phtml │ │ │ │ ├── sortable_header.phtml │ │ │ │ ├── structure_table_row.phtml │ │ │ │ ├── table_header.phtml │ │ │ │ └── tracking_icon.phtml │ │ ├── error │ │ │ └── report_form.phtml │ │ ├── header_location.phtml │ │ ├── javascript │ │ │ └── display.phtml │ │ ├── list │ │ │ ├── item.phtml │ │ │ └── unordered.phtml │ │ ├── navigation │ │ │ └── logo.phtml │ │ ├── prefs_autoload.phtml │ │ ├── preview_sql.phtml │ │ ├── privileges │ │ │ ├── add_privileges_database.phtml │ │ │ ├── add_privileges_routine.phtml │ │ │ ├── add_privileges_table.phtml │ │ │ ├── edit_routine_privileges.phtml │ │ │ ├── privileges_summary.phtml │ │ │ └── privileges_summary_row.phtml │ │ ├── secondary_tabs.phtml │ │ ├── server │ │ │ ├── binlog │ │ │ │ ├── log_row.phtml │ │ │ │ └── log_selector.phtml │ │ │ ├── collations │ │ │ │ └── charsets.phtml │ │ │ ├── databases │ │ │ │ ├── create.phtml │ │ │ │ ├── table_footer.phtml │ │ │ │ ├── table_header.phtml │ │ │ │ └── table_row.phtml │ │ │ ├── engines │ │ │ │ ├── engine.phtml │ │ │ │ └── engines.phtml │ │ │ ├── plugins │ │ │ │ ├── section.phtml │ │ │ │ └── section_links.phtml │ │ │ └── variables │ │ │ │ ├── link_template.phtml │ │ │ │ ├── session_variable_row.phtml │ │ │ │ ├── variable_filter.phtml │ │ │ │ ├── variable_row.phtml │ │ │ │ └── variable_table_head.phtml │ │ ├── startAndNumberOfRowsPanel.phtml │ │ ├── table │ │ │ ├── chart │ │ │ │ └── tbl_chart.phtml │ │ │ ├── gis_visualization │ │ │ │ └── gis_visualization.phtml │ │ │ ├── index_form.phtml │ │ │ ├── relation │ │ │ │ ├── common_form.phtml │ │ │ │ ├── dropdown_generate.phtml │ │ │ │ ├── foreign_key_row.phtml │ │ │ │ ├── internal_relational_row.phtml │ │ │ │ └── relational_dropdown.phtml │ │ │ ├── search │ │ │ │ ├── column_comparison_operators.phtml │ │ │ │ ├── fields_table.phtml │ │ │ │ ├── form_tag.phtml │ │ │ │ ├── geom_func.phtml │ │ │ │ ├── input_box.phtml │ │ │ │ ├── options.phtml │ │ │ │ ├── options_zoom.phtml │ │ │ │ ├── replace_preview.phtml │ │ │ │ ├── rows_normal.phtml │ │ │ │ ├── rows_zoom.phtml │ │ │ │ ├── search_and_replace.phtml │ │ │ │ ├── selection_form.phtml │ │ │ │ ├── table_header.phtml │ │ │ │ └── zoom_result_form.phtml │ │ │ ├── secondary_tabs.phtml │ │ │ └── structure │ │ │ │ ├── action_row_in_structure_table.phtml │ │ │ │ ├── actions_in_table_structure.phtml │ │ │ │ ├── add_column.phtml │ │ │ │ ├── check_all_table_column.phtml │ │ │ │ ├── display_partitions.phtml │ │ │ │ ├── display_structure.phtml │ │ │ │ ├── display_table_stats.phtml │ │ │ │ ├── move_columns_dialog.phtml │ │ │ │ ├── optional_action_links.phtml │ │ │ │ ├── partition_definition_form.phtml │ │ │ │ ├── row_stats_table.phtml │ │ │ │ ├── table_structure_header.phtml │ │ │ │ └── table_structure_row.phtml │ │ └── test │ │ │ ├── add_data.phtml │ │ │ ├── echo.phtml │ │ │ ├── set_helper.phtml │ │ │ ├── static.phtml │ │ │ └── trim.phtml │ ├── test │ │ ├── AllSeleniumTests.php │ │ ├── Environment_test.php │ │ ├── PMATestCase.php │ │ ├── README.rst │ │ ├── bootstrap-dist.php │ │ ├── classes │ │ │ ├── AdvisorTest.php │ │ │ ├── ConfigGeneratorTest.php │ │ │ ├── ConfigTest.php │ │ │ ├── DatabaseInterfaceTest.php │ │ │ ├── DbQbeTest.php │ │ │ ├── DbSearchTest.php │ │ │ ├── DisplayResultsTest.php │ │ │ ├── ErrorHandlerTest.php │ │ │ ├── ErrorTest.php │ │ │ ├── FileTest.php │ │ │ ├── FontTest.php │ │ │ ├── FooterTest.php │ │ │ ├── HeaderTest.php │ │ │ ├── IndexTest.php │ │ │ ├── LanguageTest.php │ │ │ ├── LinterTest.php │ │ │ ├── ListDatabaseTest.php │ │ │ ├── MenuTest.php │ │ │ ├── MessageTest.php │ │ │ ├── PDFTest.php │ │ │ ├── ScriptsTest.php │ │ │ ├── ServerStatusDataTest.php │ │ │ ├── StorageEngineTest.php │ │ │ ├── SystemDatabaseTest.php │ │ │ ├── TableTest.php │ │ │ ├── TemplateTest.php │ │ │ ├── ThemeManagerTest.php │ │ │ ├── ThemeTest.php │ │ │ ├── TrackerTest.php │ │ │ ├── TypesMySQLTest.php │ │ │ ├── TypesTest.php │ │ │ ├── UtilTest.php │ │ │ ├── VersionInformationTest.php │ │ │ ├── ZipFileTest.php │ │ │ ├── _data │ │ │ │ ├── gen_version_info │ │ │ │ │ └── info.inc.php │ │ │ │ └── incorrect_theme │ │ │ │ │ └── info.inc.php │ │ │ ├── config │ │ │ │ ├── ConfigFileTest.php │ │ │ │ ├── FormDisplayTest.php │ │ │ │ ├── FormTest.php │ │ │ │ └── PageSettingsTest.php │ │ │ ├── controllers │ │ │ │ ├── DatabaseStructureControllerTest.php │ │ │ │ ├── ServerBinlogControllerTest.php │ │ │ │ ├── ServerCollationsControllerTest.php │ │ │ │ ├── ServerDatabasesControllerTest.php │ │ │ │ ├── ServerEnginesControllerTest.php │ │ │ │ ├── ServerPluginsControllerTest.php │ │ │ │ ├── ServerVariablesControllerTest.php │ │ │ │ ├── TableIndexesControllerTest.php │ │ │ │ ├── TableRelationControllerTest.php │ │ │ │ ├── TableSearchControllerTest.php │ │ │ │ └── TableStructureControllerTest.php │ │ │ ├── dbi │ │ │ │ ├── DBIMysqlTest.php │ │ │ │ └── DBIMysqliTest.php │ │ │ ├── engines │ │ │ │ ├── BdbTest.php │ │ │ │ ├── BinlogTest.php │ │ │ │ ├── InnodbTest.php │ │ │ │ ├── MemoryTest.php │ │ │ │ ├── Mrg_MyisamTest.php │ │ │ │ ├── MyisamTest.php │ │ │ │ ├── NdbclusterTest.php │ │ │ │ └── PbxtTest.php │ │ │ ├── gis │ │ │ │ ├── GISFactoryTest.php │ │ │ │ ├── GISGeomTest.php │ │ │ │ ├── GISGeometryTest.php │ │ │ │ ├── GISGeometrycollectionTest.php │ │ │ │ ├── GISLinestringTest.php │ │ │ │ ├── GISMultilinestringTest.php │ │ │ │ ├── GISMultipointTest.php │ │ │ │ ├── GISMultipolygonTest.php │ │ │ │ ├── GISPointTest.php │ │ │ │ └── GISPolygonTest.php │ │ │ ├── navigation │ │ │ │ ├── NavigationTest.php │ │ │ │ ├── NavigationTreeTest.php │ │ │ │ ├── NodeColumnContainerTest.php │ │ │ │ ├── NodeColumnTest.php │ │ │ │ ├── NodeDatabaseChildTest.php │ │ │ │ ├── NodeDatabaseTest.php │ │ │ │ ├── NodeEventContainerTest.php │ │ │ │ ├── NodeEventTest.php │ │ │ │ ├── NodeFactoryTest.php │ │ │ │ ├── NodeFunctionContainerTest.php │ │ │ │ ├── NodeFunctionTest.php │ │ │ │ ├── NodeIndexContainerTest.php │ │ │ │ ├── NodeIndexTest.php │ │ │ │ ├── NodeProcedureContainerTest.php │ │ │ │ ├── NodeProcedureTest.php │ │ │ │ ├── NodeTableContainerTest.php │ │ │ │ ├── NodeTableTest.php │ │ │ │ ├── NodeTest.php │ │ │ │ ├── NodeTriggerContainerTest.php │ │ │ │ ├── NodeTriggerTest.php │ │ │ │ ├── NodeViewContainerTest.php │ │ │ │ └── NodeViewTest.php │ │ │ ├── plugin │ │ │ │ ├── auth │ │ │ │ │ ├── AuthenticationConfigTest.php │ │ │ │ │ ├── AuthenticationCookieTest.php │ │ │ │ │ ├── AuthenticationHttpTest.php │ │ │ │ │ └── AuthenticationSignonTest.php │ │ │ │ ├── export │ │ │ │ │ ├── ExportCodegenTest.php │ │ │ │ │ ├── ExportCsvTest.php │ │ │ │ │ ├── ExportExcelTest.php │ │ │ │ │ ├── ExportHtmlwordTest.php │ │ │ │ │ ├── ExportJsonTest.php │ │ │ │ │ ├── ExportLatexTest.php │ │ │ │ │ ├── ExportMediawikiTest.php │ │ │ │ │ ├── ExportOdsTest.php │ │ │ │ │ ├── ExportOdtTest.php │ │ │ │ │ ├── ExportPdfTest.php │ │ │ │ │ ├── ExportPhparrayTest.php │ │ │ │ │ ├── ExportSqlTest.php │ │ │ │ │ ├── ExportTexytextTest.php │ │ │ │ │ ├── ExportXmlTest.php │ │ │ │ │ ├── ExportYamlTest.php │ │ │ │ │ └── TablePropertyTest.php │ │ │ │ ├── import │ │ │ │ │ ├── ImportCsvTest.php │ │ │ │ │ ├── ImportLdiTest.php │ │ │ │ │ ├── ImportMediawikiTest.php │ │ │ │ │ ├── ImportOdsTest.php │ │ │ │ │ ├── ImportShpTest.php │ │ │ │ │ ├── ImportSqlTest.php │ │ │ │ │ └── ImportXmlTest.php │ │ │ │ └── transformations │ │ │ │ │ └── TransformationPluginsTest.php │ │ │ ├── properties │ │ │ │ ├── PropertyItemTest.php │ │ │ │ ├── options │ │ │ │ │ ├── OptionsPropertyGroupTest.php │ │ │ │ │ ├── OptionsPropertyItemTest.php │ │ │ │ │ ├── OptionsPropertyOneItemTest.php │ │ │ │ │ ├── groups │ │ │ │ │ │ ├── OptionsPropertyMainGroupTest.php │ │ │ │ │ │ ├── OptionsPropertyRootGroupTest.php │ │ │ │ │ │ └── OptionsPropertySubgroupTest.php │ │ │ │ │ └── items │ │ │ │ │ │ └── PropertyItemsTest.php │ │ │ │ └── plugins │ │ │ │ │ ├── ExportPluginPropertiesTest.php │ │ │ │ │ ├── ImportPluginPropertiesTest.php │ │ │ │ │ └── PluginPropertyItemTest.php │ │ │ └── schema │ │ │ │ ├── DiaRelationSchemaTest.php │ │ │ │ ├── EpsRelationSchemaTest.php │ │ │ │ ├── ExportRelationSchemaTest.php │ │ │ │ ├── PdfRelationSchemaTest.php │ │ │ │ └── SvgRelationSchemaTest.php │ │ ├── install-browserstack │ │ ├── install-runkit │ │ ├── libraries │ │ │ ├── Files_test.php │ │ │ ├── PMA_FormDisplay_tpl_test.php │ │ │ ├── PMA_Form_Processing_test.php │ │ │ ├── PMA_GIS_modifyQuery_test.php │ │ │ ├── PMA_PMD_common_test.php │ │ │ ├── PMA_SetupIndex_test.php │ │ │ ├── PMA_bookmark_test.php │ │ │ ├── PMA_browse_foreigners_test.php │ │ │ ├── PMA_central_columns_test.php │ │ │ ├── PMA_charset_conversion_test.php │ │ │ ├── PMA_check_user_privileges_test.php │ │ │ ├── PMA_config_functions_test.php │ │ │ ├── PMA_designer_test.php │ │ │ ├── PMA_display_change_password_test.php │ │ │ ├── PMA_display_create_table_test.php │ │ │ ├── PMA_display_export_test.php │ │ │ ├── PMA_escapeJsString_test.php │ │ │ ├── PMA_export_test.php │ │ │ ├── PMA_generateCommonUrl_test.php │ │ │ ├── PMA_iconv_wrapper_test.php │ │ │ ├── PMA_import_test.php │ │ │ ├── PMA_insert_edit_test.php │ │ │ ├── PMA_ip_allow_deny_test.php │ │ │ ├── PMA_js_escape_test.php │ │ │ ├── PMA_kanji-encoding_test.php │ │ │ ├── PMA_mime_test.php │ │ │ ├── PMA_mult_submits_test.php │ │ │ ├── PMA_mysql_charsets_test.php │ │ │ ├── PMA_normalization_test.php │ │ │ ├── PMA_operations_test.php │ │ │ ├── PMA_relation_cleanup_test.php │ │ │ ├── PMA_relation_test.php │ │ │ ├── PMA_resultSetHasJustOneTable_test.php │ │ │ ├── PMA_sanitize_test.php │ │ │ ├── PMA_select_server_test.php │ │ │ ├── PMA_server_common_test.php │ │ │ ├── PMA_server_privileges_test.php │ │ │ ├── PMA_server_replication_test.php │ │ │ ├── PMA_server_status_advisor_test.php │ │ │ ├── PMA_server_status_monitor_test.php │ │ │ ├── PMA_server_status_processes_test.php │ │ │ ├── PMA_server_status_queries_test.php │ │ │ ├── PMA_server_status_test.php │ │ │ ├── PMA_server_status_variables_test.php │ │ │ ├── PMA_server_user_groups_test.php │ │ │ ├── PMA_server_users_test.php │ │ │ ├── PMA_sql_query_form_test.php │ │ │ ├── PMA_sql_test.php │ │ │ ├── PMA_tbl_tracking_test.php │ │ │ ├── PMA_transformation_test.php │ │ │ ├── PMA_user_preferences_test.php │ │ │ ├── PMA_zip_extension_test.php │ │ │ ├── common │ │ │ │ ├── PMA_browseUploadFile_test.php │ │ │ │ ├── PMA_buildActionTitles_test.php │ │ │ │ ├── PMA_cache_test.php │ │ │ │ ├── PMA_checkParameters_test.php │ │ │ │ ├── PMA_contains_nonprintable_ascii_test.php │ │ │ │ ├── PMA_convert_bit_default_value_test.php │ │ │ │ ├── PMA_escapeMySqlWildcards_test.php │ │ │ │ ├── PMA_expandUserString_test.php │ │ │ │ ├── PMA_extractColumnSpec_test.php │ │ │ │ ├── PMA_extractValueFromFormattedSize_test.php │ │ │ │ ├── PMA_foreignKeySupported_test.php │ │ │ │ ├── PMA_formatNumberByteDown_test.php │ │ │ │ ├── PMA_formatSql_test.php │ │ │ │ ├── PMA_generateHiddenMaxFileSize_test.php │ │ │ │ ├── PMA_getCheckbox_test.php │ │ │ │ ├── PMA_getDbLink_test.php │ │ │ │ ├── PMA_getDivForSliderEffect_test.php │ │ │ │ ├── PMA_getDropdown_test.php │ │ │ │ ├── PMA_getFormattedMaximumUploadSize_test.php │ │ │ │ ├── PMA_getIcon_test.php │ │ │ │ ├── PMA_getRadioFields_test.php │ │ │ │ ├── PMA_getTitleForTarget_test.php │ │ │ │ ├── PMA_localisedDateTimespan_test.php │ │ │ │ ├── PMA_pow_test.php │ │ │ │ ├── PMA_printableBitValue_test.php │ │ │ │ ├── PMA_quoting_slashing_test.php │ │ │ │ ├── PMA_showDocu_test.php │ │ │ │ ├── PMA_showMessage_test_disabled.php │ │ │ │ ├── PMA_showPHPDocu_test.php │ │ │ │ ├── PMA_stringOperations_test.php │ │ │ │ ├── PMA_unsupportedDatatypes_test.php │ │ │ │ └── PMA_whichCrlf_test.php │ │ │ ├── config │ │ │ │ └── PMA_messages_inc_test.php │ │ │ ├── core │ │ │ │ ├── PMA_array_test.php │ │ │ │ ├── PMA_checkPageValidity_test.php │ │ │ │ ├── PMA_cleanupPathInfo_test.php │ │ │ │ ├── PMA_fatalError_test.php │ │ │ │ ├── PMA_getLinks_test.php │ │ │ │ ├── PMA_getTableCount_test_dis.php │ │ │ │ ├── PMA_get_real_size_test.php │ │ │ │ ├── PMA_headerLocation_test.php │ │ │ │ ├── PMA_ifSetOr_test.php │ │ │ │ ├── PMA_isAllowedDomain_test.php │ │ │ │ ├── PMA_isValid_test.php │ │ │ │ ├── PMA_safeUnserialize_test.php │ │ │ │ ├── PMA_sanitizeMySQLHost_test.php │ │ │ │ ├── PMA_securePath_test.php │ │ │ │ └── PMA_warnMissingExtension_test.php │ │ │ ├── database_interface_test.php │ │ │ ├── php-gettext │ │ │ │ ├── Locales_test.php │ │ │ │ ├── PMA_FileReader_test.php │ │ │ │ ├── PMA_StreamReader_test.php │ │ │ │ ├── PMA_StringReader_test.php │ │ │ │ ├── PMA_gettext_test.php │ │ │ │ └── Parsing_test.php │ │ │ ├── rte │ │ │ │ ├── PMA_EVN_getDataFromRequest_test.php │ │ │ │ ├── PMA_EVN_getEditorForm_test.php │ │ │ │ ├── PMA_EVN_getQueryFromRequest_test.php │ │ │ │ ├── PMA_RTN_getDataFromRequest_test.php │ │ │ │ ├── PMA_RTN_getEditorForm_test.php │ │ │ │ ├── PMA_RTN_getExecuteForm_test.php │ │ │ │ ├── PMA_RTN_getQueryFromRequest_test.php │ │ │ │ ├── PMA_TRI_getDataFromRequest_test.php │ │ │ │ ├── PMA_TRI_getEditorForm_test.php │ │ │ │ └── PMA_TRI_getQueryFromRequest_test.php │ │ │ ├── stubs │ │ │ │ └── ResponseStub.php │ │ │ └── sysinfo_test.php │ │ ├── php-noprofile.ini │ │ ├── php-runkit.ini │ │ ├── selenium │ │ │ ├── PmaSeleniumCreateDropDatabaseTest.php │ │ │ ├── PmaSeleniumCreateRemoveUserTest.php │ │ │ ├── PmaSeleniumDbEventsTest.php │ │ │ ├── PmaSeleniumDbOperationsTest.php │ │ │ ├── PmaSeleniumDbProceduresTest.php │ │ │ ├── PmaSeleniumDbStructureTest.php │ │ │ ├── PmaSeleniumDbTriggersTest.php │ │ │ ├── PmaSeleniumExportTest.php │ │ │ ├── PmaSeleniumImportTest.php │ │ │ ├── PmaSeleniumLoginTest.php │ │ │ ├── PmaSeleniumNormalizationTest.php │ │ │ ├── PmaSeleniumPrivilegesTest.php │ │ │ ├── PmaSeleniumServerSettingsTest.php │ │ │ ├── PmaSeleniumTableBrowseTest.php │ │ │ ├── PmaSeleniumTableCreateTest.php │ │ │ ├── PmaSeleniumTableInsertTest.php │ │ │ ├── PmaSeleniumTableOperationsTest.php │ │ │ ├── PmaSeleniumTableStructureTest.php │ │ │ ├── PmaSeleniumTrackingTest.php │ │ │ ├── PmaSeleniumXssTest.php │ │ │ └── TestBase.php │ │ ├── start-local-server │ │ ├── test_data │ │ │ ├── config.inc.php │ │ │ ├── db_import.sql │ │ │ ├── db_test.csv │ │ │ ├── db_test.ods │ │ │ ├── db_test_ldi.csv │ │ │ ├── dresden_osm.shp.zip │ │ │ ├── exploit_test.sql │ │ │ ├── phpmyadmin.mediawiki │ │ │ ├── phpmyadmin_importXML_For_Testing.xml │ │ │ ├── pma_bookmark.sql │ │ │ ├── server_import.sql │ │ │ ├── table_import.sql │ │ │ ├── test.bz2 │ │ │ ├── test.file │ │ │ ├── test.gz │ │ │ ├── test.zip │ │ │ └── timezone.shp.zip │ │ ├── theme.php │ │ └── wui.php │ ├── themes.php │ ├── themes │ │ ├── dot.gif │ │ ├── original │ │ │ ├── css │ │ │ │ ├── common.css.php │ │ │ │ ├── navigation.css.php │ │ │ │ └── printview.css │ │ │ ├── img │ │ │ │ ├── ajax_clock_small.gif │ │ │ │ ├── arrow_ltr.png │ │ │ │ ├── arrow_rtl.png │ │ │ │ ├── b_bookmark.png │ │ │ │ ├── b_browse.png │ │ │ │ ├── b_calendar.png │ │ │ │ ├── b_chart.png │ │ │ │ ├── b_close.png │ │ │ │ ├── b_column_add.png │ │ │ │ ├── b_comment.png │ │ │ │ ├── b_dbstatistics.png │ │ │ │ ├── b_deltbl.png │ │ │ │ ├── b_docs.png │ │ │ │ ├── b_drop.png │ │ │ │ ├── b_edit.png │ │ │ │ ├── b_empty.png │ │ │ │ ├── b_engine.png │ │ │ │ ├── b_event_add.png │ │ │ │ ├── b_events.png │ │ │ │ ├── b_export.png │ │ │ │ ├── b_favorite.png │ │ │ │ ├── b_find_replace.png │ │ │ │ ├── b_ftext.png │ │ │ │ ├── b_globe.gif │ │ │ │ ├── b_group.png │ │ │ │ ├── b_help.png │ │ │ │ ├── b_home.png │ │ │ │ ├── b_import.png │ │ │ │ ├── b_index.png │ │ │ │ ├── b_index_add.png │ │ │ │ ├── b_info.png │ │ │ │ ├── b_inline_edit.png │ │ │ │ ├── b_insrow.png │ │ │ │ ├── b_minus.png │ │ │ │ ├── b_more.png │ │ │ │ ├── b_move.png │ │ │ │ ├── b_newdb.png │ │ │ │ ├── b_newtbl.png │ │ │ │ ├── b_nextpage.png │ │ │ │ ├── b_no_favorite.png │ │ │ │ ├── b_plugin.png │ │ │ │ ├── b_plus.png │ │ │ │ ├── b_primary.png │ │ │ │ ├── b_print.png │ │ │ │ ├── b_props.png │ │ │ │ ├── b_relations.png │ │ │ │ ├── b_report.png │ │ │ │ ├── b_routine_add.png │ │ │ │ ├── b_routines.png │ │ │ │ ├── b_save.png │ │ │ │ ├── b_saveimage.png │ │ │ │ ├── b_sbrowse.png │ │ │ │ ├── b_search.png │ │ │ │ ├── b_select.png │ │ │ │ ├── b_snewtbl.png │ │ │ │ ├── b_spatial.png │ │ │ │ ├── b_sql.png │ │ │ │ ├── b_sqlhelp.png │ │ │ │ ├── b_table_add.png │ │ │ │ ├── b_tblanalyse.png │ │ │ │ ├── b_tblexport.png │ │ │ │ ├── b_tblimport.png │ │ │ │ ├── b_tblops.png │ │ │ │ ├── b_tbloptimize.png │ │ │ │ ├── b_tipp.png │ │ │ │ ├── b_trigger_add.png │ │ │ │ ├── b_triggers.png │ │ │ │ ├── b_undo.png │ │ │ │ ├── b_unique.png │ │ │ │ ├── b_usradd.png │ │ │ │ ├── b_usrcheck.png │ │ │ │ ├── b_usrdrop.png │ │ │ │ ├── b_usredit.png │ │ │ │ ├── b_usrlist.png │ │ │ │ ├── b_versions.png │ │ │ │ ├── b_view.png │ │ │ │ ├── b_view_add.png │ │ │ │ ├── b_views.png │ │ │ │ ├── bd_browse.png │ │ │ │ ├── bd_deltbl.png │ │ │ │ ├── bd_drop.png │ │ │ │ ├── bd_edit.png │ │ │ │ ├── bd_empty.png │ │ │ │ ├── bd_export.png │ │ │ │ ├── bd_ftext.png │ │ │ │ ├── bd_index.png │ │ │ │ ├── bd_insrow.png │ │ │ │ ├── bd_nextpage.png │ │ │ │ ├── bd_primary.png │ │ │ │ ├── bd_routine_add.png │ │ │ │ ├── bd_sbrowse.png │ │ │ │ ├── bd_select.png │ │ │ │ ├── bd_spatial.png │ │ │ │ ├── bd_unique.png │ │ │ │ ├── centralColumns.png │ │ │ │ ├── centralColumns_add.png │ │ │ │ ├── centralColumns_delete.png │ │ │ │ ├── cleardot.gif │ │ │ │ ├── col_drop.png │ │ │ │ ├── col_pointer.png │ │ │ │ ├── col_pointer_ver.png │ │ │ │ ├── console.png │ │ │ │ ├── east-mini.png │ │ │ │ ├── error.ico │ │ │ │ ├── eye.png │ │ │ │ ├── eye_grey.png │ │ │ │ ├── lightbulb.png │ │ │ │ ├── lightbulb_off.png │ │ │ │ ├── logo_left.png │ │ │ │ ├── logo_right.png │ │ │ │ ├── more.png │ │ │ │ ├── new_data.png │ │ │ │ ├── new_data_hovered.png │ │ │ │ ├── new_data_selected.png │ │ │ │ ├── new_data_selected_hovered.png │ │ │ │ ├── new_struct.png │ │ │ │ ├── new_struct_hovered.png │ │ │ │ ├── new_struct_selected.png │ │ │ │ ├── new_struct_selected_hovered.png │ │ │ │ ├── normalize.png │ │ │ │ ├── north-mini.png │ │ │ │ ├── pause.png │ │ │ │ ├── play.png │ │ │ │ ├── s_asc.png │ │ │ │ ├── s_asci.png │ │ │ │ ├── s_attention.png │ │ │ │ ├── s_cancel.png │ │ │ │ ├── s_cog.png │ │ │ │ ├── s_collapseall.png │ │ │ │ ├── s_db.png │ │ │ │ ├── s_desc.png │ │ │ │ ├── s_error.png │ │ │ │ ├── s_error2.png │ │ │ │ ├── s_fulltext.png │ │ │ │ ├── s_host.png │ │ │ │ ├── s_info.png │ │ │ │ ├── s_lang.png │ │ │ │ ├── s_link.png │ │ │ │ ├── s_lock.png │ │ │ │ ├── s_loggoff.png │ │ │ │ ├── s_notice.png │ │ │ │ ├── s_okay.png │ │ │ │ ├── s_partialtext.png │ │ │ │ ├── s_passwd.png │ │ │ │ ├── s_really.png │ │ │ │ ├── s_reload.png │ │ │ │ ├── s_replication.png │ │ │ │ ├── s_rights.png │ │ │ │ ├── s_sortable.png │ │ │ │ ├── s_status.png │ │ │ │ ├── s_success.png │ │ │ │ ├── s_sync.png │ │ │ │ ├── s_tbl.png │ │ │ │ ├── s_theme.png │ │ │ │ ├── s_top.png │ │ │ │ ├── s_unlink.png │ │ │ │ ├── s_vars.png │ │ │ │ ├── s_views.png │ │ │ │ ├── south-mini.png │ │ │ │ ├── spacer.png │ │ │ │ ├── sprites.png │ │ │ │ ├── toggle-ltr.png │ │ │ │ ├── toggle-rtl.png │ │ │ │ ├── vertical_line.png │ │ │ │ ├── west-mini.png │ │ │ │ ├── window-new.png │ │ │ │ ├── zoom-minus-mini.png │ │ │ │ ├── zoom-plus-mini.png │ │ │ │ └── zoom-world-mini.png │ │ │ ├── info.inc.php │ │ │ ├── jquery │ │ │ │ ├── images │ │ │ │ │ ├── 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.11.4.css │ │ │ ├── layout.inc.php │ │ │ ├── screen.png │ │ │ └── sprites.lib.php │ │ ├── pmahomme │ │ │ ├── css │ │ │ │ ├── codemirror.css.php │ │ │ │ ├── common.css.php │ │ │ │ ├── enum_editor.css.php │ │ │ │ ├── gis.css.php │ │ │ │ ├── jqplot.css.php │ │ │ │ ├── navigation.css.php │ │ │ │ ├── pmd.css.php │ │ │ │ ├── printview.css │ │ │ │ ├── resizable-menu.css.php │ │ │ │ └── rte.css.php │ │ │ ├── img │ │ │ │ ├── ajax_clock_small.gif │ │ │ │ ├── arrow_ltr.png │ │ │ │ ├── arrow_rtl.png │ │ │ │ ├── asc_order.png │ │ │ │ ├── b_bookmark.png │ │ │ │ ├── b_browse.png │ │ │ │ ├── b_calendar.png │ │ │ │ ├── b_chart.png │ │ │ │ ├── b_close.png │ │ │ │ ├── b_column_add.png │ │ │ │ ├── b_comment.png │ │ │ │ ├── b_dbstatistics.png │ │ │ │ ├── b_deltbl.png │ │ │ │ ├── b_docs.png │ │ │ │ ├── b_docsql.png │ │ │ │ ├── b_drop.png │ │ │ │ ├── b_edit.png │ │ │ │ ├── b_empty.png │ │ │ │ ├── b_engine.png │ │ │ │ ├── b_event_add.png │ │ │ │ ├── b_events.png │ │ │ │ ├── b_export.png │ │ │ │ ├── b_favorite.png │ │ │ │ ├── b_find_replace.png │ │ │ │ ├── b_firstpage.png │ │ │ │ ├── b_ftext.png │ │ │ │ ├── b_globe.gif │ │ │ │ ├── b_group.png │ │ │ │ ├── b_help.png │ │ │ │ ├── b_home.png │ │ │ │ ├── b_import.png │ │ │ │ ├── b_index.png │ │ │ │ ├── b_index_add.png │ │ │ │ ├── b_info.png │ │ │ │ ├── b_inline_edit.png │ │ │ │ ├── b_insrow.png │ │ │ │ ├── b_lastpage.png │ │ │ │ ├── b_minus.png │ │ │ │ ├── b_more.png │ │ │ │ ├── b_move.png │ │ │ │ ├── b_newdb.png │ │ │ │ ├── b_newtbl.png │ │ │ │ ├── b_nextpage.png │ │ │ │ ├── b_no_favorite.png │ │ │ │ ├── b_pdfdoc.png │ │ │ │ ├── b_plugin.png │ │ │ │ ├── b_plus.png │ │ │ │ ├── b_prevpage.png │ │ │ │ ├── b_primary.png │ │ │ │ ├── b_print.png │ │ │ │ ├── b_props.png │ │ │ │ ├── b_relations.png │ │ │ │ ├── b_report.png │ │ │ │ ├── b_routine_add.png │ │ │ │ ├── b_routines.png │ │ │ │ ├── b_save.png │ │ │ │ ├── b_saveimage.png │ │ │ │ ├── b_sbrowse.png │ │ │ │ ├── b_sdb.png │ │ │ │ ├── b_search.png │ │ │ │ ├── b_select.png │ │ │ │ ├── b_snewtbl.png │ │ │ │ ├── b_spatial.png │ │ │ │ ├── b_sql.png │ │ │ │ ├── b_sqldoc.png │ │ │ │ ├── b_sqlhelp.png │ │ │ │ ├── b_table_add.png │ │ │ │ ├── b_tblanalyse.png │ │ │ │ ├── b_tblexport.png │ │ │ │ ├── b_tblimport.png │ │ │ │ ├── b_tblops.png │ │ │ │ ├── b_tbloptimize.png │ │ │ │ ├── b_tipp.png │ │ │ │ ├── b_trigger_add.png │ │ │ │ ├── b_triggers.png │ │ │ │ ├── b_undo.png │ │ │ │ ├── b_unique.png │ │ │ │ ├── b_usradd.png │ │ │ │ ├── b_usrcheck.png │ │ │ │ ├── b_usrdrop.png │ │ │ │ ├── b_usredit.png │ │ │ │ ├── b_usrlist.png │ │ │ │ ├── b_versions.png │ │ │ │ ├── b_view.png │ │ │ │ ├── b_view_add.png │ │ │ │ ├── b_views.png │ │ │ │ ├── bd_browse.png │ │ │ │ ├── bd_deltbl.png │ │ │ │ ├── bd_drop.png │ │ │ │ ├── bd_edit.png │ │ │ │ ├── bd_empty.png │ │ │ │ ├── bd_export.png │ │ │ │ ├── bd_firstpage.png │ │ │ │ ├── bd_ftext.png │ │ │ │ ├── bd_index.png │ │ │ │ ├── bd_insrow.png │ │ │ │ ├── bd_lastpage.png │ │ │ │ ├── bd_nextpage.png │ │ │ │ ├── bd_prevpage.png │ │ │ │ ├── bd_primary.png │ │ │ │ ├── bd_routine_add.png │ │ │ │ ├── bd_sbrowse.png │ │ │ │ ├── bd_select.png │ │ │ │ ├── bd_spatial.png │ │ │ │ ├── bd_unique.png │ │ │ │ ├── centralColumns.png │ │ │ │ ├── centralColumns_add.png │ │ │ │ ├── centralColumns_delete.png │ │ │ │ ├── col_drop.png │ │ │ │ ├── col_pointer.png │ │ │ │ ├── col_pointer_ver.png │ │ │ │ ├── console.png │ │ │ │ ├── database.png │ │ │ │ ├── east-mini.png │ │ │ │ ├── error.ico │ │ │ │ ├── eye.png │ │ │ │ ├── eye_grey.png │ │ │ │ ├── item.png │ │ │ │ ├── left_nav_bg.png │ │ │ │ ├── lightbulb.png │ │ │ │ ├── lightbulb_off.png │ │ │ │ ├── logo_left.png │ │ │ │ ├── logo_right.png │ │ │ │ ├── more.png │ │ │ │ ├── new_data.png │ │ │ │ ├── new_data_hovered.png │ │ │ │ ├── new_data_selected.png │ │ │ │ ├── new_data_selected_hovered.png │ │ │ │ ├── new_struct.png │ │ │ │ ├── new_struct_hovered.png │ │ │ │ ├── new_struct_selected.png │ │ │ │ ├── new_struct_selected_hovered.png │ │ │ │ ├── normalize.png │ │ │ │ ├── north-mini.png │ │ │ │ ├── pause.png │ │ │ │ ├── php_sym.png │ │ │ │ ├── play.png │ │ │ │ ├── pma_logo2.png │ │ │ │ ├── pmd │ │ │ │ │ ├── 1.png │ │ │ │ │ ├── 2.png │ │ │ │ │ ├── 2leftarrow.png │ │ │ │ │ ├── 2leftarrow_m.png │ │ │ │ │ ├── 2rightarrow.png │ │ │ │ │ ├── 2rightarrow_m.png │ │ │ │ │ ├── 3.png │ │ │ │ │ ├── 4.png │ │ │ │ │ ├── 5.png │ │ │ │ │ ├── 6.png │ │ │ │ │ ├── 7.png │ │ │ │ │ ├── 8.png │ │ │ │ │ ├── FieldKey_small.png │ │ │ │ │ ├── Field_small.png │ │ │ │ │ ├── Field_small_char.png │ │ │ │ │ ├── Field_small_date.png │ │ │ │ │ ├── Field_small_int.png │ │ │ │ │ ├── Header.png │ │ │ │ │ ├── Header_Linked.png │ │ │ │ │ ├── anchor.png │ │ │ │ │ ├── and_icon.png │ │ │ │ │ ├── ang_direct.png │ │ │ │ │ ├── bord.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── def.png │ │ │ │ │ ├── display_field.png │ │ │ │ │ ├── downarrow1.png │ │ │ │ │ ├── downarrow2.png │ │ │ │ │ ├── downarrow2_m.png │ │ │ │ │ ├── exec.png │ │ │ │ │ ├── exec_small.png │ │ │ │ │ ├── exitFullscreen.png │ │ │ │ │ ├── export.png │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── grid.png │ │ │ │ │ ├── help.png │ │ │ │ │ ├── help_relation.png │ │ │ │ │ ├── left_panel_butt.png │ │ │ │ │ ├── left_panel_tab.png │ │ │ │ │ ├── minus.png │ │ │ │ │ ├── or_icon.png │ │ │ │ │ ├── page_add.png │ │ │ │ │ ├── page_delete.png │ │ │ │ │ ├── page_edit.png │ │ │ │ │ ├── pdf.png │ │ │ │ │ ├── plus.png │ │ │ │ │ ├── query_builder.png │ │ │ │ │ ├── relation.png │ │ │ │ │ ├── reload.png │ │ │ │ │ ├── resize.png │ │ │ │ │ ├── resizeright.png │ │ │ │ │ ├── rightarrow1.png │ │ │ │ │ ├── rightarrow2.png │ │ │ │ │ ├── save.png │ │ │ │ │ ├── save_as.png │ │ │ │ │ ├── small_tab.png │ │ │ │ │ ├── table.png │ │ │ │ │ ├── toggle_lines.png │ │ │ │ │ ├── top_panel.png │ │ │ │ │ ├── uparrow2_m.png │ │ │ │ │ └── viewInFullscreen.png │ │ │ │ ├── s_asc.png │ │ │ │ ├── s_asci.png │ │ │ │ ├── s_attention.png │ │ │ │ ├── s_cancel.png │ │ │ │ ├── s_cancel2.png │ │ │ │ ├── s_cog.png │ │ │ │ ├── s_collapseall.png │ │ │ │ ├── s_db.png │ │ │ │ ├── s_desc.png │ │ │ │ ├── s_error.png │ │ │ │ ├── s_error2.png │ │ │ │ ├── s_fulltext.png │ │ │ │ ├── s_host.png │ │ │ │ ├── s_info.png │ │ │ │ ├── s_lang.png │ │ │ │ ├── s_link.png │ │ │ │ ├── s_lock.png │ │ │ │ ├── s_loggoff.png │ │ │ │ ├── s_notice.png │ │ │ │ ├── s_okay.png │ │ │ │ ├── s_partialtext.png │ │ │ │ ├── s_passwd.png │ │ │ │ ├── s_process.png │ │ │ │ ├── s_really.png │ │ │ │ ├── s_reload.png │ │ │ │ ├── s_replication.png │ │ │ │ ├── s_rights.png │ │ │ │ ├── s_sortable.png │ │ │ │ ├── s_status.png │ │ │ │ ├── s_success.png │ │ │ │ ├── s_sync.png │ │ │ │ ├── s_tbl.png │ │ │ │ ├── s_theme.png │ │ │ │ ├── s_top.png │ │ │ │ ├── s_unlink.png │ │ │ │ ├── s_vars.png │ │ │ │ ├── s_views.png │ │ │ │ ├── select_bg.png │ │ │ │ ├── south-mini.png │ │ │ │ ├── spacer.png │ │ │ │ ├── sprites.png │ │ │ │ ├── toggle-ltr.png │ │ │ │ ├── toggle-rtl.png │ │ │ │ ├── vertical_line.png │ │ │ │ ├── west-mini.png │ │ │ │ ├── window-new.png │ │ │ │ ├── zoom-minus-mini.png │ │ │ │ ├── zoom-plus-mini.png │ │ │ │ └── zoom-world-mini.png │ │ │ ├── info.inc.php │ │ │ ├── jquery │ │ │ │ ├── images │ │ │ │ │ ├── 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.11.4.css │ │ │ ├── layout.inc.php │ │ │ ├── screen.png │ │ │ └── sprites.lib.php │ │ ├── sprites.css.php │ │ └── svg_gradient.php │ ├── transformation_overview.php │ ├── transformation_wrapper.php │ ├── url.php │ ├── user_password.php │ ├── version_check.php │ ├── view_create.php │ └── view_operations.php ├── phpldapadmin-1.2.3 │ ├── .gitignore │ ├── INSTALL │ ├── LICENSE │ ├── VERSION │ ├── config │ │ └── config.php.example │ ├── doc │ │ ├── README-translation.txt │ │ ├── certs │ │ │ ├── ca-bundle.crt │ │ │ ├── slapd.crt │ │ │ └── slapd.key │ │ ├── demo-reset.sh │ │ ├── ldif-Flintstones │ │ ├── ldif-Simpsons │ │ ├── ldif-example-com │ │ ├── ldif-example.com │ │ ├── phpldapadmin-demo.conf │ │ ├── pla-test-i18n.ldif │ │ └── uidpool.schema │ ├── hooks │ │ ├── classes │ │ │ └── README │ │ └── functions │ │ │ ├── README │ │ │ └── example.php │ ├── htdocs │ │ ├── add_attr_form.php │ │ ├── add_oclass_form.php │ │ ├── add_value_form.php │ │ ├── cmd.php │ │ ├── collapse.php │ │ ├── common.php │ │ ├── compare.php │ │ ├── compare_form.php │ │ ├── copy.php │ │ ├── copy_form.php │ │ ├── create.php │ │ ├── create_confirm.php │ │ ├── css │ │ │ ├── default │ │ │ │ └── style.css │ │ │ └── tango │ │ │ │ └── style.css │ │ ├── delete.php │ │ ├── delete_attr.php │ │ ├── delete_form.php │ │ ├── download_binary_attr.php │ │ ├── draw_tree_node.php │ │ ├── entry_chooser.php │ │ ├── expand.php │ │ ├── export.php │ │ ├── export_form.php │ │ ├── images │ │ │ ├── INFO │ │ │ ├── ajax-progress.gif │ │ │ ├── ajax-spinner.gif │ │ │ ├── countries │ │ │ │ ├── af.png │ │ │ │ ├── al.png │ │ │ │ ├── am.png │ │ │ │ ├── an.png │ │ │ │ ├── ao.png │ │ │ │ ├── ar.png │ │ │ │ ├── at.png │ │ │ │ ├── au.png │ │ │ │ ├── aw.png │ │ │ │ ├── az.png │ │ │ │ ├── ba.png │ │ │ │ ├── bb.png │ │ │ │ ├── bd.png │ │ │ │ ├── be.png │ │ │ │ ├── bf.png │ │ │ │ ├── bg.png │ │ │ │ ├── bh.png │ │ │ │ ├── bi.png │ │ │ │ ├── bj.png │ │ │ │ ├── bm.png │ │ │ │ ├── bn.png │ │ │ │ ├── bo.png │ │ │ │ ├── br.png │ │ │ │ ├── bs.png │ │ │ │ ├── bt.png │ │ │ │ ├── bw.png │ │ │ │ ├── by.png │ │ │ │ ├── bz.png │ │ │ │ ├── ca.png │ │ │ │ ├── cf.png │ │ │ │ ├── cg.png │ │ │ │ ├── ch.png │ │ │ │ ├── ci.png │ │ │ │ ├── ck.png │ │ │ │ ├── cl.png │ │ │ │ ├── cm.png │ │ │ │ ├── cn.png │ │ │ │ ├── co.png │ │ │ │ ├── cr.png │ │ │ │ ├── cu.png │ │ │ │ ├── cv.png │ │ │ │ ├── cy.png │ │ │ │ ├── cz.png │ │ │ │ ├── de.png │ │ │ │ ├── dk.png │ │ │ │ ├── dz.png │ │ │ │ ├── ec.png │ │ │ │ ├── ee.png │ │ │ │ ├── eg.png │ │ │ │ ├── er.png │ │ │ │ ├── es.png │ │ │ │ ├── et.png │ │ │ │ ├── fi.png │ │ │ │ ├── fj.png │ │ │ │ ├── fo.png │ │ │ │ ├── fr.png │ │ │ │ ├── ga.png │ │ │ │ ├── gb.png │ │ │ │ ├── ge.png │ │ │ │ ├── gi.png │ │ │ │ ├── gl.png │ │ │ │ ├── gp.png │ │ │ │ ├── gr.png │ │ │ │ ├── gt.png │ │ │ │ ├── gu.png │ │ │ │ ├── gy.png │ │ │ │ ├── hk.png │ │ │ │ ├── hr.png │ │ │ │ ├── ht.png │ │ │ │ ├── hu.png │ │ │ │ ├── id.png │ │ │ │ ├── ie.png │ │ │ │ ├── il.png │ │ │ │ ├── in.png │ │ │ │ ├── iq.png │ │ │ │ ├── ir.png │ │ │ │ ├── is.png │ │ │ │ ├── it.png │ │ │ │ ├── jm.png │ │ │ │ ├── jo.png │ │ │ │ ├── jp.png │ │ │ │ ├── ke.png │ │ │ │ ├── kg.png │ │ │ │ ├── kh.png │ │ │ │ ├── ki.png │ │ │ │ ├── kp.png │ │ │ │ ├── kr.png │ │ │ │ ├── ky.png │ │ │ │ ├── kz.png │ │ │ │ ├── lb.png │ │ │ │ ├── lc.png │ │ │ │ ├── lk.png │ │ │ │ ├── lt.png │ │ │ │ ├── lu.png │ │ │ │ ├── lv.png │ │ │ │ ├── ly.png │ │ │ │ ├── ma.png │ │ │ │ ├── mc.png │ │ │ │ ├── md.png │ │ │ │ ├── mg.png │ │ │ │ ├── mn.png │ │ │ │ ├── mo.png │ │ │ │ ├── mp.png │ │ │ │ ├── ms.png │ │ │ │ ├── mt.png │ │ │ │ ├── mx.png │ │ │ │ ├── my.png │ │ │ │ ├── mz.png │ │ │ │ ├── na.png │ │ │ │ ├── nc.png │ │ │ │ ├── nf.png │ │ │ │ ├── nl.png │ │ │ │ ├── no.png │ │ │ │ ├── np.png │ │ │ │ ├── nr.png │ │ │ │ ├── nz.png │ │ │ │ ├── om.png │ │ │ │ ├── pa.png │ │ │ │ ├── pe.png │ │ │ │ ├── pf.png │ │ │ │ ├── ph.png │ │ │ │ ├── pk.png │ │ │ │ ├── pl.png │ │ │ │ ├── pm.png │ │ │ │ ├── pr.png │ │ │ │ ├── pt.png │ │ │ │ ├── py.png │ │ │ │ ├── qa.png │ │ │ │ ├── ro.png │ │ │ │ ├── ru.png │ │ │ │ ├── sa.png │ │ │ │ ├── sb.png │ │ │ │ ├── sd.png │ │ │ │ ├── se.png │ │ │ │ ├── sg.png │ │ │ │ ├── si.png │ │ │ │ ├── sk.png │ │ │ │ ├── sl.png │ │ │ │ ├── so.png │ │ │ │ ├── sr.png │ │ │ │ ├── sy.png │ │ │ │ ├── tc.png │ │ │ │ ├── tg.png │ │ │ │ ├── th.png │ │ │ │ ├── tn.png │ │ │ │ ├── to.png │ │ │ │ ├── tp.png │ │ │ │ ├── tr.png │ │ │ │ ├── tt.png │ │ │ │ ├── tv.png │ │ │ │ ├── tw.png │ │ │ │ ├── tz.png │ │ │ │ ├── ua.png │ │ │ │ ├── ug.png │ │ │ │ ├── us.png │ │ │ │ ├── uy.png │ │ │ │ ├── va.png │ │ │ │ ├── ve.png │ │ │ │ ├── vg.png │ │ │ │ ├── vi.png │ │ │ │ ├── vn.png │ │ │ │ ├── ws.png │ │ │ │ ├── ye.png │ │ │ │ ├── yu.png │ │ │ │ ├── za.png │ │ │ │ └── zw.png │ │ │ ├── default │ │ │ │ ├── add.png │ │ │ │ ├── address-book.png │ │ │ │ ├── bug-big.png │ │ │ │ ├── bug.png │ │ │ │ ├── calendar.png │ │ │ │ ├── catalog.png │ │ │ │ ├── children.png │ │ │ │ ├── compare.png │ │ │ │ ├── country.png │ │ │ │ ├── create.png │ │ │ │ ├── cut.png │ │ │ │ ├── debug-cache.png │ │ │ │ ├── device.png │ │ │ │ ├── disabled.png │ │ │ │ ├── document.png │ │ │ │ ├── door.png │ │ │ │ ├── error-big.png │ │ │ │ ├── error.png │ │ │ │ ├── export-big.png │ │ │ │ ├── export.png │ │ │ │ ├── files.png │ │ │ │ ├── find.png │ │ │ │ ├── folder.png │ │ │ │ ├── forum-big.png │ │ │ │ ├── hard-drive.png │ │ │ │ ├── help-big.png │ │ │ │ ├── help.png │ │ │ │ ├── home-big.png │ │ │ │ ├── home.png │ │ │ │ ├── host.png │ │ │ │ ├── import-big.png │ │ │ │ ├── index.php │ │ │ │ ├── info-big.png │ │ │ │ ├── info.png │ │ │ │ ├── invalid.png │ │ │ │ ├── key.png │ │ │ │ ├── ldap-alias.png │ │ │ │ ├── ldap-dc.png │ │ │ │ ├── ldap-default.png │ │ │ │ ├── ldap-o.png │ │ │ │ ├── ldap-ou.png │ │ │ │ ├── ldap-server.png │ │ │ │ ├── ldap-uid.png │ │ │ │ ├── ldap-uniquegroup.png │ │ │ │ ├── ldap-user.png │ │ │ │ ├── light-big.png │ │ │ │ ├── light.png │ │ │ │ ├── locality.png │ │ │ │ ├── lock.png │ │ │ │ ├── login.png │ │ │ │ ├── logo-small.png │ │ │ │ ├── logo.png │ │ │ │ ├── logout-big.png │ │ │ │ ├── mail.png │ │ │ │ ├── mail_account.png │ │ │ │ ├── mail_alias.png │ │ │ │ ├── minus.png │ │ │ │ ├── monitorserver-big.png │ │ │ │ ├── move.png │ │ │ │ ├── n.png │ │ │ │ ├── network.png │ │ │ │ ├── nogo.png │ │ │ │ ├── nt_machine.png │ │ │ │ ├── nt_user.png │ │ │ │ ├── paypal-donate.png │ │ │ │ ├── phone.png │ │ │ │ ├── photo.png │ │ │ │ ├── plus.png │ │ │ │ ├── process.png │ │ │ │ ├── refresh-big.png │ │ │ │ ├── refresh.png │ │ │ │ ├── rename.png │ │ │ │ ├── request-feature-big.png │ │ │ │ ├── rfc.png │ │ │ │ ├── save.png │ │ │ │ ├── schema-big.png │ │ │ │ ├── search-big.png │ │ │ │ ├── server-settings.png │ │ │ │ ├── server-small.png │ │ │ │ ├── server.png │ │ │ │ ├── smile-big.png │ │ │ │ ├── smile.png │ │ │ │ ├── switch.png │ │ │ │ ├── terminal.png │ │ │ │ ├── timeout.png │ │ │ │ ├── tools-no.png │ │ │ │ ├── tools.png │ │ │ │ ├── trash-big.png │ │ │ │ ├── trash.png │ │ │ │ ├── tree_collapse.png │ │ │ │ ├── tree_collapse_corner.png │ │ │ │ ├── tree_collapse_corner_first.png │ │ │ │ ├── tree_collapse_first.png │ │ │ │ ├── tree_corner.png │ │ │ │ ├── tree_expand.png │ │ │ │ ├── tree_expand_corner.png │ │ │ │ ├── tree_expand_corner_first.png │ │ │ │ ├── tree_expand_first.png │ │ │ │ ├── tree_folder_closed.png │ │ │ │ ├── tree_folder_open.png │ │ │ │ ├── tree_leaf.png │ │ │ │ ├── tree_space.png │ │ │ │ ├── tree_split.png │ │ │ │ ├── tree_split_first.png │ │ │ │ ├── tree_vertline.png │ │ │ │ ├── unknown.png │ │ │ │ ├── up.png │ │ │ │ └── warn-big.png │ │ │ ├── favicon.ico │ │ │ └── tango │ │ │ │ ├── INFO │ │ │ │ ├── add-big.png │ │ │ │ ├── add.png │ │ │ │ ├── address-book.png │ │ │ │ ├── bug-big.png │ │ │ │ ├── bug.png │ │ │ │ ├── children-big.png │ │ │ │ ├── children.png │ │ │ │ ├── compare-big.png │ │ │ │ ├── compare.png │ │ │ │ ├── create-big.png │ │ │ │ ├── create.png │ │ │ │ ├── cut-big.png │ │ │ │ ├── cut.png │ │ │ │ ├── disabled-big.png │ │ │ │ ├── disabled.png │ │ │ │ ├── error-big.png │ │ │ │ ├── error.png │ │ │ │ ├── export-big.png │ │ │ │ ├── export.png │ │ │ │ ├── forum-big.png │ │ │ │ ├── forum.png │ │ │ │ ├── help-big.png │ │ │ │ ├── help.png │ │ │ │ ├── import-big.png │ │ │ │ ├── import.png │ │ │ │ ├── index.php │ │ │ │ ├── info-big.png │ │ │ │ ├── info.png │ │ │ │ ├── key.png │ │ │ │ ├── ldap-alias-big.png │ │ │ │ ├── ldap-alias.png │ │ │ │ ├── ldap-dc.png │ │ │ │ ├── ldap-default.png │ │ │ │ ├── ldap-o.png │ │ │ │ ├── ldap-ou.png │ │ │ │ ├── ldap-uid.png │ │ │ │ ├── ldap-uniquegroup.png │ │ │ │ ├── ldap-user.png │ │ │ │ ├── light-big.png │ │ │ │ ├── light.png │ │ │ │ ├── login-big.png │ │ │ │ ├── login.png │ │ │ │ ├── logo-small.png │ │ │ │ ├── logo.png │ │ │ │ ├── logout-big.png │ │ │ │ ├── logout.png │ │ │ │ ├── mail-big.png │ │ │ │ ├── mail.png │ │ │ │ ├── minus.png │ │ │ │ ├── monitorserver-big.png │ │ │ │ ├── monitorserver.png │ │ │ │ ├── plus.png │ │ │ │ ├── refresh-big.png │ │ │ │ ├── refresh.png │ │ │ │ ├── remove-big.png │ │ │ │ ├── remove.png │ │ │ │ ├── rename-big.png │ │ │ │ ├── rename.png │ │ │ │ ├── request-feature-big.png │ │ │ │ ├── request-feature.png │ │ │ │ ├── save-big.png │ │ │ │ ├── save.png │ │ │ │ ├── schema-big.png │ │ │ │ ├── schema.png │ │ │ │ ├── search-big.png │ │ │ │ ├── search.png │ │ │ │ ├── server-big.png │ │ │ │ ├── server.png │ │ │ │ ├── smile-big.png │ │ │ │ ├── smile.png │ │ │ │ ├── switch-big.png │ │ │ │ ├── switch.png │ │ │ │ ├── timeout-big.png │ │ │ │ ├── timeout.png │ │ │ │ ├── tools-big.png │ │ │ │ ├── tools.png │ │ │ │ ├── trash-big.png │ │ │ │ ├── trash.png │ │ │ │ ├── tree_collapse.png │ │ │ │ ├── tree_collapse_corner.png │ │ │ │ ├── tree_collapse_corner_first.png │ │ │ │ ├── tree_collapse_first.png │ │ │ │ ├── tree_corner.png │ │ │ │ ├── tree_expand.png │ │ │ │ ├── tree_expand_corner.png │ │ │ │ ├── tree_expand_corner_first.png │ │ │ │ ├── tree_expand_first.png │ │ │ │ ├── tree_folder_closed.png │ │ │ │ ├── tree_folder_open.png │ │ │ │ ├── tree_leaf.png │ │ │ │ ├── tree_space.png │ │ │ │ ├── tree_split.png │ │ │ │ ├── tree_split_first.png │ │ │ │ ├── tree_vertline.png │ │ │ │ ├── warn-big.png │ │ │ │ └── warn.png │ │ ├── import.php │ │ ├── import_form.php │ │ ├── index.php │ │ ├── js │ │ │ ├── CheckAll.js │ │ │ ├── TemplateRender.js │ │ │ ├── ajax_functions.js │ │ │ ├── ajax_tree.js │ │ │ ├── date_selector.js │ │ │ ├── dnChooserPopup.js │ │ │ ├── form_field_toggle_enable.js │ │ │ ├── jscalendar │ │ │ │ ├── README │ │ │ │ ├── calendar-blue.css │ │ │ │ ├── calendar-setup.js │ │ │ │ ├── calendar.js │ │ │ │ ├── lang │ │ │ │ │ ├── calendar-af.js │ │ │ │ │ ├── calendar-al.js │ │ │ │ │ ├── calendar-bg.js │ │ │ │ │ ├── calendar-big5-utf8.js │ │ │ │ │ ├── calendar-big5.js │ │ │ │ │ ├── calendar-br.js │ │ │ │ │ ├── calendar-ca.js │ │ │ │ │ ├── calendar-cs-utf8.js │ │ │ │ │ ├── calendar-cs-win.js │ │ │ │ │ ├── calendar-da.js │ │ │ │ │ ├── calendar-de.js │ │ │ │ │ ├── calendar-du.js │ │ │ │ │ ├── calendar-el.js │ │ │ │ │ ├── calendar-en.js │ │ │ │ │ ├── calendar-es.js │ │ │ │ │ ├── calendar-fi.js │ │ │ │ │ ├── calendar-fr.js │ │ │ │ │ ├── calendar-he-utf8.js │ │ │ │ │ ├── calendar-hr-utf8.js │ │ │ │ │ ├── calendar-hr.js │ │ │ │ │ ├── calendar-hu.js │ │ │ │ │ ├── calendar-it.js │ │ │ │ │ ├── calendar-jp.js │ │ │ │ │ ├── calendar-ko-utf8.js │ │ │ │ │ ├── calendar-ko.js │ │ │ │ │ ├── calendar-lt-utf8.js │ │ │ │ │ ├── calendar-lt.js │ │ │ │ │ ├── calendar-lv.js │ │ │ │ │ ├── calendar-nl.js │ │ │ │ │ ├── calendar-no.js │ │ │ │ │ ├── calendar-pl-utf8.js │ │ │ │ │ ├── calendar-pl.js │ │ │ │ │ ├── calendar-pt.js │ │ │ │ │ ├── calendar-ro.js │ │ │ │ │ ├── calendar-ru.js │ │ │ │ │ ├── calendar-ru_win_.js │ │ │ │ │ ├── calendar-si.js │ │ │ │ │ ├── calendar-sk.js │ │ │ │ │ ├── calendar-sp.js │ │ │ │ │ ├── calendar-sv.js │ │ │ │ │ ├── calendar-tr.js │ │ │ │ │ ├── calendar-zh.js │ │ │ │ │ └── cn_utf8.js │ │ │ │ ├── menuarrow.gif │ │ │ │ └── skins │ │ │ │ │ └── aqua │ │ │ │ │ ├── active-bg.gif │ │ │ │ │ ├── dark-bg.gif │ │ │ │ │ ├── hover-bg.gif │ │ │ │ │ ├── menuarrow.gif │ │ │ │ │ ├── normal-bg.gif │ │ │ │ │ ├── rowhover-bg.gif │ │ │ │ │ ├── status-bg.gif │ │ │ │ │ ├── theme.css │ │ │ │ │ ├── title-bg.gif │ │ │ │ │ └── today-bg.gif │ │ │ ├── layersmenu-browser_detection.js │ │ │ ├── modify_member.js │ │ │ └── toAscii.js │ │ ├── login.php │ │ ├── login_form.php │ │ ├── logout.php │ │ ├── mass_delete.php │ │ ├── mass_edit.php │ │ ├── mass_update.php │ │ ├── modify_member_form.php │ │ ├── monitor.php │ │ ├── password_checker.php │ │ ├── purge_cache.php │ │ ├── query_engine.php │ │ ├── rdelete.php │ │ ├── refresh.php │ │ ├── rename.php │ │ ├── rename_form.php │ │ ├── schema.php │ │ ├── server_info.php │ │ ├── show_cache.php │ │ ├── template_engine.php │ │ ├── update.php │ │ ├── update_confirm.php │ │ ├── view_jpeg_photo.php │ │ └── welcome.php │ ├── index.php │ ├── lib │ │ ├── AJAXTree.php │ │ ├── Attribute.php │ │ ├── AttributeFactory.php │ │ ├── BinaryAttribute.php │ │ ├── DateAttribute.php │ │ ├── DnAttribute.php │ │ ├── GidAttribute.php │ │ ├── HTMLTree.php │ │ ├── JpegAttribute.php │ │ ├── MassRender.php │ │ ├── MultiLineAttribute.php │ │ ├── ObjectClassAttribute.php │ │ ├── PageRender.php │ │ ├── PasswordAttribute.php │ │ ├── Query.php │ │ ├── QueryRender.php │ │ ├── RandomPasswordAttribute.php │ │ ├── SambaPasswordAttribute.php │ │ ├── SelectionAttribute.php │ │ ├── ShadowAttribute.php │ │ ├── Template.php │ │ ├── TemplateRender.php │ │ ├── Tree.php │ │ ├── TreeItem.php │ │ ├── Visitor.php │ │ ├── blowfish.php │ │ ├── common.php │ │ ├── config_default.php │ │ ├── createlm.php │ │ ├── ds.php │ │ ├── ds_ldap.php │ │ ├── ds_ldap_pla.php │ │ ├── emuhash_functions.php │ │ ├── export_functions.php │ │ ├── functions.php │ │ ├── hooks.php │ │ ├── import_functions.php │ │ ├── ldap_error_codes.txt │ │ ├── ldap_supported_oids.txt │ │ ├── page.php │ │ ├── query_functions.php │ │ ├── schema_functions.php │ │ ├── session_functions.php │ │ ├── syslog.php │ │ ├── template_functions.php │ │ ├── xml2array.php │ │ └── xmlTemplates.php │ ├── locale │ │ ├── ca_ES │ │ │ └── LC_MESSAGES │ │ │ │ └── messages.mo │ │ ├── cs_CZ │ │ │ └── LC_MESSAGES │ │ │ │ └── messages.mo │ │ ├── da_DK │ │ │ └── LC_MESSAGES │ │ │ │ └── messages.mo │ │ ├── de_DE │ │ │ └── LC_MESSAGES │ │ │ │ └── messages.mo │ │ ├── es_ES │ │ │ └── LC_MESSAGES │ │ │ │ └── messages.mo │ │ ├── fi_FI │ │ │ └── LC_MESSAGES │ │ │ │ └── messages.mo │ │ ├── fr_FR │ │ │ └── LC_MESSAGES │ │ │ │ └── messages.mo │ │ ├── gn_PY │ │ │ └── LC_MESSAGES │ │ │ │ └── messages.mo │ │ ├── hu_HU │ │ │ └── LC_MESSAGES │ │ │ │ └── messages.mo │ │ ├── it_IT │ │ │ └── LC_MESSAGES │ │ │ │ └── messages.mo │ │ ├── ja_JP │ │ │ └── LC_MESSAGES │ │ │ │ └── messages.mo │ │ ├── nb_NO │ │ │ └── LC_MESSAGES │ │ │ │ └── messages.mo │ │ ├── nl_BE │ │ │ └── LC_MESSAGES │ │ │ │ └── messages.mo │ │ ├── oc_FR │ │ │ └── LC_MESSAGES │ │ │ │ └── messages.mo │ │ ├── pl_PL │ │ │ └── LC_MESSAGES │ │ │ │ └── messages.mo │ │ ├── pt_BR │ │ │ └── LC_MESSAGES │ │ │ │ └── messages.mo │ │ ├── ru_RU │ │ │ └── LC_MESSAGES │ │ │ │ └── messages.mo │ │ ├── sk_SK │ │ │ └── LC_MESSAGES │ │ │ │ └── messages.mo │ │ ├── sv_FI │ │ │ └── LC_MESSAGES │ │ │ │ └── messages.mo │ │ ├── tr_TR │ │ │ └── LC_MESSAGES │ │ │ │ └── messages.mo │ │ ├── uk_UA │ │ │ └── LC_MESSAGES │ │ │ │ └── messages.mo │ │ ├── zh_CN │ │ │ └── LC_MESSAGES │ │ │ │ └── messages.mo │ │ └── zh_TW │ │ │ └── LC_MESSAGES │ │ │ └── messages.mo │ ├── queries │ │ ├── SambaUsers.xml │ │ ├── UserList.xml │ │ └── query.dtd │ ├── templates │ │ ├── creation │ │ │ ├── alias.xml │ │ │ ├── courierMailAccount.xml │ │ │ ├── courierMailAlias.xml │ │ │ ├── dNSDomain.xml │ │ │ ├── example.xml │ │ │ ├── inetOrgPerson.xml │ │ │ ├── kolabPerson.xml │ │ │ ├── mozillaOrgPerson.xml │ │ │ ├── organizationalRole.xml │ │ │ ├── ou.xml │ │ │ ├── posixAccount.xml │ │ │ ├── posixGroup.xml │ │ │ ├── sambaDomain.xml │ │ │ ├── sambaGroupMapping.xml │ │ │ ├── sambaMachine.xml │ │ │ ├── sambaSamAccount.xml │ │ │ ├── sendmailMTAAliasObject.xml │ │ │ ├── sendmailMTAClass.xml │ │ │ ├── sendmailMTACluster.xml │ │ │ ├── sendmailMTAMapObject.xml │ │ │ ├── sendmailVirtualDomain.xml │ │ │ ├── sendmailVirtualUser.xml │ │ │ └── simpleSecurityObject.xml │ │ ├── modification │ │ │ ├── inetOrgPerson.xml │ │ │ └── posixGroup.xml │ │ └── template.dtd │ └── tools │ │ ├── po │ │ ├── Makefile │ │ └── messages.header │ │ └── unserialize.php ├── reset_geonames.php ├── reset_geonames.sh ├── reset_geonames_country_info.php ├── reset_geonames_country_info.sh ├── sqlite.db ├── sqlite_geonames.php ├── sqlite_geonames_country_info.php ├── sqlite_geonames_create.sql └── sqlite_users_create.sql ├── src ├── Chat │ ├── Generic │ │ └── Constants.php │ ├── Handler │ │ ├── DeleteHandler.php │ │ ├── GetAllNamesHandler.php │ │ ├── GetHandler.php │ │ ├── NextHandler.php │ │ └── PostHandler.php │ ├── Http │ │ ├── Client.php │ │ └── SwooleToPsr7.php │ ├── Message │ │ ├── Api.php │ │ ├── Pipe.php │ │ └── Render.php │ ├── Middleware │ │ ├── Access.php │ │ ├── Validate.php │ │ └── ValidatePost.php │ └── Service │ │ ├── Base.php │ │ ├── Connection.php │ │ ├── Message.php │ │ └── User.php ├── Http │ ├── Client │ │ ├── CurlStrategy.php │ │ ├── SocketStrategy.php │ │ ├── StrategyInterface.php │ │ └── StreamsStrategy.php │ └── Request.php ├── Migration │ ├── Base.php │ └── OopBreakScan.php ├── Php7 │ ├── Connector │ │ ├── Base.php │ │ ├── ConnectInterface.php │ │ ├── ConnectMysqli.php │ │ └── ConnectPdo.php │ ├── Container │ │ ├── ResponseStrategy.php │ │ └── UsesSplObjectStorage.php │ ├── Encrypt │ │ ├── Cipher.php │ │ └── OpenCipher.php │ ├── Entity │ │ └── Events.php │ ├── Exits │ │ ├── ConstExcept.php │ │ └── ExitsEarly.php │ ├── Http │ │ ├── Response.php │ │ ├── StatusCodes.php │ │ └── TestData.php │ ├── Image │ │ ├── FgBgTrait.php │ │ ├── SingleChar.php │ │ └── Strategy │ │ │ ├── DotFill.php │ │ │ ├── LineFill.php │ │ │ ├── PlainFill.php │ │ │ ├── PlainText.php │ │ │ ├── RotateText.php │ │ │ └── Shadow.php │ ├── Reflection │ │ └── Test.php │ ├── Sql │ │ ├── Select.php │ │ └── Where.php │ └── Word │ │ └── Captcha.php ├── Php8 │ ├── Container │ │ └── UsesWeakMap.php │ ├── Exits │ │ ├── ConstExcept.php │ │ └── ExitsEarly.php │ ├── Image │ │ ├── SingleChar.php │ │ └── Strategy │ │ │ ├── DotFill.php │ │ │ ├── LineFill.php │ │ │ ├── PlainFill.php │ │ │ ├── PlainText.php │ │ │ ├── RotateText.php │ │ │ └── Shadow.php │ ├── Jit │ │ └── Mandelbrot.php │ ├── Migration │ │ └── BreakScan.php │ ├── Sort │ │ └── Access.php │ └── Sql │ │ ├── Select.php │ │ └── Where.php ├── Response │ ├── Base.php │ ├── HtmlStrategy.php │ ├── JsonStrategy.php │ ├── ResponseInterface.php │ ├── TextStrategy.php │ └── XmlStrategy.php ├── Server │ ├── Autoload │ │ └── Loader.php │ └── Display │ │ └── Execute.php ├── Services │ ├── BillionaireTracker.php │ ├── CountryInfo.php │ ├── DocBlockChecker.php │ ├── HashGen.php │ ├── SampleAccess.php │ └── SortTest.php └── config │ └── config.php └── test ├── Php8Test └── Migration │ └── BreakScanTest.php ├── README.md ├── autoload.php ├── phpunit5 ├── composer.json ├── composer.lock └── phpunit.xml └── phpunit9 ├── .gitignore ├── .phpunit.result.cache ├── composer.json ├── composer.lock └── phpunit.xml /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/README.md -------------------------------------------------------------------------------- /access.log: -------------------------------------------------------------------------------- 1 | array ( 2 | ) 3 | -------------------------------------------------------------------------------- /admin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/admin.sh -------------------------------------------------------------------------------- /app_a/php7_parse_str_bad.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/app_a/php7_parse_str_bad.php -------------------------------------------------------------------------------- /app_a/php7_parse_url_empty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/app_a/php7_parse_url_empty.php -------------------------------------------------------------------------------- /app_a/php8_parse_url_parse_str.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/app_a/php8_parse_url_parse_str.php -------------------------------------------------------------------------------- /ch01/captcha_simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch01/captcha_simple.html -------------------------------------------------------------------------------- /ch01/captcha_simple.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch01/captcha_simple.phtml -------------------------------------------------------------------------------- /ch01/php7_attrib_reflect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch01/php7_attrib_reflect.php -------------------------------------------------------------------------------- /ch01/php7_prop_danger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch01/php7_prop_danger.php -------------------------------------------------------------------------------- /ch01/php7_prop_reduce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch01/php7_prop_reduce.php -------------------------------------------------------------------------------- /ch01/php7_single_char.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch01/php7_single_char.php -------------------------------------------------------------------------------- /ch01/php7_single_strategies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch01/php7_single_strategies.php -------------------------------------------------------------------------------- /ch01/php7_switch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch01/php7_switch.php -------------------------------------------------------------------------------- /ch01/php8_attrib_reflect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch01/php8_attrib_reflect.php -------------------------------------------------------------------------------- /ch01/php8_mixed_type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch01/php8_mixed_type.php -------------------------------------------------------------------------------- /ch01/php8_named_args.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch01/php8_named_args.php -------------------------------------------------------------------------------- /ch01/php8_prop_danger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch01/php8_prop_danger.php -------------------------------------------------------------------------------- /ch01/php8_prop_promo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch01/php8_prop_promo.php -------------------------------------------------------------------------------- /ch01/php8_prop_reduce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch01/php8_prop_reduce.php -------------------------------------------------------------------------------- /ch01/php8_prop_type_1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch01/php8_prop_type_1.php -------------------------------------------------------------------------------- /ch01/php8_property_type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch01/php8_property_type.php -------------------------------------------------------------------------------- /ch01/php8_single_char.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch01/php8_single_char.php -------------------------------------------------------------------------------- /ch01/php8_single_strategies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch01/php8_single_strategies.php -------------------------------------------------------------------------------- /ch01/php8_switch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch01/php8_switch.php -------------------------------------------------------------------------------- /ch01/php_prop_promo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch01/php_prop_promo.php -------------------------------------------------------------------------------- /ch02/includes/auth_callback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch02/includes/auth_callback.php -------------------------------------------------------------------------------- /ch02/includes/nullsafe_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch02/includes/nullsafe_config.php -------------------------------------------------------------------------------- /ch02/includes/nullsafe_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch02/includes/nullsafe_data.csv -------------------------------------------------------------------------------- /ch02/includes/nullsafe_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch02/includes/nullsafe_data.json -------------------------------------------------------------------------------- /ch02/includes/nullsafe_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch02/includes/nullsafe_data.txt -------------------------------------------------------------------------------- /ch02/includes/php7_sql_lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch02/includes/php7_sql_lib.php -------------------------------------------------------------------------------- /ch02/includes/php8_sql_lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch02/includes/php8_sql_lib.php -------------------------------------------------------------------------------- /ch02/includes/produce.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch02/includes/produce.xml -------------------------------------------------------------------------------- /ch02/includes/variadic_vacuum.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch02/includes/variadic_vacuum.phtml -------------------------------------------------------------------------------- /ch02/php7_arbitrary_exp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch02/php7_arbitrary_exp.php -------------------------------------------------------------------------------- /ch02/php7_array_slice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch02/php7_array_slice.php -------------------------------------------------------------------------------- /ch02/php7_array_splice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch02/php7_array_splice.php -------------------------------------------------------------------------------- /ch02/php7_custom_response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch02/php7_custom_response.php -------------------------------------------------------------------------------- /ch02/php7_dereference_1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch02/php7_dereference_1.php -------------------------------------------------------------------------------- /ch02/php7_dereference_2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch02/php7_dereference_2.php -------------------------------------------------------------------------------- /ch02/php7_dereference_3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch02/php7_dereference_3.php -------------------------------------------------------------------------------- /ch02/php7_dereference_4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch02/php7_dereference_4.php -------------------------------------------------------------------------------- /ch02/php7_nested_ternary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch02/php7_nested_ternary.php -------------------------------------------------------------------------------- /ch02/php7_nullsafe_short.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch02/php7_nullsafe_short.php -------------------------------------------------------------------------------- /ch02/php7_nullsafe_xml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch02/php7_nullsafe_xml.php -------------------------------------------------------------------------------- /ch02/php7_ops_concat_1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch02/php7_ops_concat_1.php -------------------------------------------------------------------------------- /ch02/php7_ops_variadic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch02/php7_ops_variadic.php -------------------------------------------------------------------------------- /ch02/php7_starts_ends_with.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch02/php7_starts_ends_with.php -------------------------------------------------------------------------------- /ch02/php7_str_contains.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch02/php7_str_contains.php -------------------------------------------------------------------------------- /ch02/php7_variadic_inherit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch02/php7_variadic_inherit.php -------------------------------------------------------------------------------- /ch02/php7_variadic_params.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch02/php7_variadic_params.php -------------------------------------------------------------------------------- /ch02/php7_variadic_vacuum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch02/php7_variadic_vacuum.php -------------------------------------------------------------------------------- /ch02/php7_variadics_problem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch02/php7_variadics_problem.php -------------------------------------------------------------------------------- /ch02/php7_variadics_sql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch02/php7_variadics_sql.php -------------------------------------------------------------------------------- /ch02/php8_arbitrary_exp_new.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch02/php8_arbitrary_exp_new.php -------------------------------------------------------------------------------- /ch02/php8_array_slice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch02/php8_array_slice.php -------------------------------------------------------------------------------- /ch02/php8_array_splice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch02/php8_array_splice.php -------------------------------------------------------------------------------- /ch02/php8_arrow_func_1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch02/php8_arrow_func_1.php -------------------------------------------------------------------------------- /ch02/php8_arrow_func_2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch02/php8_arrow_func_2.php -------------------------------------------------------------------------------- /ch02/php8_arrow_func_3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch02/php8_arrow_func_3.php -------------------------------------------------------------------------------- /ch02/php8_dereference_1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch02/php8_dereference_1.php -------------------------------------------------------------------------------- /ch02/php8_dereference_2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch02/php8_dereference_2.php -------------------------------------------------------------------------------- /ch02/php8_dereference_3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch02/php8_dereference_3.php -------------------------------------------------------------------------------- /ch02/php8_dereference_4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch02/php8_dereference_4.php -------------------------------------------------------------------------------- /ch02/php8_nested_ternary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch02/php8_nested_ternary.php -------------------------------------------------------------------------------- /ch02/php8_nullsafe_short.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch02/php8_nullsafe_short.php -------------------------------------------------------------------------------- /ch02/php8_nullsafe_xml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch02/php8_nullsafe_xml.php -------------------------------------------------------------------------------- /ch02/php8_ops_concat_1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch02/php8_ops_concat_1.php -------------------------------------------------------------------------------- /ch02/php8_ops_variadic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch02/php8_ops_variadic.php -------------------------------------------------------------------------------- /ch02/php8_sqlite_auth_admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch02/php8_sqlite_auth_admin.php -------------------------------------------------------------------------------- /ch02/php8_sqlite_auth_callback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch02/php8_sqlite_auth_callback.php -------------------------------------------------------------------------------- /ch02/php8_sqlite_query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch02/php8_sqlite_query.php -------------------------------------------------------------------------------- /ch02/php8_starts_ends_with.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch02/php8_starts_ends_with.php -------------------------------------------------------------------------------- /ch02/php8_str_contains.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch02/php8_str_contains.php -------------------------------------------------------------------------------- /ch02/php8_variadic_inherit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch02/php8_variadic_inherit.php -------------------------------------------------------------------------------- /ch02/php8_variadics_no_problem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch02/php8_variadics_no_problem.php -------------------------------------------------------------------------------- /ch02/php8_variadics_sql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch02/php8_variadics_sql.php -------------------------------------------------------------------------------- /ch03/includes/causes_parse_error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch03/includes/causes_parse_error.php -------------------------------------------------------------------------------- /ch03/php7_array_unpack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch03/php7_array_unpack.php -------------------------------------------------------------------------------- /ch03/php7_undef_const.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch03/php7_undef_const.php -------------------------------------------------------------------------------- /ch03/php7_undef_var.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch03/php7_undef_var.php -------------------------------------------------------------------------------- /ch03/php7_warn_array.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch03/php7_warn_array.php -------------------------------------------------------------------------------- /ch03/php7_warn_array_foreach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch03/php7_warn_array_foreach.php -------------------------------------------------------------------------------- /ch03/php7_warn_array_occupied.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch03/php7_warn_array_occupied.php -------------------------------------------------------------------------------- /ch03/php7_warn_array_unpack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch03/php7_warn_array_unpack.php -------------------------------------------------------------------------------- /ch03/php7_warn_array_unset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch03/php7_warn_array_unset.php -------------------------------------------------------------------------------- /ch03/php7_warn_prop_nobj.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch03/php7_warn_prop_nobj.php -------------------------------------------------------------------------------- /ch03/php8_array_unpack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch03/php8_array_unpack.php -------------------------------------------------------------------------------- /ch03/php8_at_silencer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch03/php8_at_silencer.php -------------------------------------------------------------------------------- /ch03/php8_at_silencer_err_rep.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch03/php8_at_silencer_err_rep.php -------------------------------------------------------------------------------- /ch03/php8_error_str_empty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch03/php8_error_str_empty.php -------------------------------------------------------------------------------- /ch03/php8_error_str_pos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch03/php8_error_str_pos.php -------------------------------------------------------------------------------- /ch03/php8_string_access_using_array_syntax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch03/php8_string_access_using_array_syntax.php -------------------------------------------------------------------------------- /ch03/php8_undef_const.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch03/php8_undef_const.php -------------------------------------------------------------------------------- /ch03/php8_undef_var.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch03/php8_undef_var.php -------------------------------------------------------------------------------- /ch03/php8_warn_amb_offset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch03/php8_warn_amb_offset.php -------------------------------------------------------------------------------- /ch03/php8_warn_array.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch03/php8_warn_array.php -------------------------------------------------------------------------------- /ch03/php8_warn_array_empty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch03/php8_warn_array_empty.php -------------------------------------------------------------------------------- /ch03/php8_warn_array_foreach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch03/php8_warn_array_foreach.php -------------------------------------------------------------------------------- /ch03/php8_warn_array_isset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch03/php8_warn_array_isset.php -------------------------------------------------------------------------------- /ch03/php8_warn_array_occupied.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch03/php8_warn_array_occupied.php -------------------------------------------------------------------------------- /ch03/php8_warn_array_offset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch03/php8_warn_array_offset.php -------------------------------------------------------------------------------- /ch03/php8_warn_array_str_conv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch03/php8_warn_array_str_conv.php -------------------------------------------------------------------------------- /ch03/php8_warn_array_unpack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch03/php8_warn_array_unpack.php -------------------------------------------------------------------------------- /ch03/php8_warn_array_unset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch03/php8_warn_array_unset.php -------------------------------------------------------------------------------- /ch03/php8_warn_prop_nobj.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch03/php8_warn_prop_nobj.php -------------------------------------------------------------------------------- /ch03/php8_warn_resource_offset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch03/php8_warn_resource_offset.php -------------------------------------------------------------------------------- /ch03/php8_warn_str_deref_bad_off.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch03/php8_warn_str_deref_bad_off.php -------------------------------------------------------------------------------- /ch03/php8_warn_string.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch03/php8_warn_string.php -------------------------------------------------------------------------------- /ch03/php8_warn_un_init_offset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch03/php8_warn_un_init_offset.php -------------------------------------------------------------------------------- /ch03/php8_warn_undef_array_key.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch03/php8_warn_undef_array_key.php -------------------------------------------------------------------------------- /ch03/php8_warn_undef_prop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch03/php8_warn_undef_prop.php -------------------------------------------------------------------------------- /ch04/bubble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch04/bubble.c -------------------------------------------------------------------------------- /ch04/bubble.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch04/bubble.o -------------------------------------------------------------------------------- /ch04/libbubble.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch04/libbubble.so -------------------------------------------------------------------------------- /ch04/libsort.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch04/libsort.so -------------------------------------------------------------------------------- /ch04/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch04/main.c -------------------------------------------------------------------------------- /ch04/php8_ffi_addr_free_memset_memcpy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch04/php8_ffi_addr_free_memset_memcpy.php -------------------------------------------------------------------------------- /ch04/php8_ffi_alignof_sizeof.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch04/php8_ffi_alignof_sizeof.php -------------------------------------------------------------------------------- /ch04/php8_ffi_array.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch04/php8_ffi_array.php -------------------------------------------------------------------------------- /ch04/php8_ffi_cast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch04/php8_ffi_cast.php -------------------------------------------------------------------------------- /ch04/php8_ffi_cdef.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch04/php8_ffi_cdef.php -------------------------------------------------------------------------------- /ch04/php8_ffi_memcmp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch04/php8_ffi_memcmp.php -------------------------------------------------------------------------------- /ch04/php8_ffi_php_callbacks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch04/php8_ffi_php_callbacks.php -------------------------------------------------------------------------------- /ch04/php8_ffi_typeof.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch04/php8_ffi_typeof.php -------------------------------------------------------------------------------- /ch04/php8_ffi_using_func_from_lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch04/php8_ffi_using_func_from_lib.php -------------------------------------------------------------------------------- /ch05/gettysburg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch05/gettysburg.txt -------------------------------------------------------------------------------- /ch05/includes/you_been_hacked.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch05/includes/you_been_hacked.html -------------------------------------------------------------------------------- /ch05/php7_autoload_function.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch05/php7_autoload_function.php -------------------------------------------------------------------------------- /ch05/php7_construct_exit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch05/php7_construct_exit.php -------------------------------------------------------------------------------- /ch05/php7_spl_spl_autoload_register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch05/php7_spl_spl_autoload_register.php -------------------------------------------------------------------------------- /ch05/php7_spl_spldoublylinkedlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch05/php7_spl_spldoublylinkedlist.php -------------------------------------------------------------------------------- /ch05/php7_spl_splfileobject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch05/php7_spl_splfileobject.php -------------------------------------------------------------------------------- /ch05/php7_spl_splheap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch05/php7_spl_splheap.php -------------------------------------------------------------------------------- /ch05/php8_bc_break_construct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch05/php8_bc_break_construct.php -------------------------------------------------------------------------------- /ch05/php8_bc_break_destruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch05/php8_bc_break_destruct.php -------------------------------------------------------------------------------- /ch05/php8_bc_break_magic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch05/php8_bc_break_magic.php -------------------------------------------------------------------------------- /ch05/php8_bc_break_magic_to_string.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch05/php8_bc_break_magic_to_string.php -------------------------------------------------------------------------------- /ch05/php8_bc_break_serializable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch05/php8_bc_break_serializable.php -------------------------------------------------------------------------------- /ch05/php8_bc_break_serialization.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch05/php8_bc_break_serialization.php -------------------------------------------------------------------------------- /ch05/php8_bc_break_sleep.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch05/php8_bc_break_sleep.php -------------------------------------------------------------------------------- /ch05/php8_construct_exit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch05/php8_construct_exit.php -------------------------------------------------------------------------------- /ch05/php8_oop_diff_anon_class_renaming.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch05/php8_oop_diff_anon_class_renaming.php -------------------------------------------------------------------------------- /ch05/php8_oop_diff_array_key_exists.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch05/php8_oop_diff_array_key_exists.php -------------------------------------------------------------------------------- /ch05/php8_oop_diff_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch05/php8_oop_diff_static.php -------------------------------------------------------------------------------- /ch05/php8_oop_diff_stringable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch05/php8_oop_diff_stringable.php -------------------------------------------------------------------------------- /ch05/php8_serialization.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch05/php8_serialization.php -------------------------------------------------------------------------------- /ch05/php8_serialization_sleep.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch05/php8_serialization_sleep.php -------------------------------------------------------------------------------- /ch05/php8_serialization_wakeup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch05/php8_serialization_wakeup.php -------------------------------------------------------------------------------- /ch05/php8_serialization_wakeup_timing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch05/php8_serialization_wakeup_timing.php -------------------------------------------------------------------------------- /ch05/php8_serialization_wakup_timing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch05/php8_serialization_wakup_timing.php -------------------------------------------------------------------------------- /ch05/php8_spl_spl_autoload_register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch05/php8_spl_spl_autoload_register.php -------------------------------------------------------------------------------- /ch05/php8_spl_spldoublylinkedlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch05/php8_spl_spldoublylinkedlist.php -------------------------------------------------------------------------------- /ch05/php8_spl_splfileobject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch05/php8_spl_splfileobject.php -------------------------------------------------------------------------------- /ch05/php8_spl_splheap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch05/php8_spl_splheap.php -------------------------------------------------------------------------------- /ch05/php8_variance_contravariant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch05/php8_variance_contravariant.php -------------------------------------------------------------------------------- /ch05/php8_variance_contravariant_2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch05/php8_variance_contravariant_2.php -------------------------------------------------------------------------------- /ch05/php8_variance_covariant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch05/php8_variance_covariant.php -------------------------------------------------------------------------------- /ch05/php8_variance_invariant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/ch05/php8_variance_invariant.php -------------------------------------------------------------------------------- /ch06/includes/php7_array_curly_1.php: -------------------------------------------------------------------------------- 1 | (?:<\/\1>|)$/); 4 | }); 5 | -------------------------------------------------------------------------------- /sample_data/phpMyAdmin-4.6.6-all-languages/js/jquery/src/jquery/css/var/rmargin.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/^margin/); 3 | }); 4 | -------------------------------------------------------------------------------- /sample_data/phpMyAdmin-4.6.6-all-languages/js/jquery/src/jquery/manipulation/var/rcheckableType.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/^(?:checkbox|radio)$/i); 3 | }); 4 | -------------------------------------------------------------------------------- /sample_data/phpMyAdmin-4.6.6-all-languages/js/jquery/src/jquery/outro.js: -------------------------------------------------------------------------------- 1 | })); 2 | -------------------------------------------------------------------------------- /sample_data/phpMyAdmin-4.6.6-all-languages/js/jquery/src/jquery/selector.js: -------------------------------------------------------------------------------- 1 | define([ "./selector-sizzle" ]); 2 | -------------------------------------------------------------------------------- /sample_data/phpMyAdmin-4.6.6-all-languages/js/jquery/src/jquery/sizzle/test/data/empty.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_data/phpMyAdmin-4.6.6-all-languages/js/jquery/src/jquery/var/arr.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return []; 3 | }); 4 | -------------------------------------------------------------------------------- /sample_data/phpMyAdmin-4.6.6-all-languages/js/jquery/src/jquery/var/class2type.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | // [[Class]] -> type pairs 3 | return {}; 4 | }); 5 | -------------------------------------------------------------------------------- /sample_data/phpMyAdmin-4.6.6-all-languages/js/jquery/src/jquery/var/rnotwhite.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/\S+/g); 3 | }); 4 | -------------------------------------------------------------------------------- /sample_data/phpMyAdmin-4.6.6-all-languages/js/rte.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpMyAdmin-4.6.6-all-languages/js/rte.js -------------------------------------------------------------------------------- /sample_data/phpMyAdmin-4.6.6-all-languages/js/sprintf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpMyAdmin-4.6.6-all-languages/js/sprintf.js -------------------------------------------------------------------------------- /sample_data/phpMyAdmin-4.6.6-all-languages/js/sql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpMyAdmin-4.6.6-all-languages/js/sql.js -------------------------------------------------------------------------------- /sample_data/phpMyAdmin-4.6.6-all-languages/license.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpMyAdmin-4.6.6-all-languages/license.php -------------------------------------------------------------------------------- /sample_data/phpMyAdmin-4.6.6-all-languages/lint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpMyAdmin-4.6.6-all-languages/lint.php -------------------------------------------------------------------------------- /sample_data/phpMyAdmin-4.6.6-all-languages/logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpMyAdmin-4.6.6-all-languages/logout.php -------------------------------------------------------------------------------- /sample_data/phpMyAdmin-4.6.6-all-languages/phpinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpMyAdmin-4.6.6-all-languages/phpinfo.php -------------------------------------------------------------------------------- /sample_data/phpMyAdmin-4.6.6-all-languages/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpMyAdmin-4.6.6-all-languages/print.css -------------------------------------------------------------------------------- /sample_data/phpMyAdmin-4.6.6-all-languages/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /sample_data/phpMyAdmin-4.6.6-all-languages/setup/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpMyAdmin-4.6.6-all-languages/setup/ajax.js -------------------------------------------------------------------------------- /sample_data/phpMyAdmin-4.6.6-all-languages/sql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpMyAdmin-4.6.6-all-languages/sql.php -------------------------------------------------------------------------------- /sample_data/phpMyAdmin-4.6.6-all-languages/tbl_chart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpMyAdmin-4.6.6-all-languages/tbl_chart.php -------------------------------------------------------------------------------- /sample_data/phpMyAdmin-4.6.6-all-languages/tbl_sql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpMyAdmin-4.6.6-all-languages/tbl_sql.php -------------------------------------------------------------------------------- /sample_data/phpMyAdmin-4.6.6-all-languages/templates/test/echo.phtml: -------------------------------------------------------------------------------- 1 | hello($variable); -------------------------------------------------------------------------------- /sample_data/phpMyAdmin-4.6.6-all-languages/templates/test/static.phtml: -------------------------------------------------------------------------------- 1 | static content -------------------------------------------------------------------------------- /sample_data/phpMyAdmin-4.6.6-all-languages/test/php-noprofile.ini: -------------------------------------------------------------------------------- 1 | ; PHP configuration tweaks for tests on Travis 2 | 3 | xdebug.profiler_enable=0 4 | -------------------------------------------------------------------------------- /sample_data/phpMyAdmin-4.6.6-all-languages/test/test_data/test.file: -------------------------------------------------------------------------------- 1 | TEST FILE 2 | -------------------------------------------------------------------------------- /sample_data/phpMyAdmin-4.6.6-all-languages/test/wui.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpMyAdmin-4.6.6-all-languages/test/wui.php -------------------------------------------------------------------------------- /sample_data/phpMyAdmin-4.6.6-all-languages/themes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpMyAdmin-4.6.6-all-languages/themes.php -------------------------------------------------------------------------------- /sample_data/phpMyAdmin-4.6.6-all-languages/url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpMyAdmin-4.6.6-all-languages/url.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/.gitignore -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/INSTALL -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/LICENSE -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/VERSION: -------------------------------------------------------------------------------- 1 | RELEASE-1.2.3 2 | -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/config/config.php.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/config/config.php.example -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/doc/certs/ca-bundle.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/doc/certs/ca-bundle.crt -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/doc/certs/slapd.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/doc/certs/slapd.crt -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/doc/certs/slapd.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/doc/certs/slapd.key -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/doc/demo-reset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/doc/demo-reset.sh -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/doc/ldif-Flintstones: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/doc/ldif-Flintstones -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/doc/ldif-Simpsons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/doc/ldif-Simpsons -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/doc/ldif-example-com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/doc/ldif-example-com -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/doc/ldif-example.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/doc/ldif-example.com -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/doc/pla-test-i18n.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/doc/pla-test-i18n.ldif -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/doc/uidpool.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/doc/uidpool.schema -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/hooks/classes/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/hooks/classes/README -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/hooks/functions/README: -------------------------------------------------------------------------------- 1 | Put your hook function files here. -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/htdocs/add_attr_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/htdocs/add_attr_form.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/htdocs/add_value_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/htdocs/add_value_form.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/htdocs/cmd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/htdocs/cmd.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/htdocs/collapse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/htdocs/collapse.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/htdocs/common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/htdocs/common.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/htdocs/compare.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/htdocs/compare.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/htdocs/compare_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/htdocs/compare_form.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/htdocs/copy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/htdocs/copy.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/htdocs/copy_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/htdocs/copy_form.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/htdocs/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/htdocs/create.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/htdocs/create_confirm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/htdocs/create_confirm.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/htdocs/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/htdocs/delete.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/htdocs/delete_attr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/htdocs/delete_attr.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/htdocs/delete_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/htdocs/delete_form.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/htdocs/draw_tree_node.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/htdocs/draw_tree_node.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/htdocs/entry_chooser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/htdocs/entry_chooser.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/htdocs/expand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/htdocs/expand.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/htdocs/export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/htdocs/export.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/htdocs/export_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/htdocs/export_form.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/htdocs/images/INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/htdocs/images/INFO -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/htdocs/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/htdocs/images/favicon.ico -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/htdocs/images/tango/INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/htdocs/images/tango/INFO -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/htdocs/import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/htdocs/import.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/htdocs/import_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/htdocs/import_form.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/htdocs/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/htdocs/index.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/htdocs/js/CheckAll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/htdocs/js/CheckAll.js -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/htdocs/js/ajax_tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/htdocs/js/ajax_tree.js -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/htdocs/js/toAscii.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/htdocs/js/toAscii.js -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/htdocs/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/htdocs/login.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/htdocs/login_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/htdocs/login_form.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/htdocs/logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/htdocs/logout.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/htdocs/mass_delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/htdocs/mass_delete.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/htdocs/mass_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/htdocs/mass_edit.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/htdocs/mass_update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/htdocs/mass_update.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/htdocs/monitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/htdocs/monitor.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/htdocs/purge_cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/htdocs/purge_cache.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/htdocs/query_engine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/htdocs/query_engine.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/htdocs/rdelete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/htdocs/rdelete.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/htdocs/refresh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/htdocs/refresh.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/htdocs/rename.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/htdocs/rename.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/htdocs/rename_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/htdocs/rename_form.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/htdocs/schema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/htdocs/schema.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/htdocs/server_info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/htdocs/server_info.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/htdocs/show_cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/htdocs/show_cache.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/htdocs/update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/htdocs/update.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/htdocs/update_confirm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/htdocs/update_confirm.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/htdocs/welcome.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/htdocs/welcome.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/index.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/lib/AJAXTree.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/lib/AJAXTree.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/lib/Attribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/lib/Attribute.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/lib/AttributeFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/lib/AttributeFactory.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/lib/BinaryAttribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/lib/BinaryAttribute.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/lib/DateAttribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/lib/DateAttribute.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/lib/DnAttribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/lib/DnAttribute.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/lib/GidAttribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/lib/GidAttribute.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/lib/HTMLTree.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/lib/HTMLTree.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/lib/JpegAttribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/lib/JpegAttribute.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/lib/MassRender.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/lib/MassRender.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/lib/PageRender.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/lib/PageRender.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/lib/PasswordAttribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/lib/PasswordAttribute.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/lib/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/lib/Query.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/lib/QueryRender.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/lib/QueryRender.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/lib/ShadowAttribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/lib/ShadowAttribute.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/lib/Template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/lib/Template.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/lib/TemplateRender.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/lib/TemplateRender.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/lib/Tree.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/lib/Tree.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/lib/TreeItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/lib/TreeItem.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/lib/Visitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/lib/Visitor.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/lib/blowfish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/lib/blowfish.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/lib/common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/lib/common.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/lib/config_default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/lib/config_default.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/lib/createlm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/lib/createlm.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/lib/ds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/lib/ds.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/lib/ds_ldap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/lib/ds_ldap.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/lib/ds_ldap_pla.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/lib/ds_ldap_pla.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/lib/emuhash_functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/lib/emuhash_functions.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/lib/export_functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/lib/export_functions.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/lib/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/lib/functions.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/lib/hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/lib/hooks.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/lib/import_functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/lib/import_functions.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/lib/ldap_error_codes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/lib/ldap_error_codes.txt -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/lib/page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/lib/page.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/lib/query_functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/lib/query_functions.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/lib/schema_functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/lib/schema_functions.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/lib/session_functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/lib/session_functions.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/lib/syslog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/lib/syslog.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/lib/xml2array.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/lib/xml2array.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/lib/xmlTemplates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/lib/xmlTemplates.php -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/queries/SambaUsers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/queries/SambaUsers.xml -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/queries/UserList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/queries/UserList.xml -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/queries/query.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/queries/query.dtd -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/templates/creation/ou.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/templates/creation/ou.xml -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/templates/template.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/templates/template.dtd -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/tools/po/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/tools/po/Makefile -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/tools/po/messages.header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/tools/po/messages.header -------------------------------------------------------------------------------- /sample_data/phpldapadmin-1.2.3/tools/unserialize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/phpldapadmin-1.2.3/tools/unserialize.php -------------------------------------------------------------------------------- /sample_data/reset_geonames.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/reset_geonames.php -------------------------------------------------------------------------------- /sample_data/reset_geonames.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/reset_geonames.sh -------------------------------------------------------------------------------- /sample_data/reset_geonames_country_info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/reset_geonames_country_info.php -------------------------------------------------------------------------------- /sample_data/reset_geonames_country_info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/reset_geonames_country_info.sh -------------------------------------------------------------------------------- /sample_data/sqlite.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/sqlite.db -------------------------------------------------------------------------------- /sample_data/sqlite_geonames.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/sqlite_geonames.php -------------------------------------------------------------------------------- /sample_data/sqlite_geonames_country_info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/sqlite_geonames_country_info.php -------------------------------------------------------------------------------- /sample_data/sqlite_geonames_create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/sqlite_geonames_create.sql -------------------------------------------------------------------------------- /sample_data/sqlite_users_create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/sample_data/sqlite_users_create.sql -------------------------------------------------------------------------------- /src/Chat/Generic/Constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Chat/Generic/Constants.php -------------------------------------------------------------------------------- /src/Chat/Handler/DeleteHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Chat/Handler/DeleteHandler.php -------------------------------------------------------------------------------- /src/Chat/Handler/GetAllNamesHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Chat/Handler/GetAllNamesHandler.php -------------------------------------------------------------------------------- /src/Chat/Handler/GetHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Chat/Handler/GetHandler.php -------------------------------------------------------------------------------- /src/Chat/Handler/NextHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Chat/Handler/NextHandler.php -------------------------------------------------------------------------------- /src/Chat/Handler/PostHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Chat/Handler/PostHandler.php -------------------------------------------------------------------------------- /src/Chat/Http/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Chat/Http/Client.php -------------------------------------------------------------------------------- /src/Chat/Http/SwooleToPsr7.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Chat/Http/SwooleToPsr7.php -------------------------------------------------------------------------------- /src/Chat/Message/Api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Chat/Message/Api.php -------------------------------------------------------------------------------- /src/Chat/Message/Pipe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Chat/Message/Pipe.php -------------------------------------------------------------------------------- /src/Chat/Message/Render.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Chat/Message/Render.php -------------------------------------------------------------------------------- /src/Chat/Middleware/Access.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Chat/Middleware/Access.php -------------------------------------------------------------------------------- /src/Chat/Middleware/Validate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Chat/Middleware/Validate.php -------------------------------------------------------------------------------- /src/Chat/Middleware/ValidatePost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Chat/Middleware/ValidatePost.php -------------------------------------------------------------------------------- /src/Chat/Service/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Chat/Service/Base.php -------------------------------------------------------------------------------- /src/Chat/Service/Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Chat/Service/Connection.php -------------------------------------------------------------------------------- /src/Chat/Service/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Chat/Service/Message.php -------------------------------------------------------------------------------- /src/Chat/Service/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Chat/Service/User.php -------------------------------------------------------------------------------- /src/Http/Client/CurlStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Http/Client/CurlStrategy.php -------------------------------------------------------------------------------- /src/Http/Client/SocketStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Http/Client/SocketStrategy.php -------------------------------------------------------------------------------- /src/Http/Client/StrategyInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Http/Client/StrategyInterface.php -------------------------------------------------------------------------------- /src/Http/Client/StreamsStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Http/Client/StreamsStrategy.php -------------------------------------------------------------------------------- /src/Http/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Http/Request.php -------------------------------------------------------------------------------- /src/Migration/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Migration/Base.php -------------------------------------------------------------------------------- /src/Migration/OopBreakScan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Migration/OopBreakScan.php -------------------------------------------------------------------------------- /src/Php7/Connector/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Php7/Connector/Base.php -------------------------------------------------------------------------------- /src/Php7/Connector/ConnectInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Php7/Connector/ConnectInterface.php -------------------------------------------------------------------------------- /src/Php7/Connector/ConnectMysqli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Php7/Connector/ConnectMysqli.php -------------------------------------------------------------------------------- /src/Php7/Connector/ConnectPdo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Php7/Connector/ConnectPdo.php -------------------------------------------------------------------------------- /src/Php7/Container/ResponseStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Php7/Container/ResponseStrategy.php -------------------------------------------------------------------------------- /src/Php7/Container/UsesSplObjectStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Php7/Container/UsesSplObjectStorage.php -------------------------------------------------------------------------------- /src/Php7/Encrypt/Cipher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Php7/Encrypt/Cipher.php -------------------------------------------------------------------------------- /src/Php7/Encrypt/OpenCipher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Php7/Encrypt/OpenCipher.php -------------------------------------------------------------------------------- /src/Php7/Entity/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Php7/Entity/Events.php -------------------------------------------------------------------------------- /src/Php7/Exits/ConstExcept.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Php7/Exits/ConstExcept.php -------------------------------------------------------------------------------- /src/Php7/Exits/ExitsEarly.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Php7/Exits/ExitsEarly.php -------------------------------------------------------------------------------- /src/Php7/Http/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Php7/Http/Response.php -------------------------------------------------------------------------------- /src/Php7/Http/StatusCodes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Php7/Http/StatusCodes.php -------------------------------------------------------------------------------- /src/Php7/Http/TestData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Php7/Http/TestData.php -------------------------------------------------------------------------------- /src/Php7/Image/FgBgTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Php7/Image/FgBgTrait.php -------------------------------------------------------------------------------- /src/Php7/Image/SingleChar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Php7/Image/SingleChar.php -------------------------------------------------------------------------------- /src/Php7/Image/Strategy/DotFill.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Php7/Image/Strategy/DotFill.php -------------------------------------------------------------------------------- /src/Php7/Image/Strategy/LineFill.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Php7/Image/Strategy/LineFill.php -------------------------------------------------------------------------------- /src/Php7/Image/Strategy/PlainFill.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Php7/Image/Strategy/PlainFill.php -------------------------------------------------------------------------------- /src/Php7/Image/Strategy/PlainText.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Php7/Image/Strategy/PlainText.php -------------------------------------------------------------------------------- /src/Php7/Image/Strategy/RotateText.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Php7/Image/Strategy/RotateText.php -------------------------------------------------------------------------------- /src/Php7/Image/Strategy/Shadow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Php7/Image/Strategy/Shadow.php -------------------------------------------------------------------------------- /src/Php7/Reflection/Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Php7/Reflection/Test.php -------------------------------------------------------------------------------- /src/Php7/Sql/Select.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Php7/Sql/Select.php -------------------------------------------------------------------------------- /src/Php7/Sql/Where.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Php7/Sql/Where.php -------------------------------------------------------------------------------- /src/Php7/Word/Captcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Php7/Word/Captcha.php -------------------------------------------------------------------------------- /src/Php8/Container/UsesWeakMap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Php8/Container/UsesWeakMap.php -------------------------------------------------------------------------------- /src/Php8/Exits/ConstExcept.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Php8/Exits/ConstExcept.php -------------------------------------------------------------------------------- /src/Php8/Exits/ExitsEarly.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Php8/Exits/ExitsEarly.php -------------------------------------------------------------------------------- /src/Php8/Image/SingleChar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Php8/Image/SingleChar.php -------------------------------------------------------------------------------- /src/Php8/Image/Strategy/DotFill.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Php8/Image/Strategy/DotFill.php -------------------------------------------------------------------------------- /src/Php8/Image/Strategy/LineFill.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Php8/Image/Strategy/LineFill.php -------------------------------------------------------------------------------- /src/Php8/Image/Strategy/PlainFill.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Php8/Image/Strategy/PlainFill.php -------------------------------------------------------------------------------- /src/Php8/Image/Strategy/PlainText.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Php8/Image/Strategy/PlainText.php -------------------------------------------------------------------------------- /src/Php8/Image/Strategy/RotateText.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Php8/Image/Strategy/RotateText.php -------------------------------------------------------------------------------- /src/Php8/Image/Strategy/Shadow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Php8/Image/Strategy/Shadow.php -------------------------------------------------------------------------------- /src/Php8/Jit/Mandelbrot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Php8/Jit/Mandelbrot.php -------------------------------------------------------------------------------- /src/Php8/Migration/BreakScan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Php8/Migration/BreakScan.php -------------------------------------------------------------------------------- /src/Php8/Sort/Access.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Php8/Sort/Access.php -------------------------------------------------------------------------------- /src/Php8/Sql/Select.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Php8/Sql/Select.php -------------------------------------------------------------------------------- /src/Php8/Sql/Where.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Php8/Sql/Where.php -------------------------------------------------------------------------------- /src/Response/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Response/Base.php -------------------------------------------------------------------------------- /src/Response/HtmlStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Response/HtmlStrategy.php -------------------------------------------------------------------------------- /src/Response/JsonStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Response/JsonStrategy.php -------------------------------------------------------------------------------- /src/Response/ResponseInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Response/ResponseInterface.php -------------------------------------------------------------------------------- /src/Response/TextStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Response/TextStrategy.php -------------------------------------------------------------------------------- /src/Response/XmlStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Response/XmlStrategy.php -------------------------------------------------------------------------------- /src/Server/Autoload/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Server/Autoload/Loader.php -------------------------------------------------------------------------------- /src/Server/Display/Execute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Server/Display/Execute.php -------------------------------------------------------------------------------- /src/Services/BillionaireTracker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Services/BillionaireTracker.php -------------------------------------------------------------------------------- /src/Services/CountryInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Services/CountryInfo.php -------------------------------------------------------------------------------- /src/Services/DocBlockChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Services/DocBlockChecker.php -------------------------------------------------------------------------------- /src/Services/HashGen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Services/HashGen.php -------------------------------------------------------------------------------- /src/Services/SampleAccess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Services/SampleAccess.php -------------------------------------------------------------------------------- /src/Services/SortTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/Services/SortTest.php -------------------------------------------------------------------------------- /src/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/src/config/config.php -------------------------------------------------------------------------------- /test/Php8Test/Migration/BreakScanTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/test/Php8Test/Migration/BreakScanTest.php -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/test/README.md -------------------------------------------------------------------------------- /test/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/test/autoload.php -------------------------------------------------------------------------------- /test/phpunit5/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/test/phpunit5/composer.json -------------------------------------------------------------------------------- /test/phpunit5/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/test/phpunit5/composer.lock -------------------------------------------------------------------------------- /test/phpunit5/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/test/phpunit5/phpunit.xml -------------------------------------------------------------------------------- /test/phpunit9/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | -------------------------------------------------------------------------------- /test/phpunit9/.phpunit.result.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/test/phpunit9/.phpunit.result.cache -------------------------------------------------------------------------------- /test/phpunit9/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/test/phpunit9/composer.json -------------------------------------------------------------------------------- /test/phpunit9/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/test/phpunit9/composer.lock -------------------------------------------------------------------------------- /test/phpunit9/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PHP-8-Programming-Tips-Tricks-and-Best-Practices/HEAD/test/phpunit9/phpunit.xml --------------------------------------------------------------------------------