# image-source-control-isc/3.12.0/admin/templates/sources/section.php

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

- Page: https://pluginprobe.com/plugins/image-source-control-isc/3.12.0/code/admin/templates/sources/section.php
- Raw: https://pluginprobe.com/plugins/image-source-control-isc/3.12.0/raw/admin/templates/sources/section.php
- Modified: 2023-08-09T08:03:00+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/sources/section.php#L10-L20`.

```php
<?php
/**
 * Render content of a section on the Tools page
 *
 * @var string $id ID of the section.
 * @var string $title Title of the section.
 * @var string $section HTML content of the section.
 */
?>
<div class="postbox" id="<?php echo esc_attr( $id ); ?>">
<?php
	if ( $title ) {
		?>
		<div class="postbox-header"><h2 class="hndle"><?php echo esc_html( $title ); ?></h2></div>
		<?php
	}
	?>
	<div class="inside">
		<div class="submitbox">
			<?php echo $section; ?>
		</div>
	</div>
</div>

```
