You appear to be a bot. Output may be restricted
Description
Plugin agnostic method to output the additional plugin row
Usage
EDD_Requirements_Check::plugin_row_notice();
Parameters
Returns
void
Source
File name: easy-digital-downloads/includes/class-edd-requirements-check.php
Lines:
1 to 18 of 18
public function plugin_row_notice() { // wp_is_auto_update_enabled_for_type was introduced in WordPress 5.5. $colspan = function_exists( 'wp_is_auto_update_enabled_for_type' ) && wp_is_auto_update_enabled_for_type( 'plugin' ) ? 2 : 1; ?> <tr class="active <?php echo esc_attr( $this->unmet_requirements_name() ); ?>-row"> <th class="check-column"> <span class="dashicons dashicons-warning"></span> </th> <td class="column-primary"> <?php $this->unmet_requirements_text(); ?> </td> <td class="column-description" colspan="<?php echo esc_attr( $colspan ); ?>"> <?php $this->unmet_requirements_description(); ?> </td> </tr> <?php }