# image-source-control-isc/3.12.0/admin/templates/settings/page-list/layout.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/page-list/layout.php
- Raw: https://pluginprobe.com/plugins/image-source-control-isc/3.12.0/raw/admin/templates/settings/page-list/layout.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/page-list/layout.php#L10-L20`.

```php
<?php
/**
 * Render layout settings for the Per-page lists in the content
 *
 * @var bool $list_layout_details value of the list_layout[details] option.
 * @var bool $is_pro_enabled whether the Pro version is enabled.
 */

?>
<div class="isc-settings-highlighted">
<label>
	<input type="checkbox" name="isc_options[list_layout][details]" value="1" <?php checked( $list_layout_details ); ?> <?php echo ! $is_pro_enabled ? 'disabled="disabled"' : ''; ?>/>
	<?php
	if ( ! $is_pro_enabled ) :
		// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
		echo ISC\Admin_Utils::get_pro_link( 'page-list-layout-details' );
endif;
	?>
	<?php
	esc_html_e( 'Expandable list', 'image-source-control-isc' );
	?>
</label>
<p class="description">
	<?php
	esc_html_e( 'Show as an expandable list that opens on click.', 'image-source-control-isc' );
	?>
</div>
<?php

```
