├── .devcontainer ├── devcontainer.json └── docker-compose.yml ├── .dockerignore ├── .github ├── .stale ├── CODEOWNERS ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md ├── actions │ ├── prepare-source │ │ └── action.yml │ └── run-wp-tests │ │ └── action.yml ├── codecov.yml ├── codeql-config.yml ├── copilot-instructions.md ├── dependabot.yml └── workflows │ ├── build-docker-image.yml │ ├── ci.yml │ ├── codeql-analysis.yml │ ├── core-tests.yml │ ├── coverage-develop.yml │ ├── dependency-review.yml │ ├── deploy.yml │ ├── e2e.yml │ ├── lint.yml │ ├── parsely.yml │ ├── release-prod.yml │ ├── release-staging.yml │ ├── search-dev-tools.yml │ └── stale.yml ├── .gitignore ├── .gitmodules ├── .husky ├── .gitignore └── pre-commit ├── .lintstagedrc ├── .sonarcloud.properties ├── 000-debug ├── 0-load.php ├── debug-mode.php ├── logger.php └── not-proxied-flag.php ├── 000-pre-vip-config └── requires.php ├── 000-vip-init.php ├── 001-core.php ├── 001-core ├── constants.php ├── options-api.php └── privacy.php ├── 001-cron.php ├── LICENSE ├── README-PUBLIC.md ├── README.md ├── SECURITY.md ├── __tests__ └── e2e │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── bin │ └── setup-env.sh │ ├── lib │ ├── asana-pharse.d.ts │ ├── components │ │ └── wp-admin-sidebar-component.ts │ ├── data-helper.ts │ ├── global-setup.ts │ ├── pages │ │ ├── lost-password-page.ts │ │ ├── media-upload-page.ts │ │ ├── page-list-page.ts │ │ ├── post-list-page.ts │ │ ├── published-page-page.ts │ │ ├── published-post-page.ts │ │ ├── search-page.ts │ │ ├── settings-writing-page.ts │ │ ├── wp-admin-page.ts │ │ ├── wp-classic-editor-page.ts │ │ ├── wp-editor-page.ts │ │ └── wp-login-page.ts │ ├── playwright-helpers.ts │ └── wp-api-helper.ts │ ├── package-lock.json │ ├── package.json │ ├── playwright.config.ts │ ├── specs │ ├── generic.spec.ts │ ├── media__add.spec.ts │ ├── page__edit.spec.ts │ ├── page__publish.spec.ts │ ├── page_classic__publish.spec.ts │ ├── post__edit.spec.ts │ ├── post__publish.spec.ts │ ├── post_classic__publish.spec.ts │ ├── searchdevtools.spec.ts │ └── security.spec.ts │ ├── test_media │ ├── image_01.jpg │ └── image_02.jpg │ └── tsconfig.json ├── a8c-files.php ├── admin-notice.php ├── admin-notice ├── README.md ├── admin-notice.php ├── class-admin-notice-controller.php ├── class-admin-notice.php ├── conditions │ ├── class-capability-condition.php │ ├── class-date-condition.php │ ├── class-expression-condition.php │ ├── class-wp-version-condition.php │ └── interface-condition.php └── js │ └── script.js ├── advanced-post-cache.php ├── akismet.php ├── akismet ├── .htaccess ├── LICENSE.txt ├── _inc │ ├── akismet-admin.css │ ├── akismet-admin.js │ ├── akismet-frontend.js │ ├── akismet.css │ ├── akismet.js │ ├── fonts │ │ └── inter.css │ ├── img │ │ ├── akismet-refresh-logo.svg │ │ ├── akismet-refresh-logo@2x.png │ │ ├── arrow-left.svg │ │ ├── icon-external.svg │ │ ├── logo-a-2x.png │ │ └── logo-full-2x.png │ └── rtl │ │ ├── akismet-admin-rtl.css │ │ └── akismet-rtl.css ├── akismet.php ├── changelog.txt ├── class.akismet-admin.php ├── class.akismet-cli.php ├── class.akismet-rest-api.php ├── class.akismet-widget.php ├── class.akismet.php ├── index.php ├── readme.txt ├── views │ ├── activate.php │ ├── config.php │ ├── connect-jp.php │ ├── enter.php │ ├── get.php │ ├── logo.php │ ├── notice.php │ ├── predefined.php │ ├── setup.php │ ├── start.php │ ├── stats.php │ └── title.php └── wrapper.php ├── alloptions-limit.php ├── back-compat.php ├── bin ├── download-wp-tests.sh ├── manage-wp-parsely-subtree.sh ├── php-lint.sh ├── test.sh └── upgrade-plugin.sh ├── blogpublic-notice.php ├── cache ├── README.md ├── class-vary-cache.php └── examples │ ├── segmentation-beta │ └── beta.php │ └── segmentation-maintenance-mode-bypass │ └── vip-config.php ├── ci └── update-prs.php ├── codebase-manager.php ├── codebase-manager ├── codebase-manager.php └── plugins │ ├── plugin.php │ └── plugins-manager.php ├── composer.json ├── composer.json.tpl ├── composer.lock ├── config ├── class-site-details-index.php └── class-sync.php ├── cron ├── action-scheduler-dynamic-queue.php ├── cron-control │ ├── LICENSE │ ├── cron-control.php │ ├── includes │ │ ├── class-event.php │ │ ├── class-events-store.php │ │ ├── class-events.php │ │ ├── class-internal-events.php │ │ ├── class-lock.php │ │ ├── class-main.php │ │ ├── class-rest-api.php │ │ ├── class-singleton.php │ │ ├── constants.php │ │ ├── functions.php │ │ ├── utils.php │ │ ├── wp-adapter.php │ │ ├── wp-cli.php │ │ └── wp-cli │ │ │ ├── class-events.php │ │ │ ├── class-lock.php │ │ │ ├── class-main.php │ │ │ ├── class-orchestrate-runner.php │ │ │ ├── class-orchestrate-sites.php │ │ │ ├── class-orchestrate.php │ │ │ └── class-rest-api.php │ ├── languages │ │ └── cron-control.pot │ └── readme.txt └── cron.php ├── drop-ins ├── db.php ├── object-cache.php ├── object-cache │ └── object-cache-stable.php └── wp-memcached │ ├── .gitignore │ ├── bin │ └── test.sh │ ├── composer.json │ ├── composer.lock │ ├── includes │ ├── adapter-interface.php │ ├── memcache-adapter.php │ ├── memcached-adapter.php │ ├── stats.php │ └── wp-object-cache.php │ ├── object-cache.php │ ├── phpcs.xml.dist │ ├── phpunit.xml.dist │ ├── psalm.xml.dist │ ├── readme.md │ ├── stubs │ ├── memcache-stubs.php │ ├── memcached-stubs.php │ └── wordpress-stubs.php │ └── tests │ ├── bootstrap.php │ └── test-wp-object-cache.php ├── errors ├── alloptions-limit.html ├── network-not-found.html ├── site-maintenance.html ├── site-not-found.html └── site-shutdown.html ├── files ├── acl │ ├── acl.php │ ├── endpoint-check-file-acl.php │ ├── pre-wp-utils.php │ ├── restrict-all-files.php │ └── restrict-unpublished-files.php ├── class-api-cache.php ├── class-api-client.php ├── class-curl-streamer.php ├── class-image-sizes.php ├── class-image.php ├── class-meta-updater.php ├── class-path-utils.php ├── class-vip-filesystem-local-stream-wrapper.php ├── class-vip-filesystem.php ├── class-wp-filesystem-vip-uploads.php ├── class-wp-filesystem-vip.php └── init-filesystem.php ├── healthcheck ├── class-healthcheck.php └── healthcheck.php ├── http-concat.php ├── integrations ├── block-data-api.php ├── enterprise-search.php ├── enums.php ├── integration-utils.php ├── integration-vip-config.php ├── integration.php ├── integrations.php ├── jetpack.php ├── parsely.php ├── real-time-collaboration.php ├── remote-data-blocks.php ├── security-boost.php └── vip-governance.php ├── jetpack.php ├── lib ├── class-apc-cache-interceptor.php ├── class-vip-encloseme-cleanup.php ├── class-vip-request-block.php ├── db-multiple-datasets-config.php ├── environment │ └── class-environment.php ├── feature │ ├── README.md │ ├── class-feature-cli.php │ └── class-feature.php ├── helpers │ ├── app.php │ ├── environment.php │ ├── php-compat.php │ ├── wp-cli-db.php │ └── wp-cli-db │ │ ├── README.md │ │ ├── class-config.php │ │ ├── class-db-server.php │ │ ├── class-vip-db-command.php │ │ └── class-wp-cli-db.php ├── proxy │ ├── class-iputils.php │ └── ip-forward.php ├── sms.php ├── sunrise │ └── sunrise.php ├── utils │ ├── class-alerts.php │ └── class-context.php └── wpcom-error-handler │ └── wpcom-error-handler.php ├── logstash ├── class-logger.php └── logstash.php ├── misc.php ├── package.json ├── performance.php ├── performance ├── bulk-edit.php ├── class-mime-types-caching.php ├── do-pings.php ├── lastpostmodified.php ├── media.php ├── plugins.php └── vip-tweaks.php ├── phpcs.xml.dist ├── phpunit-multisite.xml ├── phpunit.xml ├── plugin-fixes.php ├── prometheus-collectors ├── class-apcu-collector.php ├── class-cache-collector.php ├── class-error-stats-collector.php ├── class-login-stats-collector.php ├── class-multisite-stats-collector.php ├── class-opcache-collector.php ├── class-potential-multi-dataset-queries-collector.php └── class-user-stats-collector.php ├── prometheus.php ├── prometheus ├── README.md ├── composer.json ├── composer.lock ├── endpoint.php ├── inc │ ├── class-collectorinterface.php │ ├── class-plugin.php │ └── class-safeadapter.php ├── index.php └── vendor │ ├── autoload.php │ ├── composer │ ├── ClassLoader.php │ ├── InstalledVersions.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ ├── installed.json │ ├── installed.php │ └── platform_check.php │ └── promphp │ └── prometheus_client_php │ ├── LICENSE │ ├── README.APCng.md │ ├── README.md │ ├── composer.json │ ├── phpstan.neon.dist │ └── src │ └── Prometheus │ ├── Collector.php │ ├── CollectorRegistry.php │ ├── Counter.php │ ├── Exception │ ├── MetricJsonException.php │ ├── MetricNotFoundException.php │ ├── MetricsRegistrationException.php │ └── StorageException.php │ ├── Gauge.php │ ├── Histogram.php │ ├── Math.php │ ├── MetricFamilySamples.php │ ├── RegistryInterface.php │ ├── RenderTextFormat.php │ ├── RendererInterface.php │ ├── Sample.php │ ├── Storage │ ├── APC.php │ ├── APCng.php │ ├── Adapter.php │ ├── InMemory.php │ ├── PDO.php │ ├── Redis.php │ └── RedisNg.php │ └── Summary.php ├── qm-plugins ├── qm-alloptions │ ├── class-qm-collector-alloptions.php │ ├── class-qm-data-alloptions.php │ ├── class-qm-output-html-alloptions.php │ ├── qm-alloptions.php │ ├── readme.md │ └── screenshot-1.png ├── qm-apcu-cache │ ├── class-qm-collector-apcu-cache.php │ ├── class-qm-output-html-apcu-cache.php │ └── qm-apcu-cache.php ├── qm-cron │ ├── class-qm-collector-cron.php │ ├── class-qm-data-cron.php │ ├── class-qm-output-html-cron.php │ └── qm-cron.php ├── qm-db-connections │ ├── class-qm-collector-db-connections.php │ ├── class-qm-data-db-connections.php │ ├── class-qm-output-html-db-connections.php │ └── qm-db-connections.php ├── qm-limited-header-php-errors │ └── output │ │ └── headers │ │ └── php-errors.php ├── qm-object-cache │ ├── class-qm-data-object-cache.php │ ├── collectors │ │ ├── class-qm-collector-object-cache-group-stats.php │ │ ├── class-qm-collector-object-cache-ops.php │ │ ├── class-qm-collector-object-cache-slow-ops.php │ │ └── class-qm-collector-object-cache.php │ ├── css │ │ └── style.css │ ├── html │ │ ├── class-qm-output-html-object-cache-group-stats.php │ │ ├── class-qm-output-html-object-cache-ops.php │ │ ├── class-qm-output-html-object-cache-slow-ops.php │ │ └── class-qm-output-html-object-cache.php │ ├── qm-object-cache.php │ └── readme.md └── qm-vip │ ├── class-qm-collector-vip.php │ ├── class-qm-data-vip.php │ ├── class-qm-output-html-vip.php │ └── qm-vip.php ├── query-monitor.php ├── query-monitor ├── LICENSE ├── SECURITY.md ├── assets │ ├── icons │ │ ├── admin-generic.svg │ │ ├── arrow-down.svg │ │ ├── edit.svg │ │ ├── external.svg │ │ ├── filter.svg │ │ ├── image-rotate-left.svg │ │ ├── image-rotate-right.svg │ │ ├── info.svg │ │ ├── no-alt.svg │ │ ├── warning.svg │ │ └── yes-alt.svg │ ├── query-monitor.css │ └── query-monitor.js ├── classes │ ├── Activation.php │ ├── Backtrace.php │ ├── CLI.php │ ├── Collector.php │ ├── Collector_Assets.php │ ├── Collectors.php │ ├── Component.php │ ├── Component_Altis_Vendor.php │ ├── Component_Core.php │ ├── Component_Dropin.php │ ├── Component_MU_Plugin.php │ ├── Component_MU_Vendor.php │ ├── Component_Other.php │ ├── Component_PHP.php │ ├── Component_Plugin.php │ ├── Component_Stylesheet.php │ ├── Component_Template.php │ ├── Component_Unknown.php │ ├── Component_VIP_Plugin.php │ ├── DB.php │ ├── Data.php │ ├── DataCollector.php │ ├── Deprecated_Argument_Run.php │ ├── Deprecated_Class_Run.php │ ├── Deprecated_Constructor_Run.php │ ├── Deprecated_File_Included.php │ ├── Deprecated_Function_Run.php │ ├── Deprecated_Hook_Run.php │ ├── Dispatcher.php │ ├── Dispatchers.php │ ├── Doing_It_Wrong_Run.php │ ├── Hook.php │ ├── Output.php │ ├── PHP.php │ ├── Plugin.php │ ├── QM.php │ ├── QueryMonitor.php │ ├── Timer.php │ ├── Util.php │ ├── Wrong.php │ ├── debug_bar.php │ └── debug_bar_panel.php ├── collectors │ ├── admin.php │ ├── assets_scripts.php │ ├── assets_styles.php │ ├── block_editor.php │ ├── cache.php │ ├── caps.php │ ├── conditionals.php │ ├── db_callers.php │ ├── db_components.php │ ├── db_dupes.php │ ├── db_queries.php │ ├── debug_bar.php │ ├── doing_it_wrong.php │ ├── environment.php │ ├── hooks.php │ ├── http.php │ ├── languages.php │ ├── logger.php │ ├── multisite.php │ ├── overview.php │ ├── php_errors.php │ ├── raw_request.php │ ├── redirects.php │ ├── request.php │ ├── theme.php │ ├── timing.php │ └── transients.php ├── composer.json ├── data │ ├── admin.php │ ├── assets.php │ ├── block_editor.php │ ├── cache.php │ ├── caps.php │ ├── conditionals.php │ ├── db_callers.php │ ├── db_components.php │ ├── db_dupes.php │ ├── db_queries.php │ ├── doing_it_wrong.php │ ├── environment.php │ ├── fallback.php │ ├── hooks.php │ ├── http.php │ ├── languages.php │ ├── logger.php │ ├── multisite.php │ ├── overview.php │ ├── php_errors.php │ ├── raw_request.php │ ├── redirect.php │ ├── request.php │ ├── theme.php │ ├── timing.php │ └── transients.php ├── dispatchers │ ├── AJAX.php │ ├── Html.php │ ├── REST.php │ ├── REST_Envelope.php │ ├── Redirect.php │ └── WP_Die.php ├── output │ ├── Headers.php │ ├── Html.php │ ├── Raw.php │ ├── headers │ │ ├── overview.php │ │ ├── php_errors.php │ │ └── redirects.php │ ├── html │ │ ├── admin.php │ │ ├── assets.php │ │ ├── assets_scripts.php │ │ ├── assets_styles.php │ │ ├── block_editor.php │ │ ├── caps.php │ │ ├── conditionals.php │ │ ├── db_callers.php │ │ ├── db_components.php │ │ ├── db_dupes.php │ │ ├── db_queries.php │ │ ├── debug_bar.php │ │ ├── doing_it_wrong.php │ │ ├── environment.php │ │ ├── headers.php │ │ ├── hooks.php │ │ ├── http.php │ │ ├── languages.php │ │ ├── logger.php │ │ ├── multisite.php │ │ ├── overview.php │ │ ├── php_errors.php │ │ ├── request.php │ │ ├── theme.php │ │ ├── timing.php │ │ └── transients.php │ └── raw │ │ ├── cache.php │ │ ├── conditionals.php │ │ ├── db_queries.php │ │ ├── http.php │ │ ├── logger.php │ │ └── transients.php ├── query-monitor.php ├── readme.txt ├── vendor │ ├── autoload.php │ └── composer │ │ ├── ClassLoader.php │ │ ├── LICENSE │ │ ├── autoload_real.php │ │ ├── autoload_static.php │ │ ├── installed.php │ │ └── platform_check.php └── wp-content │ └── db.php ├── renovate.json ├── rest-api └── vip-endpoints.php ├── rewrite-rules-inspector.php ├── schema.php ├── search ├── es-wp-query │ ├── .gitignore │ ├── .travis.yml │ ├── README.md │ ├── adapters │ │ └── vip-search.php │ ├── bin │ │ ├── install-es.sh │ │ └── install-wp-tests.sh │ ├── class-es-wp-date-query.php │ ├── class-es-wp-meta-query.php │ ├── class-es-wp-query-shoehorn.php │ ├── class-es-wp-query-wrapper.php │ ├── class-es-wp-tax-query.php │ ├── es-wp-query.php │ ├── functions.php │ ├── multisite.xml │ ├── phpcs.xml.dist │ ├── phpunit.xml.dist │ └── tests │ │ ├── .DS_Store │ │ ├── bootstrap.php │ │ └── query │ │ ├── author.php │ │ ├── date.php │ │ ├── dateQuery.php │ │ ├── loggedIn.php │ │ ├── metaQuery.php │ │ ├── post.php │ │ ├── query.php │ │ ├── results.php │ │ ├── shoehorn.php │ │ └── taxQuery.php ├── includes │ ├── classes │ │ ├── class-cache.php │ │ ├── class-concurrency-limiter.php │ │ ├── class-dashboard.php │ │ ├── class-fieldcountgaugejob.php │ │ ├── class-health.php │ │ ├── class-healthjob.php │ │ ├── class-prometheus-collector.php │ │ ├── class-queue.php │ │ ├── class-queuewaittimejob.php │ │ ├── class-search.php │ │ ├── class-settingshealthjob.php │ │ ├── class-syncmanager-helper.php │ │ ├── class-versioning.php │ │ ├── class-versioningcleanupjob.php │ │ ├── commands │ │ │ ├── class-corecommand.php │ │ │ ├── class-documentcommand.php │ │ │ ├── class-healthcommand.php │ │ │ ├── class-queuecommand.php │ │ │ └── class-versioncommand.php │ │ ├── concurrency-limiter │ │ │ ├── backendinterface.php │ │ │ ├── class-apcu-backend.php │ │ │ └── class-object-cache-backend.php │ │ └── queue │ │ │ ├── class-cron.php │ │ │ └── class-schema.php │ └── functions │ │ ├── ep-get-query-log.php │ │ └── utils.php ├── search-dev-tools │ ├── .babelrc.json │ ├── .eslintrc.json │ ├── .gitignore │ ├── README.md │ ├── build │ │ ├── bundle.css │ │ └── bundle.js │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.js │ ├── search-dev-tools.php │ ├── src │ │ ├── assets │ │ │ ├── close.svg │ │ │ ├── favicon.ico │ │ │ ├── icon.png │ │ │ ├── lg.svg │ │ │ ├── minus.svg │ │ │ ├── plus.svg │ │ │ └── wpvip.svg │ │ ├── components │ │ │ ├── app.js │ │ │ ├── collapsible-list │ │ │ │ ├── index.js │ │ │ │ └── style.scss │ │ │ ├── information-pane │ │ │ │ ├── index.js │ │ │ │ └── style.scss │ │ │ ├── overlay │ │ │ │ ├── index.js │ │ │ │ └── style.scss │ │ │ ├── query │ │ │ │ ├── index.js │ │ │ │ └── style.scss │ │ │ └── style.scss │ │ ├── context.js │ │ ├── index.js │ │ ├── manifest.json │ │ ├── style │ │ │ ├── mixins.scss │ │ │ ├── prism.scss │ │ │ ├── style.scss │ │ │ └── vars.scss │ │ ├── template.html │ │ ├── utils.js │ │ └── webpack-public-path.js │ └── webpack.config.js └── search.php ├── security.php ├── security ├── class-lockout.php ├── class-private-sites.php ├── js │ └── password.js ├── login-error.php ├── machine-user.php └── password.php ├── shared-plugins └── two-factor │ ├── LICENSE.md │ ├── assets │ ├── banner-1544x500.png │ ├── banner-772x250.png │ ├── icon-128x128.png │ ├── icon-256x256.png │ ├── icon.svg │ ├── screenshot-1.png │ ├── screenshot-2.png │ └── screenshot-3.png │ ├── class-two-factor-compat.php │ ├── class-two-factor-core.php │ ├── includes │ ├── Google │ │ └── u2f-api.js │ ├── Yubico │ │ └── U2F.php │ ├── function.login-footer.php │ ├── function.login-header.php │ └── qrcode-generator │ │ └── qrcode.js │ ├── providers │ ├── class-two-factor-backup-codes.php │ ├── class-two-factor-dummy.php │ ├── class-two-factor-email.php │ ├── class-two-factor-fido-u2f-admin-list-table.php │ ├── class-two-factor-fido-u2f-admin.php │ ├── class-two-factor-fido-u2f.php │ ├── class-two-factor-provider.php │ ├── class-two-factor-totp.php │ ├── css │ │ └── fido-u2f-admin.css │ └── js │ │ ├── fido-u2f-admin-inline-edit.js │ │ ├── fido-u2f-admin.js │ │ └── fido-u2f-login.js │ ├── readme.txt │ ├── two-factor.php │ └── user-edit.css ├── stats.php ├── telemetry ├── README.md ├── class-telemetry-client.php ├── class-telemetry-event-queue.php ├── class-telemetry-event.php ├── class-telemetry-system.php ├── class-telemetry.php ├── pendo │ ├── class-pendo-javascript-library.php │ ├── class-pendo-track-client.php │ ├── class-pendo-track-event-dto.php │ ├── class-pendo-track-event.php │ ├── class-pendo.php │ ├── js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── pendo-agent.js │ │ └── pendo-agent.mjs │ └── pendo-utils.php └── tracks │ ├── class-tracks-client.php │ ├── class-tracks-event-dto.php │ ├── class-tracks-event.php │ ├── class-tracks.php │ └── tracks-utils.php ├── tests ├── 001-core │ └── test-constants.php ├── admin-notice │ ├── conditions │ │ ├── test-class-capability-condition.php │ │ ├── test-class-date-condition.php │ │ └── test-class-wp-version-condition.php │ ├── test-admin-notice.php │ ├── test-class-admin-notice-controller.php │ └── test-class-admin-notice.php ├── bootstrap.php ├── cache │ ├── mock-header.php │ └── test-vary-cache.php ├── class-speedup-isolated-wp-tests.php ├── class-vip-test-listener.php ├── config │ ├── test-site-details-index.php │ └── test-sync.php ├── files │ ├── acl │ │ ├── mock-header.php │ │ ├── test-acl.php │ │ ├── test-pre-wp-utils.php │ │ ├── test-restrict-all-files.php │ │ └── test-restrict-unpublished-files.php │ ├── test-api-client.php │ ├── test-curl-streamer.php │ ├── test-fix-block-img-tag-sizes.php │ ├── test-image-sizes.php │ ├── test-image.php │ ├── test-path-utils.php │ ├── test-vip-filesystem-api-cache.php │ ├── test-vip-filesystem-local-stream-wrapper.php │ ├── test-vip-filesystem.php │ ├── test-wp-filesystem-vip-uploads.php │ └── test-wp-filesystem-vip.php ├── fixtures │ ├── client-mu-plugins │ │ ├── empty │ │ │ └── .nodelete │ │ └── valid │ │ │ ├── 0-first-plugin.php │ │ │ ├── index.php │ │ │ ├── not-php.txt │ │ │ ├── with-headers.php │ │ │ └── z-last-plugin.php │ ├── files │ │ ├── stream.txt │ │ ├── upload.jpg │ │ └── upload.some-unmatched-extension │ ├── image.jpg │ ├── jetpack │ │ └── class-jetpack-sync-immediately.php │ ├── pdf.pdf │ └── plugin-fixes │ │ └── mock-ninja-forms-class.php ├── integrations │ ├── fake-integration.php │ ├── test-enterprise-search.php │ ├── test-integration-utils.php │ ├── test-integration-vip-config.php │ ├── test-integration.php │ ├── test-integrations-public-api.php │ ├── test-integrations.php │ ├── test-parsely.php │ ├── test-real-time-collaboration.php │ ├── test-remote-data-blocks.php │ ├── test-vip-block-data-api.php │ ├── test-vip-governance.php │ └── test-vip-security-boost.php ├── lib │ ├── environment │ │ └── test-class-environment.php │ ├── feature │ │ ├── test-class-feature-ms.php │ │ └── test-class-feature.php │ ├── helpers │ │ ├── test-app.php │ │ ├── test-environment.php │ │ └── test-wp-cli-db.php │ ├── mock-wpdb.php │ ├── proxy │ │ ├── class-ip-forward-test-base.php │ │ ├── test-fix-remote-address-from-ip-trail-with-verification-key.php │ │ ├── test-fix-remote-address-with-verification-key.php │ │ ├── test-get-ip-addresses-from-ip-trail.php │ │ ├── test-get-proxy-verification-key.php │ │ ├── test-ip-forward.php │ │ └── test-is-valid-proxy-verification-key.php │ ├── test-db-multiple-datasets-config.php │ ├── test-vip-request-block.php │ └── utils │ │ ├── class-testable-alerts.php │ │ ├── context.php │ │ └── test-alerts.php ├── logstash │ ├── class-testable-logger.php │ └── test-logger.php ├── mock-constants.php ├── mock-header.php ├── parsely │ └── test-mu-parsely-integration.php ├── performance │ ├── test-class-mime-types-caching.php │ └── test-do-pings.php ├── prometheus-collectors │ ├── test-class-potential-multi-dataset-queries-collector.php │ └── test-class-user-stats-collector.php ├── prometheus │ ├── class-plugin-helper.php │ └── test-prometheus.php ├── proxy-helpers.php ├── search │ ├── data │ │ └── test_fixtures.yml │ ├── includes │ │ └── classes │ │ │ ├── mock-header.php │ │ │ ├── queue │ │ │ └── test-class-cron.php │ │ │ ├── test-class-health.php │ │ │ ├── test-class-healthjob.php │ │ │ ├── test-class-queue.php │ │ │ ├── test-class-search.php │ │ │ ├── test-class-settingshealthjob.php │ │ │ ├── test-class-versioning.php │ │ │ ├── test-class-versioningcleanupjob.php │ │ │ ├── test-concurrency-limiter.php │ │ │ └── test-syncmanager-helper.php │ └── test-search-dev-tools.php ├── security │ ├── test-class-private-sites.php │ ├── test-lockout.php │ ├── test-login-error.php │ ├── test-machine-user.php │ └── test-password.php ├── telemetry │ ├── pendo │ │ ├── test-class-pendo-client.php │ │ ├── test-class-pendo-javascript-library.php │ │ ├── test-class-pendo-track-event.php │ │ ├── test-class-pendo.php │ │ └── test-pendo-utils.php │ ├── test-class-telemetry-event-queue.php │ ├── test-class-telemetry.php │ └── tracks │ │ ├── test-class-tracks-client.php │ │ ├── test-class-tracks-event-dto.php │ │ ├── test-class-tracks-event.php │ │ ├── test-class-tracks.php │ │ └── test-tracks-utils.php ├── test-a8c-files-utils.php ├── test-cache-purge-term.php ├── test-cache-ttl-manager-rest.php ├── test-check-for-404-and-remove-cache-headers.php ├── test-client-mu-plugins.php ├── test-core-filters.php ├── test-core.php ├── test-divi-compatibility.php ├── test-jetpack.php ├── test-lib-proxy-ip-utils.php ├── test-performance-lastpostmodified.php ├── test-plugin-fixes.php ├── test-schema.php ├── test-security.php ├── test-stats.php ├── test-vip-cache-manager.php ├── test-vip-integrations.php ├── test-vip-jetpack.php ├── test-vip-mail.php ├── test-vip-plugins.php ├── test-vip-rest-api.php ├── test-wp-cli-ssl.php ├── trait-assertfiledirectory.php ├── trait-assertnumerictype.php ├── trait-expectexception.php ├── trait-expectphpexception.php ├── utils │ ├── parsely-utils.php │ └── utils.php ├── vip-dashboard │ └── test-vip-dashboard.php ├── vip-feed-cache │ ├── test-vip-feed-cache.php │ └── test.rss ├── vip-helpers │ ├── test-class-user-cleanup.php │ ├── test-jetpack-ip-manager.php │ ├── test-vip-roles.php │ ├── test-wpcom-vip-load-plugin.php │ ├── test-wpcom-vip-set-image-quality-for-url.php │ ├── test-wpcomvip-restrictions.php │ └── vip-utils │ │ ├── include-vip-utils-include-plugin.php │ │ ├── test-vip-utils-include-plugin.php │ │ ├── test-vip-utils-is-vip-convenience-domain.php │ │ ├── test-vip-utils-remote-requests.php │ │ ├── test-vip-utils-resized-attachments.php │ │ ├── test-vip-utils-vip-is-jetpack-request.php │ │ ├── test-vip-utils-vip-powered-wpcom-url.php │ │ ├── test-vip-utils-wpcom-vip-file-get-contents.php │ │ ├── test-vip-utils-wpcom-vip-is-feedservice-ua.php │ │ └── test-wpcom-vip-should-load-plugins.php ├── vip-jetpack │ └── connection-pilot │ │ └── test-class-jetpack-connection-pilot.php ├── vip-parsely │ └── Telemetry │ │ └── Tracks │ │ └── test-class-tracks.php ├── vip-support │ ├── test-role.php │ └── test-user.php └── wpcom-vip-two-factor │ └── test-sms-provider.php ├── two-factor.php ├── vip-cache-manager.php ├── vip-cache-manager ├── api.php ├── js │ └── admin-bar.js ├── ttl-manager.php └── vip-cache-manager.php ├── vip-dashboard.php ├── vip-dashboard ├── assets │ ├── css │ │ └── style.css │ ├── img │ │ └── wpcom-vip-logo.svg │ └── js │ │ └── vip-dashboard.js ├── components │ ├── header.php │ ├── widget-contact.php │ └── widget-welcome.php └── vip-dashboard.php ├── vip-feed-cache.php ├── vip-feed-cache ├── class-vip-go-feed-cache.php └── class-vip-go-feed-transient.php ├── vip-helpers ├── class-jetpack-ip-manager.php ├── class-user-cleanup.php ├── class-vip-backup-user-role-cli.php ├── class-wpcomvip-restrictions.php ├── images │ ├── vip-powered-dark-long.png │ ├── vip-powered-dark-normal.png │ ├── vip-powered-dark-small.png │ ├── vip-powered-light-long.png │ ├── vip-powered-light-normal.png │ └── vip-powered-light-small.png ├── sandbox.php ├── vip-caching.php ├── vip-clean-term-cache.php ├── vip-deprecated.php ├── vip-elasticsearch.php ├── vip-media.php ├── vip-migrations.php ├── vip-mods.php ├── vip-newrelic.php ├── vip-non-production.php ├── vip-notoptions-mitigation.php ├── vip-permastructs.php ├── vip-roles.php ├── vip-stats.php ├── vip-syndication-cache.php ├── vip-utils.php └── vip-wp-cli.php ├── vip-integrations.php ├── vip-integrations └── .gitkeep ├── vip-jetpack ├── connection-pilot │ ├── class-jetpack-connection-attendant.php │ ├── class-jetpack-connection-cli.php │ ├── class-jetpack-connection-controls.php │ └── class-jetpack-connection-pilot.php ├── css │ ├── admin-settings.css │ └── mandatory-settings.css ├── jetpack-mandatory.php ├── jetpack-sso-dummy.php └── vip-jetpack.php ├── vip-light-term-count.php ├── vip-mail.php ├── vip-parsely ├── Telemetry │ ├── Events │ │ ├── track-delete-widget.php │ │ ├── track-option-updated.php │ │ ├── track-settings-page-loaded.php │ │ └── track-widget-updated.php │ ├── Tracks │ │ ├── class-tracks-event.php │ │ └── class-tracks.php │ ├── class-telemetry-system.php │ └── class-telemetry.php └── vip-parsely.php ├── vip-plugins.php ├── vip-plugins ├── css │ └── plugins-ui.css ├── js │ └── plugins-ui.js └── vip-plugins.php ├── vip-rest-api.php ├── vip-support.php ├── vip-support ├── LICENSE ├── class-vip-support-cli.php ├── class-vip-support-role.php ├── class-vip-support-user.php ├── readme.txt └── vip-support.php ├── vip-woocommerce.php ├── vip-woocommerce ├── logging.php └── vip-woocommerce.php ├── vip-wp-cli-to-cron └── limit-wp-cli-command.php ├── wordpress-importer.php ├── wordpress-importer ├── class-wp-import.php ├── compat.php ├── parsers.php ├── parsers │ ├── class-wxr-parser-regex.php │ ├── class-wxr-parser-simplexml.php │ ├── class-wxr-parser-xml.php │ └── class-wxr-parser.php ├── readme.txt └── wordpress-importer.php ├── wp-cli.php ├── wp-cli ├── README.md ├── alloptions.php ├── class-async-scheduler-command.php ├── class-option-autoload.php ├── class-vip-subsites-cli-command.php ├── class-vip-user-cli-command.php ├── media-regenerate.php ├── vip-cache.php ├── vip-data-cleanup.php ├── vip-filesystem.php ├── vip-fixers.php ├── vip-go-convert-to-utf8mb4.php ├── vip-migrations.php └── vip-two-factor.php ├── wp-parsely.php ├── wpcom-vip-two-factor ├── is-jetpack-sso.php ├── set-providers.php ├── sms-provider.php └── twilio │ ├── class-two-factor-twilio-sms-api.php │ ├── class-two-factor-twilio-verify-api.php │ └── interface-two-factor-twilio-sms.php └── z-client-mu-plugins.php /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/.devcontainer/docker-compose.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/.stale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/.github/.stale -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/actions/prepare-source/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/.github/actions/prepare-source/action.yml -------------------------------------------------------------------------------- /.github/actions/run-wp-tests/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/.github/actions/run-wp-tests/action.yml -------------------------------------------------------------------------------- /.github/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/.github/codecov.yml -------------------------------------------------------------------------------- /.github/codeql-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/.github/codeql-config.yml -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build-docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/.github/workflows/build-docker-image.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/core-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/.github/workflows/core-tests.yml -------------------------------------------------------------------------------- /.github/workflows/coverage-develop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/.github/workflows/coverage-develop.yml -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/e2e.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/.github/workflows/e2e.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/parsely.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/.github/workflows/parsely.yml -------------------------------------------------------------------------------- /.github/workflows/release-prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/.github/workflows/release-prod.yml -------------------------------------------------------------------------------- /.github/workflows/release-staging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/.github/workflows/release-staging.yml -------------------------------------------------------------------------------- /.github/workflows/search-dev-tools.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/.github/workflows/search-dev-tools.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/.gitmodules -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | npx lint-staged 4 | -------------------------------------------------------------------------------- /.lintstagedrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/.lintstagedrc -------------------------------------------------------------------------------- /.sonarcloud.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/.sonarcloud.properties -------------------------------------------------------------------------------- /000-debug/0-load.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/000-debug/0-load.php -------------------------------------------------------------------------------- /000-debug/debug-mode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/000-debug/debug-mode.php -------------------------------------------------------------------------------- /000-debug/logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/000-debug/logger.php -------------------------------------------------------------------------------- /000-debug/not-proxied-flag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/000-debug/not-proxied-flag.php -------------------------------------------------------------------------------- /000-pre-vip-config/requires.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/000-pre-vip-config/requires.php -------------------------------------------------------------------------------- /000-vip-init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/000-vip-init.php -------------------------------------------------------------------------------- /001-core.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/001-core.php -------------------------------------------------------------------------------- /001-core/constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/001-core/constants.php -------------------------------------------------------------------------------- /001-core/options-api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/001-core/options-api.php -------------------------------------------------------------------------------- /001-core/privacy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/001-core/privacy.php -------------------------------------------------------------------------------- /001-cron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/001-cron.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/LICENSE -------------------------------------------------------------------------------- /README-PUBLIC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/README-PUBLIC.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/SECURITY.md -------------------------------------------------------------------------------- /__tests__/e2e/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/__tests__/e2e/.eslintrc.js -------------------------------------------------------------------------------- /__tests__/e2e/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/__tests__/e2e/.gitignore -------------------------------------------------------------------------------- /__tests__/e2e/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/__tests__/e2e/README.md -------------------------------------------------------------------------------- /__tests__/e2e/bin/setup-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/__tests__/e2e/bin/setup-env.sh -------------------------------------------------------------------------------- /__tests__/e2e/lib/asana-pharse.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/__tests__/e2e/lib/asana-pharse.d.ts -------------------------------------------------------------------------------- /__tests__/e2e/lib/data-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/__tests__/e2e/lib/data-helper.ts -------------------------------------------------------------------------------- /__tests__/e2e/lib/global-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/__tests__/e2e/lib/global-setup.ts -------------------------------------------------------------------------------- /__tests__/e2e/lib/pages/lost-password-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/__tests__/e2e/lib/pages/lost-password-page.ts -------------------------------------------------------------------------------- /__tests__/e2e/lib/pages/media-upload-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/__tests__/e2e/lib/pages/media-upload-page.ts -------------------------------------------------------------------------------- /__tests__/e2e/lib/pages/page-list-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/__tests__/e2e/lib/pages/page-list-page.ts -------------------------------------------------------------------------------- /__tests__/e2e/lib/pages/post-list-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/__tests__/e2e/lib/pages/post-list-page.ts -------------------------------------------------------------------------------- /__tests__/e2e/lib/pages/published-page-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/__tests__/e2e/lib/pages/published-page-page.ts -------------------------------------------------------------------------------- /__tests__/e2e/lib/pages/published-post-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/__tests__/e2e/lib/pages/published-post-page.ts -------------------------------------------------------------------------------- /__tests__/e2e/lib/pages/search-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/__tests__/e2e/lib/pages/search-page.ts -------------------------------------------------------------------------------- /__tests__/e2e/lib/pages/settings-writing-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/__tests__/e2e/lib/pages/settings-writing-page.ts -------------------------------------------------------------------------------- /__tests__/e2e/lib/pages/wp-admin-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/__tests__/e2e/lib/pages/wp-admin-page.ts -------------------------------------------------------------------------------- /__tests__/e2e/lib/pages/wp-classic-editor-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/__tests__/e2e/lib/pages/wp-classic-editor-page.ts -------------------------------------------------------------------------------- /__tests__/e2e/lib/pages/wp-editor-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/__tests__/e2e/lib/pages/wp-editor-page.ts -------------------------------------------------------------------------------- /__tests__/e2e/lib/pages/wp-login-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/__tests__/e2e/lib/pages/wp-login-page.ts -------------------------------------------------------------------------------- /__tests__/e2e/lib/playwright-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/__tests__/e2e/lib/playwright-helpers.ts -------------------------------------------------------------------------------- /__tests__/e2e/lib/wp-api-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/__tests__/e2e/lib/wp-api-helper.ts -------------------------------------------------------------------------------- /__tests__/e2e/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/__tests__/e2e/package-lock.json -------------------------------------------------------------------------------- /__tests__/e2e/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/__tests__/e2e/package.json -------------------------------------------------------------------------------- /__tests__/e2e/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/__tests__/e2e/playwright.config.ts -------------------------------------------------------------------------------- /__tests__/e2e/specs/generic.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/__tests__/e2e/specs/generic.spec.ts -------------------------------------------------------------------------------- /__tests__/e2e/specs/media__add.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/__tests__/e2e/specs/media__add.spec.ts -------------------------------------------------------------------------------- /__tests__/e2e/specs/page__edit.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/__tests__/e2e/specs/page__edit.spec.ts -------------------------------------------------------------------------------- /__tests__/e2e/specs/page__publish.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/__tests__/e2e/specs/page__publish.spec.ts -------------------------------------------------------------------------------- /__tests__/e2e/specs/page_classic__publish.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/__tests__/e2e/specs/page_classic__publish.spec.ts -------------------------------------------------------------------------------- /__tests__/e2e/specs/post__edit.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/__tests__/e2e/specs/post__edit.spec.ts -------------------------------------------------------------------------------- /__tests__/e2e/specs/post__publish.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/__tests__/e2e/specs/post__publish.spec.ts -------------------------------------------------------------------------------- /__tests__/e2e/specs/post_classic__publish.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/__tests__/e2e/specs/post_classic__publish.spec.ts -------------------------------------------------------------------------------- /__tests__/e2e/specs/searchdevtools.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/__tests__/e2e/specs/searchdevtools.spec.ts -------------------------------------------------------------------------------- /__tests__/e2e/specs/security.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/__tests__/e2e/specs/security.spec.ts -------------------------------------------------------------------------------- /__tests__/e2e/test_media/image_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/__tests__/e2e/test_media/image_01.jpg -------------------------------------------------------------------------------- /__tests__/e2e/test_media/image_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/__tests__/e2e/test_media/image_02.jpg -------------------------------------------------------------------------------- /__tests__/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/__tests__/e2e/tsconfig.json -------------------------------------------------------------------------------- /a8c-files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/a8c-files.php -------------------------------------------------------------------------------- /admin-notice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/admin-notice.php -------------------------------------------------------------------------------- /admin-notice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/admin-notice/README.md -------------------------------------------------------------------------------- /admin-notice/admin-notice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/admin-notice/admin-notice.php -------------------------------------------------------------------------------- /admin-notice/class-admin-notice-controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/admin-notice/class-admin-notice-controller.php -------------------------------------------------------------------------------- /admin-notice/class-admin-notice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/admin-notice/class-admin-notice.php -------------------------------------------------------------------------------- /admin-notice/conditions/class-date-condition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/admin-notice/conditions/class-date-condition.php -------------------------------------------------------------------------------- /admin-notice/conditions/interface-condition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/admin-notice/conditions/interface-condition.php -------------------------------------------------------------------------------- /admin-notice/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/admin-notice/js/script.js -------------------------------------------------------------------------------- /advanced-post-cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/advanced-post-cache.php -------------------------------------------------------------------------------- /akismet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/akismet.php -------------------------------------------------------------------------------- /akismet/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/akismet/.htaccess -------------------------------------------------------------------------------- /akismet/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/akismet/LICENSE.txt -------------------------------------------------------------------------------- /akismet/_inc/akismet-admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/akismet/_inc/akismet-admin.css -------------------------------------------------------------------------------- /akismet/_inc/akismet-admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/akismet/_inc/akismet-admin.js -------------------------------------------------------------------------------- /akismet/_inc/akismet-frontend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/akismet/_inc/akismet-frontend.js -------------------------------------------------------------------------------- /akismet/_inc/akismet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/akismet/_inc/akismet.css -------------------------------------------------------------------------------- /akismet/_inc/akismet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/akismet/_inc/akismet.js -------------------------------------------------------------------------------- /akismet/_inc/fonts/inter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/akismet/_inc/fonts/inter.css -------------------------------------------------------------------------------- /akismet/_inc/img/akismet-refresh-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/akismet/_inc/img/akismet-refresh-logo.svg -------------------------------------------------------------------------------- /akismet/_inc/img/akismet-refresh-logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/akismet/_inc/img/akismet-refresh-logo@2x.png -------------------------------------------------------------------------------- /akismet/_inc/img/arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/akismet/_inc/img/arrow-left.svg -------------------------------------------------------------------------------- /akismet/_inc/img/icon-external.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/akismet/_inc/img/icon-external.svg -------------------------------------------------------------------------------- /akismet/_inc/img/logo-a-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/akismet/_inc/img/logo-a-2x.png -------------------------------------------------------------------------------- /akismet/_inc/img/logo-full-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/akismet/_inc/img/logo-full-2x.png -------------------------------------------------------------------------------- /akismet/_inc/rtl/akismet-admin-rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/akismet/_inc/rtl/akismet-admin-rtl.css -------------------------------------------------------------------------------- /akismet/_inc/rtl/akismet-rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/akismet/_inc/rtl/akismet-rtl.css -------------------------------------------------------------------------------- /akismet/akismet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/akismet/akismet.php -------------------------------------------------------------------------------- /akismet/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/akismet/changelog.txt -------------------------------------------------------------------------------- /akismet/class.akismet-admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/akismet/class.akismet-admin.php -------------------------------------------------------------------------------- /akismet/class.akismet-cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/akismet/class.akismet-cli.php -------------------------------------------------------------------------------- /akismet/class.akismet-rest-api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/akismet/class.akismet-rest-api.php -------------------------------------------------------------------------------- /akismet/class.akismet-widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/akismet/class.akismet-widget.php -------------------------------------------------------------------------------- /akismet/class.akismet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/akismet/class.akismet.php -------------------------------------------------------------------------------- /akismet/index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /query-monitor/assets/icons/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/assets/icons/edit.svg -------------------------------------------------------------------------------- /query-monitor/assets/icons/external.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/assets/icons/external.svg -------------------------------------------------------------------------------- /query-monitor/assets/icons/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/assets/icons/filter.svg -------------------------------------------------------------------------------- /query-monitor/assets/icons/image-rotate-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/assets/icons/image-rotate-left.svg -------------------------------------------------------------------------------- /query-monitor/assets/icons/image-rotate-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/assets/icons/image-rotate-right.svg -------------------------------------------------------------------------------- /query-monitor/assets/icons/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/assets/icons/info.svg -------------------------------------------------------------------------------- /query-monitor/assets/icons/no-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/assets/icons/no-alt.svg -------------------------------------------------------------------------------- /query-monitor/assets/icons/warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/assets/icons/warning.svg -------------------------------------------------------------------------------- /query-monitor/assets/icons/yes-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/assets/icons/yes-alt.svg -------------------------------------------------------------------------------- /query-monitor/assets/query-monitor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/assets/query-monitor.css -------------------------------------------------------------------------------- /query-monitor/assets/query-monitor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/assets/query-monitor.js -------------------------------------------------------------------------------- /query-monitor/classes/Activation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/classes/Activation.php -------------------------------------------------------------------------------- /query-monitor/classes/Backtrace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/classes/Backtrace.php -------------------------------------------------------------------------------- /query-monitor/classes/CLI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/classes/CLI.php -------------------------------------------------------------------------------- /query-monitor/classes/Collector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/classes/Collector.php -------------------------------------------------------------------------------- /query-monitor/classes/Collector_Assets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/classes/Collector_Assets.php -------------------------------------------------------------------------------- /query-monitor/classes/Collectors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/classes/Collectors.php -------------------------------------------------------------------------------- /query-monitor/classes/Component.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/classes/Component.php -------------------------------------------------------------------------------- /query-monitor/classes/Component_Altis_Vendor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/classes/Component_Altis_Vendor.php -------------------------------------------------------------------------------- /query-monitor/classes/Component_Core.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/classes/Component_Core.php -------------------------------------------------------------------------------- /query-monitor/classes/Component_Dropin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/classes/Component_Dropin.php -------------------------------------------------------------------------------- /query-monitor/classes/Component_MU_Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/classes/Component_MU_Plugin.php -------------------------------------------------------------------------------- /query-monitor/classes/Component_MU_Vendor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/classes/Component_MU_Vendor.php -------------------------------------------------------------------------------- /query-monitor/classes/Component_Other.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/classes/Component_Other.php -------------------------------------------------------------------------------- /query-monitor/classes/Component_PHP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/classes/Component_PHP.php -------------------------------------------------------------------------------- /query-monitor/classes/Component_Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/classes/Component_Plugin.php -------------------------------------------------------------------------------- /query-monitor/classes/Component_Stylesheet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/classes/Component_Stylesheet.php -------------------------------------------------------------------------------- /query-monitor/classes/Component_Template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/classes/Component_Template.php -------------------------------------------------------------------------------- /query-monitor/classes/Component_Unknown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/classes/Component_Unknown.php -------------------------------------------------------------------------------- /query-monitor/classes/Component_VIP_Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/classes/Component_VIP_Plugin.php -------------------------------------------------------------------------------- /query-monitor/classes/DB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/classes/DB.php -------------------------------------------------------------------------------- /query-monitor/classes/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/classes/Data.php -------------------------------------------------------------------------------- /query-monitor/classes/DataCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/classes/DataCollector.php -------------------------------------------------------------------------------- /query-monitor/classes/Deprecated_Argument_Run.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/classes/Deprecated_Argument_Run.php -------------------------------------------------------------------------------- /query-monitor/classes/Deprecated_Class_Run.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/classes/Deprecated_Class_Run.php -------------------------------------------------------------------------------- /query-monitor/classes/Deprecated_Constructor_Run.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/classes/Deprecated_Constructor_Run.php -------------------------------------------------------------------------------- /query-monitor/classes/Deprecated_File_Included.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/classes/Deprecated_File_Included.php -------------------------------------------------------------------------------- /query-monitor/classes/Deprecated_Function_Run.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/classes/Deprecated_Function_Run.php -------------------------------------------------------------------------------- /query-monitor/classes/Deprecated_Hook_Run.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/classes/Deprecated_Hook_Run.php -------------------------------------------------------------------------------- /query-monitor/classes/Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/classes/Dispatcher.php -------------------------------------------------------------------------------- /query-monitor/classes/Dispatchers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/classes/Dispatchers.php -------------------------------------------------------------------------------- /query-monitor/classes/Doing_It_Wrong_Run.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/classes/Doing_It_Wrong_Run.php -------------------------------------------------------------------------------- /query-monitor/classes/Hook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/classes/Hook.php -------------------------------------------------------------------------------- /query-monitor/classes/Output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/classes/Output.php -------------------------------------------------------------------------------- /query-monitor/classes/PHP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/classes/PHP.php -------------------------------------------------------------------------------- /query-monitor/classes/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/classes/Plugin.php -------------------------------------------------------------------------------- /query-monitor/classes/QM.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/classes/QM.php -------------------------------------------------------------------------------- /query-monitor/classes/QueryMonitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/classes/QueryMonitor.php -------------------------------------------------------------------------------- /query-monitor/classes/Timer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/classes/Timer.php -------------------------------------------------------------------------------- /query-monitor/classes/Util.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/classes/Util.php -------------------------------------------------------------------------------- /query-monitor/classes/Wrong.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/classes/Wrong.php -------------------------------------------------------------------------------- /query-monitor/classes/debug_bar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/classes/debug_bar.php -------------------------------------------------------------------------------- /query-monitor/classes/debug_bar_panel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/classes/debug_bar_panel.php -------------------------------------------------------------------------------- /query-monitor/collectors/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/collectors/admin.php -------------------------------------------------------------------------------- /query-monitor/collectors/assets_scripts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/collectors/assets_scripts.php -------------------------------------------------------------------------------- /query-monitor/collectors/assets_styles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/collectors/assets_styles.php -------------------------------------------------------------------------------- /query-monitor/collectors/block_editor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/collectors/block_editor.php -------------------------------------------------------------------------------- /query-monitor/collectors/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/collectors/cache.php -------------------------------------------------------------------------------- /query-monitor/collectors/caps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/collectors/caps.php -------------------------------------------------------------------------------- /query-monitor/collectors/conditionals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/collectors/conditionals.php -------------------------------------------------------------------------------- /query-monitor/collectors/db_callers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/collectors/db_callers.php -------------------------------------------------------------------------------- /query-monitor/collectors/db_components.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/collectors/db_components.php -------------------------------------------------------------------------------- /query-monitor/collectors/db_dupes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/collectors/db_dupes.php -------------------------------------------------------------------------------- /query-monitor/collectors/db_queries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/collectors/db_queries.php -------------------------------------------------------------------------------- /query-monitor/collectors/debug_bar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/collectors/debug_bar.php -------------------------------------------------------------------------------- /query-monitor/collectors/doing_it_wrong.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/collectors/doing_it_wrong.php -------------------------------------------------------------------------------- /query-monitor/collectors/environment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/collectors/environment.php -------------------------------------------------------------------------------- /query-monitor/collectors/hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/collectors/hooks.php -------------------------------------------------------------------------------- /query-monitor/collectors/http.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/collectors/http.php -------------------------------------------------------------------------------- /query-monitor/collectors/languages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/collectors/languages.php -------------------------------------------------------------------------------- /query-monitor/collectors/logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/collectors/logger.php -------------------------------------------------------------------------------- /query-monitor/collectors/multisite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/collectors/multisite.php -------------------------------------------------------------------------------- /query-monitor/collectors/overview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/collectors/overview.php -------------------------------------------------------------------------------- /query-monitor/collectors/php_errors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/collectors/php_errors.php -------------------------------------------------------------------------------- /query-monitor/collectors/raw_request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/collectors/raw_request.php -------------------------------------------------------------------------------- /query-monitor/collectors/redirects.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/collectors/redirects.php -------------------------------------------------------------------------------- /query-monitor/collectors/request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/collectors/request.php -------------------------------------------------------------------------------- /query-monitor/collectors/theme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/collectors/theme.php -------------------------------------------------------------------------------- /query-monitor/collectors/timing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/collectors/timing.php -------------------------------------------------------------------------------- /query-monitor/collectors/transients.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/collectors/transients.php -------------------------------------------------------------------------------- /query-monitor/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/composer.json -------------------------------------------------------------------------------- /query-monitor/data/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/data/admin.php -------------------------------------------------------------------------------- /query-monitor/data/assets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/data/assets.php -------------------------------------------------------------------------------- /query-monitor/data/block_editor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/data/block_editor.php -------------------------------------------------------------------------------- /query-monitor/data/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/data/cache.php -------------------------------------------------------------------------------- /query-monitor/data/caps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/data/caps.php -------------------------------------------------------------------------------- /query-monitor/data/conditionals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/data/conditionals.php -------------------------------------------------------------------------------- /query-monitor/data/db_callers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/data/db_callers.php -------------------------------------------------------------------------------- /query-monitor/data/db_components.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/data/db_components.php -------------------------------------------------------------------------------- /query-monitor/data/db_dupes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/data/db_dupes.php -------------------------------------------------------------------------------- /query-monitor/data/db_queries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/data/db_queries.php -------------------------------------------------------------------------------- /query-monitor/data/doing_it_wrong.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/data/doing_it_wrong.php -------------------------------------------------------------------------------- /query-monitor/data/environment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/data/environment.php -------------------------------------------------------------------------------- /query-monitor/data/fallback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/data/fallback.php -------------------------------------------------------------------------------- /query-monitor/data/hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/data/hooks.php -------------------------------------------------------------------------------- /query-monitor/data/http.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/data/http.php -------------------------------------------------------------------------------- /query-monitor/data/languages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/data/languages.php -------------------------------------------------------------------------------- /query-monitor/data/logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/data/logger.php -------------------------------------------------------------------------------- /query-monitor/data/multisite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/data/multisite.php -------------------------------------------------------------------------------- /query-monitor/data/overview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/data/overview.php -------------------------------------------------------------------------------- /query-monitor/data/php_errors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/data/php_errors.php -------------------------------------------------------------------------------- /query-monitor/data/raw_request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/data/raw_request.php -------------------------------------------------------------------------------- /query-monitor/data/redirect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/data/redirect.php -------------------------------------------------------------------------------- /query-monitor/data/request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/data/request.php -------------------------------------------------------------------------------- /query-monitor/data/theme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/data/theme.php -------------------------------------------------------------------------------- /query-monitor/data/timing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/data/timing.php -------------------------------------------------------------------------------- /query-monitor/data/transients.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/data/transients.php -------------------------------------------------------------------------------- /query-monitor/dispatchers/AJAX.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/dispatchers/AJAX.php -------------------------------------------------------------------------------- /query-monitor/dispatchers/Html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/dispatchers/Html.php -------------------------------------------------------------------------------- /query-monitor/dispatchers/REST.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/dispatchers/REST.php -------------------------------------------------------------------------------- /query-monitor/dispatchers/REST_Envelope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/dispatchers/REST_Envelope.php -------------------------------------------------------------------------------- /query-monitor/dispatchers/Redirect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/dispatchers/Redirect.php -------------------------------------------------------------------------------- /query-monitor/dispatchers/WP_Die.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/dispatchers/WP_Die.php -------------------------------------------------------------------------------- /query-monitor/output/Headers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/output/Headers.php -------------------------------------------------------------------------------- /query-monitor/output/Html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/output/Html.php -------------------------------------------------------------------------------- /query-monitor/output/Raw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/output/Raw.php -------------------------------------------------------------------------------- /query-monitor/output/headers/overview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/output/headers/overview.php -------------------------------------------------------------------------------- /query-monitor/output/headers/php_errors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/output/headers/php_errors.php -------------------------------------------------------------------------------- /query-monitor/output/headers/redirects.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/output/headers/redirects.php -------------------------------------------------------------------------------- /query-monitor/output/html/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/output/html/admin.php -------------------------------------------------------------------------------- /query-monitor/output/html/assets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/output/html/assets.php -------------------------------------------------------------------------------- /query-monitor/output/html/assets_scripts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/output/html/assets_scripts.php -------------------------------------------------------------------------------- /query-monitor/output/html/assets_styles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/output/html/assets_styles.php -------------------------------------------------------------------------------- /query-monitor/output/html/block_editor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/output/html/block_editor.php -------------------------------------------------------------------------------- /query-monitor/output/html/caps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/output/html/caps.php -------------------------------------------------------------------------------- /query-monitor/output/html/conditionals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/output/html/conditionals.php -------------------------------------------------------------------------------- /query-monitor/output/html/db_callers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/output/html/db_callers.php -------------------------------------------------------------------------------- /query-monitor/output/html/db_components.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/output/html/db_components.php -------------------------------------------------------------------------------- /query-monitor/output/html/db_dupes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/output/html/db_dupes.php -------------------------------------------------------------------------------- /query-monitor/output/html/db_queries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/output/html/db_queries.php -------------------------------------------------------------------------------- /query-monitor/output/html/debug_bar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/output/html/debug_bar.php -------------------------------------------------------------------------------- /query-monitor/output/html/doing_it_wrong.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/output/html/doing_it_wrong.php -------------------------------------------------------------------------------- /query-monitor/output/html/environment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/output/html/environment.php -------------------------------------------------------------------------------- /query-monitor/output/html/headers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/output/html/headers.php -------------------------------------------------------------------------------- /query-monitor/output/html/hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/output/html/hooks.php -------------------------------------------------------------------------------- /query-monitor/output/html/http.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/output/html/http.php -------------------------------------------------------------------------------- /query-monitor/output/html/languages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/output/html/languages.php -------------------------------------------------------------------------------- /query-monitor/output/html/logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/output/html/logger.php -------------------------------------------------------------------------------- /query-monitor/output/html/multisite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/output/html/multisite.php -------------------------------------------------------------------------------- /query-monitor/output/html/overview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/output/html/overview.php -------------------------------------------------------------------------------- /query-monitor/output/html/php_errors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/output/html/php_errors.php -------------------------------------------------------------------------------- /query-monitor/output/html/request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/output/html/request.php -------------------------------------------------------------------------------- /query-monitor/output/html/theme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/output/html/theme.php -------------------------------------------------------------------------------- /query-monitor/output/html/timing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/output/html/timing.php -------------------------------------------------------------------------------- /query-monitor/output/html/transients.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/output/html/transients.php -------------------------------------------------------------------------------- /query-monitor/output/raw/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/output/raw/cache.php -------------------------------------------------------------------------------- /query-monitor/output/raw/conditionals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/output/raw/conditionals.php -------------------------------------------------------------------------------- /query-monitor/output/raw/db_queries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/output/raw/db_queries.php -------------------------------------------------------------------------------- /query-monitor/output/raw/http.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/output/raw/http.php -------------------------------------------------------------------------------- /query-monitor/output/raw/logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/output/raw/logger.php -------------------------------------------------------------------------------- /query-monitor/output/raw/transients.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/output/raw/transients.php -------------------------------------------------------------------------------- /query-monitor/query-monitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/query-monitor.php -------------------------------------------------------------------------------- /query-monitor/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/readme.txt -------------------------------------------------------------------------------- /query-monitor/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/vendor/autoload.php -------------------------------------------------------------------------------- /query-monitor/vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /query-monitor/vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/vendor/composer/LICENSE -------------------------------------------------------------------------------- /query-monitor/vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /query-monitor/vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /query-monitor/vendor/composer/installed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/vendor/composer/installed.php -------------------------------------------------------------------------------- /query-monitor/vendor/composer/platform_check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/vendor/composer/platform_check.php -------------------------------------------------------------------------------- /query-monitor/wp-content/db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/query-monitor/wp-content/db.php -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/renovate.json -------------------------------------------------------------------------------- /rest-api/vip-endpoints.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/rest-api/vip-endpoints.php -------------------------------------------------------------------------------- /rewrite-rules-inspector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/rewrite-rules-inspector.php -------------------------------------------------------------------------------- /schema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/schema.php -------------------------------------------------------------------------------- /search/es-wp-query/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/es-wp-query/.gitignore -------------------------------------------------------------------------------- /search/es-wp-query/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/es-wp-query/.travis.yml -------------------------------------------------------------------------------- /search/es-wp-query/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/es-wp-query/README.md -------------------------------------------------------------------------------- /search/es-wp-query/adapters/vip-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/es-wp-query/adapters/vip-search.php -------------------------------------------------------------------------------- /search/es-wp-query/bin/install-es.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/es-wp-query/bin/install-es.sh -------------------------------------------------------------------------------- /search/es-wp-query/bin/install-wp-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/es-wp-query/bin/install-wp-tests.sh -------------------------------------------------------------------------------- /search/es-wp-query/class-es-wp-date-query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/es-wp-query/class-es-wp-date-query.php -------------------------------------------------------------------------------- /search/es-wp-query/class-es-wp-meta-query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/es-wp-query/class-es-wp-meta-query.php -------------------------------------------------------------------------------- /search/es-wp-query/class-es-wp-query-shoehorn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/es-wp-query/class-es-wp-query-shoehorn.php -------------------------------------------------------------------------------- /search/es-wp-query/class-es-wp-query-wrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/es-wp-query/class-es-wp-query-wrapper.php -------------------------------------------------------------------------------- /search/es-wp-query/class-es-wp-tax-query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/es-wp-query/class-es-wp-tax-query.php -------------------------------------------------------------------------------- /search/es-wp-query/es-wp-query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/es-wp-query/es-wp-query.php -------------------------------------------------------------------------------- /search/es-wp-query/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/es-wp-query/functions.php -------------------------------------------------------------------------------- /search/es-wp-query/multisite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/es-wp-query/multisite.xml -------------------------------------------------------------------------------- /search/es-wp-query/phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/es-wp-query/phpcs.xml.dist -------------------------------------------------------------------------------- /search/es-wp-query/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/es-wp-query/phpunit.xml.dist -------------------------------------------------------------------------------- /search/es-wp-query/tests/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/es-wp-query/tests/.DS_Store -------------------------------------------------------------------------------- /search/es-wp-query/tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/es-wp-query/tests/bootstrap.php -------------------------------------------------------------------------------- /search/es-wp-query/tests/query/author.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/es-wp-query/tests/query/author.php -------------------------------------------------------------------------------- /search/es-wp-query/tests/query/date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/es-wp-query/tests/query/date.php -------------------------------------------------------------------------------- /search/es-wp-query/tests/query/dateQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/es-wp-query/tests/query/dateQuery.php -------------------------------------------------------------------------------- /search/es-wp-query/tests/query/loggedIn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/es-wp-query/tests/query/loggedIn.php -------------------------------------------------------------------------------- /search/es-wp-query/tests/query/metaQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/es-wp-query/tests/query/metaQuery.php -------------------------------------------------------------------------------- /search/es-wp-query/tests/query/post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/es-wp-query/tests/query/post.php -------------------------------------------------------------------------------- /search/es-wp-query/tests/query/query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/es-wp-query/tests/query/query.php -------------------------------------------------------------------------------- /search/es-wp-query/tests/query/results.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/es-wp-query/tests/query/results.php -------------------------------------------------------------------------------- /search/es-wp-query/tests/query/shoehorn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/es-wp-query/tests/query/shoehorn.php -------------------------------------------------------------------------------- /search/es-wp-query/tests/query/taxQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/es-wp-query/tests/query/taxQuery.php -------------------------------------------------------------------------------- /search/includes/classes/class-cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/includes/classes/class-cache.php -------------------------------------------------------------------------------- /search/includes/classes/class-dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/includes/classes/class-dashboard.php -------------------------------------------------------------------------------- /search/includes/classes/class-fieldcountgaugejob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/includes/classes/class-fieldcountgaugejob.php -------------------------------------------------------------------------------- /search/includes/classes/class-health.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/includes/classes/class-health.php -------------------------------------------------------------------------------- /search/includes/classes/class-healthjob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/includes/classes/class-healthjob.php -------------------------------------------------------------------------------- /search/includes/classes/class-queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/includes/classes/class-queue.php -------------------------------------------------------------------------------- /search/includes/classes/class-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/includes/classes/class-search.php -------------------------------------------------------------------------------- /search/includes/classes/class-versioning.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/includes/classes/class-versioning.php -------------------------------------------------------------------------------- /search/includes/classes/queue/class-cron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/includes/classes/queue/class-cron.php -------------------------------------------------------------------------------- /search/includes/classes/queue/class-schema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/includes/classes/queue/class-schema.php -------------------------------------------------------------------------------- /search/includes/functions/ep-get-query-log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/includes/functions/ep-get-query-log.php -------------------------------------------------------------------------------- /search/includes/functions/utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/includes/functions/utils.php -------------------------------------------------------------------------------- /search/search-dev-tools/.babelrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/search-dev-tools/.babelrc.json -------------------------------------------------------------------------------- /search/search-dev-tools/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/search-dev-tools/.eslintrc.json -------------------------------------------------------------------------------- /search/search-dev-tools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/search-dev-tools/.gitignore -------------------------------------------------------------------------------- /search/search-dev-tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/search-dev-tools/README.md -------------------------------------------------------------------------------- /search/search-dev-tools/build/bundle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/search-dev-tools/build/bundle.css -------------------------------------------------------------------------------- /search/search-dev-tools/build/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/search-dev-tools/build/bundle.js -------------------------------------------------------------------------------- /search/search-dev-tools/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/search-dev-tools/package-lock.json -------------------------------------------------------------------------------- /search/search-dev-tools/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/search-dev-tools/package.json -------------------------------------------------------------------------------- /search/search-dev-tools/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/search-dev-tools/postcss.config.js -------------------------------------------------------------------------------- /search/search-dev-tools/search-dev-tools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/search-dev-tools/search-dev-tools.php -------------------------------------------------------------------------------- /search/search-dev-tools/src/assets/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/search-dev-tools/src/assets/close.svg -------------------------------------------------------------------------------- /search/search-dev-tools/src/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/search-dev-tools/src/assets/favicon.ico -------------------------------------------------------------------------------- /search/search-dev-tools/src/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/search-dev-tools/src/assets/icon.png -------------------------------------------------------------------------------- /search/search-dev-tools/src/assets/lg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/search-dev-tools/src/assets/lg.svg -------------------------------------------------------------------------------- /search/search-dev-tools/src/assets/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/search-dev-tools/src/assets/minus.svg -------------------------------------------------------------------------------- /search/search-dev-tools/src/assets/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/search-dev-tools/src/assets/plus.svg -------------------------------------------------------------------------------- /search/search-dev-tools/src/assets/wpvip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/search-dev-tools/src/assets/wpvip.svg -------------------------------------------------------------------------------- /search/search-dev-tools/src/components/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/search-dev-tools/src/components/app.js -------------------------------------------------------------------------------- /search/search-dev-tools/src/components/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/search-dev-tools/src/components/style.scss -------------------------------------------------------------------------------- /search/search-dev-tools/src/context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/search-dev-tools/src/context.js -------------------------------------------------------------------------------- /search/search-dev-tools/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/search-dev-tools/src/index.js -------------------------------------------------------------------------------- /search/search-dev-tools/src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/search-dev-tools/src/manifest.json -------------------------------------------------------------------------------- /search/search-dev-tools/src/style/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/search-dev-tools/src/style/mixins.scss -------------------------------------------------------------------------------- /search/search-dev-tools/src/style/prism.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/search-dev-tools/src/style/prism.scss -------------------------------------------------------------------------------- /search/search-dev-tools/src/style/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/search-dev-tools/src/style/style.scss -------------------------------------------------------------------------------- /search/search-dev-tools/src/style/vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/search-dev-tools/src/style/vars.scss -------------------------------------------------------------------------------- /search/search-dev-tools/src/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/search-dev-tools/src/template.html -------------------------------------------------------------------------------- /search/search-dev-tools/src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/search-dev-tools/src/utils.js -------------------------------------------------------------------------------- /search/search-dev-tools/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/search-dev-tools/webpack.config.js -------------------------------------------------------------------------------- /search/search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/search/search.php -------------------------------------------------------------------------------- /security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/security.php -------------------------------------------------------------------------------- /security/class-lockout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/security/class-lockout.php -------------------------------------------------------------------------------- /security/class-private-sites.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/security/class-private-sites.php -------------------------------------------------------------------------------- /security/js/password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/security/js/password.js -------------------------------------------------------------------------------- /security/login-error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/security/login-error.php -------------------------------------------------------------------------------- /security/machine-user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/security/machine-user.php -------------------------------------------------------------------------------- /security/password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/security/password.php -------------------------------------------------------------------------------- /shared-plugins/two-factor/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/shared-plugins/two-factor/LICENSE.md -------------------------------------------------------------------------------- /shared-plugins/two-factor/assets/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/shared-plugins/two-factor/assets/icon-128x128.png -------------------------------------------------------------------------------- /shared-plugins/two-factor/assets/icon-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/shared-plugins/two-factor/assets/icon-256x256.png -------------------------------------------------------------------------------- /shared-plugins/two-factor/assets/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/shared-plugins/two-factor/assets/icon.svg -------------------------------------------------------------------------------- /shared-plugins/two-factor/assets/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/shared-plugins/two-factor/assets/screenshot-1.png -------------------------------------------------------------------------------- /shared-plugins/two-factor/assets/screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/shared-plugins/two-factor/assets/screenshot-2.png -------------------------------------------------------------------------------- /shared-plugins/two-factor/assets/screenshot-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/shared-plugins/two-factor/assets/screenshot-3.png -------------------------------------------------------------------------------- /shared-plugins/two-factor/includes/Yubico/U2F.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/shared-plugins/two-factor/includes/Yubico/U2F.php -------------------------------------------------------------------------------- /shared-plugins/two-factor/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/shared-plugins/two-factor/readme.txt -------------------------------------------------------------------------------- /shared-plugins/two-factor/two-factor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/shared-plugins/two-factor/two-factor.php -------------------------------------------------------------------------------- /shared-plugins/two-factor/user-edit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/shared-plugins/two-factor/user-edit.css -------------------------------------------------------------------------------- /stats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/stats.php -------------------------------------------------------------------------------- /telemetry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/telemetry/README.md -------------------------------------------------------------------------------- /telemetry/class-telemetry-client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/telemetry/class-telemetry-client.php -------------------------------------------------------------------------------- /telemetry/class-telemetry-event-queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/telemetry/class-telemetry-event-queue.php -------------------------------------------------------------------------------- /telemetry/class-telemetry-event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/telemetry/class-telemetry-event.php -------------------------------------------------------------------------------- /telemetry/class-telemetry-system.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/telemetry/class-telemetry-system.php -------------------------------------------------------------------------------- /telemetry/class-telemetry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/telemetry/class-telemetry.php -------------------------------------------------------------------------------- /telemetry/pendo/class-pendo-track-client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/telemetry/pendo/class-pendo-track-client.php -------------------------------------------------------------------------------- /telemetry/pendo/class-pendo-track-event-dto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/telemetry/pendo/class-pendo-track-event-dto.php -------------------------------------------------------------------------------- /telemetry/pendo/class-pendo-track-event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/telemetry/pendo/class-pendo-track-event.php -------------------------------------------------------------------------------- /telemetry/pendo/class-pendo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/telemetry/pendo/class-pendo.php -------------------------------------------------------------------------------- /telemetry/pendo/js/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/telemetry/pendo/js/package-lock.json -------------------------------------------------------------------------------- /telemetry/pendo/js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/telemetry/pendo/js/package.json -------------------------------------------------------------------------------- /telemetry/pendo/js/pendo-agent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/telemetry/pendo/js/pendo-agent.js -------------------------------------------------------------------------------- /telemetry/pendo/js/pendo-agent.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/telemetry/pendo/js/pendo-agent.mjs -------------------------------------------------------------------------------- /telemetry/pendo/pendo-utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/telemetry/pendo/pendo-utils.php -------------------------------------------------------------------------------- /telemetry/tracks/class-tracks-client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/telemetry/tracks/class-tracks-client.php -------------------------------------------------------------------------------- /telemetry/tracks/class-tracks-event-dto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/telemetry/tracks/class-tracks-event-dto.php -------------------------------------------------------------------------------- /telemetry/tracks/class-tracks-event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/telemetry/tracks/class-tracks-event.php -------------------------------------------------------------------------------- /telemetry/tracks/class-tracks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/telemetry/tracks/class-tracks.php -------------------------------------------------------------------------------- /telemetry/tracks/tracks-utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/telemetry/tracks/tracks-utils.php -------------------------------------------------------------------------------- /tests/001-core/test-constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/tests/001-core/test-constants.php -------------------------------------------------------------------------------- /tests/admin-notice/test-admin-notice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/tests/admin-notice/test-admin-notice.php -------------------------------------------------------------------------------- /tests/admin-notice/test-class-admin-notice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/tests/admin-notice/test-class-admin-notice.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/cache/mock-header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/tests/cache/mock-header.php -------------------------------------------------------------------------------- /tests/cache/test-vary-cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/tests/cache/test-vary-cache.php -------------------------------------------------------------------------------- /tests/class-speedup-isolated-wp-tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/tests/class-speedup-isolated-wp-tests.php -------------------------------------------------------------------------------- /tests/class-vip-test-listener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/tests/class-vip-test-listener.php -------------------------------------------------------------------------------- /tests/config/test-site-details-index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/tests/config/test-site-details-index.php -------------------------------------------------------------------------------- /tests/config/test-sync.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/tests/config/test-sync.php -------------------------------------------------------------------------------- /tests/files/acl/mock-header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/tests/files/acl/mock-header.php -------------------------------------------------------------------------------- /tests/files/acl/test-acl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/tests/files/acl/test-acl.php -------------------------------------------------------------------------------- /tests/files/acl/test-pre-wp-utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/tests/files/acl/test-pre-wp-utils.php -------------------------------------------------------------------------------- /tests/files/acl/test-restrict-all-files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/tests/files/acl/test-restrict-all-files.php -------------------------------------------------------------------------------- /tests/files/test-api-client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/tests/files/test-api-client.php -------------------------------------------------------------------------------- /tests/files/test-curl-streamer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/tests/files/test-curl-streamer.php -------------------------------------------------------------------------------- /tests/files/test-fix-block-img-tag-sizes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/tests/files/test-fix-block-img-tag-sizes.php -------------------------------------------------------------------------------- /tests/files/test-image-sizes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/tests/files/test-image-sizes.php -------------------------------------------------------------------------------- /tests/files/test-image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/tests/files/test-image.php -------------------------------------------------------------------------------- /tests/files/test-path-utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/tests/files/test-path-utils.php -------------------------------------------------------------------------------- /tests/files/test-vip-filesystem-api-cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/tests/files/test-vip-filesystem-api-cache.php -------------------------------------------------------------------------------- /tests/files/test-vip-filesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/tests/files/test-vip-filesystem.php -------------------------------------------------------------------------------- /tests/files/test-wp-filesystem-vip-uploads.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/tests/files/test-wp-filesystem-vip-uploads.php -------------------------------------------------------------------------------- /tests/files/test-wp-filesystem-vip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-mu-plugins/HEAD/tests/files/test-wp-filesystem-vip.php -------------------------------------------------------------------------------- /tests/fixtures/client-mu-plugins/empty/.nodelete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/client-mu-plugins/valid/0-first-plugin.php: -------------------------------------------------------------------------------- 1 |