# image-source-control-isc/3.12.0/admin/templates/settings/compatibility.php

Image Source Control Lite – Show Image Credits and Captions, version 3.12.0. 29 lines.

- Page: https://pluginprobe.com/plugins/image-source-control-isc/3.12.0/code/admin/templates/settings/compatibility.php
- Raw: https://pluginprobe.com/plugins/image-source-control-isc/3.12.0/raw/admin/templates/settings/compatibility.php
- Modified: 2026-08-21T06:32:52+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/image-source-control-isc/3.12.0/code/admin/templates/settings/compatibility.php#L10-L20`.

```php
<?php
/**
 * Render compatibility notices on the settings page.
 *
 * @var array $notices Compatibility notices.
 */

?>
<p class="description">
	<span class="dashicons dashicons-warning" style="color: red;"></span>
	<?php esc_html_e( 'The following items might need an upgrade or manual setup for compatibility.', 'image-source-control-isc' ); ?>
</p>
<ul>
	<?php foreach ( $notices as $notice ) : ?>
		<li>
			<strong><?php echo esc_html( $notice['name'] ); ?></strong>
			<?php if ( ! empty( $notice['description'] ) ) : ?>
				: <?php echo esc_html( $notice['description'] ); ?>
			<?php endif; ?>
			<?php if ( ! empty( $notice['manual_url'] ) ) : ?>
				<a href="<?php echo esc_url( $notice['manual_url'] ); ?>"><?php esc_html_e( 'Manual', 'image-source-control-isc' ); ?></a>
			<?php endif; ?>
			<?php if ( ! empty( $notice['show_pro_link'] ) && ! \ISC\Plugin::is_pro() ) : ?>
				<?php echo ISC\Admin_Utils::get_pro_link( 'compatibility-' . sanitize_title( $notice['name'] ) ); ?>
			<?php endif; ?>
		</li>
	<?php endforeach; ?>
</ul>

```
