| Server IP : 27.254.66.5 / Your IP : 216.73.216.177 Web Server : Apache/2 System : Linux cs82.hostneverdie.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64 User : technic2 ( 1951) PHP Version : 7.4.30 Disable Function : apache_child_terminate, apache_setenv, define_syslog_variables, escapeshellarg, escapeshellcmd,exec, fp, fput, highlight_file, ini_alter, ini_restore, inject_code, passthru,phpAds_remoteInfo, phpAds_XmlRpc,phpAds_xmlrpcDecode, phpAds_xmlrpcEncode, popen, posix_getpwuid, posix_kill, posix_mkfifo, posix_setpgid, posix_setsid,posix_setuid, posix_setuid, posix_uname,proc_open,proc_close, proc_get_status, proc_nice, proc_terminate, shell_exec, syslog, system, xmlrpc_entity_decode, show_source,sleep,pcntl_exec,virtual,suexec,dbmopen,dl,symlink,disk_free_space,diskfreespace,leak MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/technic2/public_html/old-website/wp-content/plugins/jetpack/modules/ |
Upload File : |
<?php
/*
* Load module code that is needed even when a module isn't active.
* For example, if a module shouldn't be activatable unless certain conditions are met, the code belongs in this file.
*/
// Include extra tools that aren't modules, in a filterable way
$tools = array(
'theme-tools/social-links.php',
'theme-tools/random-redirect.php',
'theme-tools/featured-content.php',
'theme-tools/infinite-scroll.php',
'theme-tools/responsive-videos.php',
'theme-tools/site-logo.php',
'theme-tools/site-breadcrumbs.php',
'theme-tools/social-menu.php',
'theme-tools/content-options.php',
'custom-post-types/comics.php',
'custom-post-types/testimonial.php',
'custom-post-types/nova.php',
'theme-tools.php',
'seo-tools/jetpack-seo-utils.php',
'seo-tools/jetpack-seo-titles.php',
'seo-tools/jetpack-seo-posts.php',
'simple-payments/simple-payments.php',
'verification-tools/verification-tools-utils.php',
'woocommerce-analytics/wp-woocommerce-analytics.php',
'geo-location.php'
);
// Not every tool needs to be included if Jetpack is inactive and not in development mode
if ( ! Jetpack::is_active() && ! Jetpack::is_development_mode() ) {
$tools = array(
'seo-tools/jetpack-seo-utils.php',
'seo-tools/jetpack-seo-titles.php',
'seo-tools/jetpack-seo-posts.php',
);
}
/**
* Filter extra tools (not modules) to include.
*
* @since 2.4.0
* @since 5.4.0 can be used in multisite when Jetpack is not connected to WordPress.com and not in development mode.
*
* @param array $tools Array of extra tools to include.
*/
$jetpack_tools_to_include = apply_filters( 'jetpack_tools_to_include', $tools );
if ( ! empty( $jetpack_tools_to_include ) ) {
foreach ( $jetpack_tools_to_include as $tool ) {
if ( file_exists( JETPACK__PLUGIN_DIR . '/modules/' . $tool ) ) {
require_once( JETPACK__PLUGIN_DIR . '/modules/' . $tool );
}
}
}
/**
* Add the "(Jetpack)" suffix to the widget names
*/
function jetpack_widgets_add_suffix( $widget_name ) {
return sprintf( __( '%s (Jetpack)', 'jetpack' ), $widget_name );
}
add_filter( 'jetpack_widget_name', 'jetpack_widgets_add_suffix' );