tum/network_report_server/commit/30f7226d9aa1b14561d48e5309f57e811e38322f">30f7226d9a first commit лет назад: 2 strip-ansi 30f7226d9a first commit лет назад: 2 sucrase 30f7226d9a first commit лет назад: 2 supports-preserve-symlinks-flag 30f7226d9a first commit лет назад: 2 tailwind-color-palette 30f7226d9a first commit лет назад: 2 tailwindcss 30f7226d9a first commit лет назад: 2 thenify 30f7226d9a first commit лет назад: 2 thenify-all 30f7226d9a first commit лет назад: 2 to-regex-range 30f7226d9a first commit лет назад: 2 tr46 30f7226d9a first commit лет назад: 2 ts-interface-checker 30f7226d9a first commit лет назад: 2 uglify-js 30f7226d9a first commit лет назад: 2 underscore 30f7226d9a first commit лет назад: 2 upper-case 30f7226d9a first commit лет назад: 2 util-deprecate 30f7226d9a first commit лет назад: 2 valid-data-url 30f7226d9a first commit лет назад: 2 web-resource-inliner 30f7226d9a first commit лет назад: 2 webidl-conversions 30f7226d9a first commit лет назад: 2 whatwg-url 30f7226d9a first commit лет назад: 2 wrap-ansi 30f7226d9a first commit лет назад: 2 wrappy 30f7226d9a first commit лет назад: 2 y18n 30f7226d9a first commit лет назад: 2 yallist 30f7226d9a first commit лет назад: 2 yaml 30f7226d9a first commit лет назад: 2 yargs 30f7226d9a first commit лет назад: 2 yargs-parser 30f7226d9a first commit лет назад: 2 .yarn-integrity 30f7226d9a first commit лет назад: 2 tum/whitesports - Gogs: Simplico Git Service

Sin descripción

debug-bar.php 733B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * 3rd Party integration for Debug Bar.
  4. *
  5. * @package automattic/jetpack
  6. */
  7. /**
  8. * Checks if the search module is active, and if so, will initialize the singleton instance
  9. * of Jetpack_Search_Debug_Bar and add it to the array of debug bar panels.
  10. *
  11. * @param array $panels The array of debug bar panels.
  12. * @return array $panel The array of debug bar panels with our added panel.
  13. */
  14. function init_jetpack_search_debug_bar( $panels ) {
  15. if ( ! Jetpack::is_module_active( 'search' ) ) {
  16. return $panels;
  17. }
  18. require_once __DIR__ . '/debug-bar/class-jetpack-search-debug-bar.php';
  19. $panels[] = Jetpack_Search_Debug_Bar::instance();
  20. return $panels;
  21. }
  22. add_filter( 'debug_bar_panels', 'init_jetpack_search_debug_bar' );