Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.
LLMS_Admin_System_Report::plugin_item( array $data )
Output data related to an active plugin in the system report
Parameters Parameters
- $data
-
(array) (Required) Array of plugin data.
Return Return
(void)
Source Source
File: includes/admin/class.llms.admin.system-report.php
private static function plugin_item( $data ) {
?>
<a href="<?php echo esc_url( $data['PluginURI'] ); ?>"><?php echo esc_html( $data['Name'] ); ?></a>: <strong><?php echo esc_html( $data['Version'] ); ?></strong>
<?php
}
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 3.0.0 | Introduced. |