Файловый менеджер - Редактировать - /home/bean7936/perfect-community.com/wp-content/plugins/secupress/free/modules/addons/tools.php
Назад
<?php defined( 'ABSPATH' ) or die( 'Something went wrong.' ); /** * Render a plugin card. * * @since 2.0 * @author Julio Potier * * @param (object) $plugin The plugin informations from wp.org * @return (string) The plugin card **/ function secupress_render_plugin_card( $plugin ) { // Quick sanity check. if ( ! is_object( $plugin ) ) { return false; } // Add thickbox for "More Details" link. wp_enqueue_script( 'thickbox' ); add_thickbox(); // Plugin Homepage. $plugin_url = $plugin->homepage; if ( ! $plugin_url ) { $plugin_url = 'https://wordpress.org/plugins/' . esc_attr( $plugin->slug ) . '/'; } // Icon SRC. $orders = array( 'svg' , '2x', '1x', 'default' ); foreach ( $orders as $order ) { if ( isset( $plugin->icons[ $order ] ) ) { $img_src = $plugin->icons[ $order ]; break; } } // Timestamp. $last_updated_timestamp = strtotime( $plugin->last_updated ); // Active Installs. if ( $plugin->active_installs >= 10000000 ) { $active_installs_text = _x( '10+ Million', 'Active plugin installations', 'secupress' ); } elseif ( $plugin->active_installs >= 1000000 ) { $active_installs_text = _x( '1+ Million', 'Active plugin installations', 'secupress' ); } else { $active_installs_text = number_format_i18n( $plugin->active_installs ) . '+'; } // Action button. $user_lang = substr( get_user_locale(), 0, 2 ) . '.'; $user_lang = $user_lang !== 'en.' ? $user_lang : ''; $action_link = sprintf( '<a class="button" href="https://%swordpress.org/plugins/%s/">%s</a>', $user_lang, $plugin->slug, __( 'Visit plugin page', 'secupress' ) ); $more_details = ''; if ( current_user_can( 'install_plugins' ) && current_user_can( 'update_plugins' ) ) { $details_link = 'plugin-install.php?tab=plugin-information&plugin=' . $plugin->slug . '&TB_iframe=true&width=600&height=550'; $more_details = '<li><a href=' . esc_url( $details_link ) .'" class="thickbox open-plugin-details-modal" aria-label="' . esc_attr( sprintf( __( 'More information about %s', 'secupress' ), $plugin->name ) ) . '" data-title="' . esc_attr( $plugin->name ) . '">' . __( 'More Details', 'secupress' ) . '</a></li>'; $status = install_plugin_install_status( $plugin ); switch ( $status['status'] ) { case 'install': if ( $status['url'] ) { /* translators: 1: Plugin name and version. */ $action_link = '<a class="install-now button" data-slug="' . esc_attr( $plugin->slug ) . '" href="' . esc_url( $status['url'] ) . '" aria-label="' . esc_attr( sprintf( __( 'Install %s now', 'secupress' ), $plugin->name ) ) . '" data-name="' . esc_attr( $plugin->name ) . '">' . __( 'Install Now', 'secupress' ) . '</a>'; } break; case 'update_available': if ( $status['url'] ) { /* translators: 1: Plugin name and version */ $action_link = '<a class="update-now button aria-button-if-js" data-plugin="' . esc_attr( $status['file'] ) . '" data-slug="' . esc_attr( $plugin->slug ) . '" href="' . esc_url( $status['url'] ) . '" aria-label="' . esc_attr( sprintf( __( 'Update %s now', 'secupress' ), $plugin->name ) ) . '" data-name="' . esc_attr( $plugin->name ) . '">' . __( 'Update Now', 'secupress' ) . '</a>'; } break; case 'latest_installed': case 'newer_installed': if ( secupress_is_plugin_active( $status['file'] ) ) { $action_link = '<button type="button" class="button button-disabled" disabled="disabled">' . _x( 'Active', 'plugin', 'secupress' ) . '</button>'; } elseif ( current_user_can( 'activate_plugin', $status['file'] ) ) { $button_text = _x( 'Activate', 'verb', 'secupress' ); /* translators: %s: Plugin name */ $button_label = _x( 'Activate %s', 'plugin', 'secupress' ); $activate_url = add_query_arg( array( '_wpnonce' => wp_create_nonce( 'activate-plugin_' . $status['file'] ), 'action' => 'activate', 'plugin' => $status['file'], ), network_admin_url( 'plugins.php' ) ); if ( is_network_admin() ) { $button_text = _x( 'Network Activate', 'plugin', 'secupress' ); /* translators: %s: Plugin name */ $button_label = _x( 'Network Activate %s', 'plugin', 'secupress' ); $activate_url = add_query_arg( array( 'networkwide' => 1 ), $activate_url ); } $action_link = sprintf( '<a href="%1$s" class="button activate-now" aria-label="%2$s">%3$s</a>', esc_url( $activate_url ), esc_attr( sprintf( $button_label, $plugin->name ) ), $button_text ); } else { $action_link = '<button type="button" class="button button-disabled" disabled="disabled">' . _x( 'Installed', 'plugin', 'secupress' ) . '</button>'; } break; } } ob_start(); ?> <div class="wp-list-table widefat plugin-card plugin-card-<?php echo sanitize_html_class( $plugin->slug ); ?>"> <div class="plugin-card-top"> <div class="name column-name"> <h3> <a href="<?php echo esc_url( $plugin_url ); ?>" target="_blank"> <?php echo esc_html( $plugin->name ); echo ' <img class="plugin-icon" src="' . $img_src . '" />'; ?> </a> </h3> </div> <div class="action-links"> <ul class="plugin-action-buttons"> <li> <?php echo $action_link; ?> </li> <?php echo $more_details; ?> </ul> </div> <div class="desc plugin-description"> <p> <?php echo wp_kses_post( $plugin->short_description ); ?> </p> <p class="authors"> <cite><?php sprintf( __( 'By %s', 'secupress' ), wp_kses_post( $plugin->author ) ); ?></cite> </p> </div> </div> <div class="plugin-card-bottom"> <div class="vers column-rating"> <?php wp_star_rating( array( 'rating' => $plugin->rating, 'type' => 'percent', 'number' => $plugin->num_ratings ) ); ?> <span class="num-ratings" aria-hidden="true">(<?php echo number_format_i18n( $plugin->num_ratings ); ?>)</span> </div> <div class="column-updated"> <strong><?php sprintf( __( 'Last update: %s', 'secupress' ), sprintf( _x( '%s ago', 'date', 'secupress' ), human_time_diff( $last_updated_timestamp ) ) ); ?></strong> </div> <div class="column-downloaded"> <?php printf( __( '%s Active Installations', 'secupress' ), $active_installs_text ); ?> </div> <?php if ( ! empty( $plugin->tested ) ) { $compat_class = version_compare( $GLOBALS['wp_version'], $plugin->tested ) <= 0 ? 'compatible' : 'incompatible'; ?> <div class="column-compatibility"> <span class="compatibility-<?php echo $compat_class; ?>"><strong><?php _e( 'Compatible up to:', 'secupress' ); ?></strong> <?php echo esc_html( $plugin->tested ); ?></span> </div> <?php } ?> </div> </div> <?php return ob_get_clean(); }
| ver. 1.6 |
Github
|
.
| PHP 8.3.30 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка