# image-source-control-isc/3.11.0/public/views/global-list.php

Image Source Control Lite – Show Image Credits and Captions, version 3.11.0. 41 lines.

- Page: https://pluginprobe.com/plugins/image-source-control-isc/3.11.0/code/public/views/global-list.php
- Raw: https://pluginprobe.com/plugins/image-source-control-isc/3.11.0/raw/public/views/global-list.php
- Modified: 2026-06-23T08:31:44+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.11.0/code/public/views/global-list.php#L10-L20`.

```php
<?php
/**
 * Render the global list of image sources
 * @var array $options plugin options.
 * @var array $atts attachment information.
 *
 * Added comment `isc_stop_overlay` as a class to the table to suppress overlays within it starting at that point
 * todo: allow overlays to start again after the table
 **/
?>
<div class="isc_all_image_list_box isc_stop_overlay" style="overflow: scroll;">
	<table>
		<thead>
		<?php if ( $options['thumbnail_in_list'] ) : ?>
			<th><?php esc_html_e( 'Thumbnail', 'image-source-control-isc' ); ?></th>
		<?php endif; ?>
		<th><?php esc_html_e( 'Attachment ID', 'image-source-control-isc' ); ?></th>
		<th><?php esc_html_e( 'Title', 'image-source-control-isc' ); ?></th>
		<th><?php esc_html_e( 'Attached to', 'image-source-control-isc' ); ?></th>
		<th><?php esc_html_e( 'Source', 'image-source-control-isc' ); ?></th>
		</thead>
		<tbody>
		<?php foreach ( $atts as $id => $data ) : ?>
			<?php
			$source = ISC\Image_Sources\Renderer\Image_Source_String::get( $id );
			?>
			<tr>
				<?php
				$v_align = '';
				if ( $options['thumbnail_in_list'] ) :
					$v_align = 'style="vertical-align: top;"';
					?><td><?php \ISC\Image_Sources\Renderer\Global_List::render_global_list_thumbnail( $id ); ?></td><?php
				endif; ?>
				<td <?php echo $v_align; ?>><?php echo $id; ?></td>
				<td <?php echo $v_align; ?>><?php echo $data['title']; ?></td>
				<td <?php echo $v_align; ?>><?php echo $data['posts']; ?></td>
				<td <?php echo $v_align; ?>><?php echo $source; ?></td>
			</tr>
		<?php endforeach; ?>
		</tbody>
	</table></div>
```
