plugin.php
866 Bytes
<?php
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
?>
<style>
#the-list tr[data-plugin='<?= $this->plugin_basename ?>']:not(.plugin-update-tr--message) th,
#the-list tr[data-plugin='<?= $this->plugin_basename ?>']:not(.plugin-update-tr--message) td {
box-shadow: none;
}
<?php if ( $this->icon ) : ?>
.plugins tr[data-plugin='<?= $this->plugin_basename ?>'] .update-message p:before {
content: "<?= $this->icon ?>";
}
<?php endif; ?>
</style>
<tr class="plugin-update-tr plugin-update-tr--message <?= esc_attr( $this->status ) ?>" data-slug="<?= esc_attr( basename( $this->plugin_basename ) ) ?>" data-plugin="<?= esc_attr( $this->plugin_basename ) ?>">
<td colspan="100%" class="plugin-update colspanchange">
<div class="update-message notice notice-alt inline <?= esc_attr( $this->class ) ?>">
<p><?= $this->message ?></p>
</div>
</td>
</tr>