PluginProbe
Image Source Control Lite – Show Image Credits and Captions / 3.12.0
Image Source Control Lite – Show Image Credits and Captions v3.12.0
3.12.0 3.11.0 trunk 1.1 1.1.1 1.1.2 1.1.2.1 1.1.3 1.10 1.10.1 1.10.2 1.10.3 1.10.4 1.10.5 1.2 1.2.0.1 1.2.0.2 1.2.0.3 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.4.1 1.3.5 All 110 releases
image-source-control-isc / admin / templates / settings / page-list / layout.php

layout.php in Image Source Control Lite – Show Image Credits and Captions 3.12.0, at admin/templates/settings/page-list/layout.php

29 lines 859 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Render layout settings for the Per-page lists in the content
4 *
5 * @var bool $list_layout_details value of the list_layout[details] option.
6 * @var bool $is_pro_enabled whether the Pro version is enabled.
7 */
8
9 ?>
10 <div class="isc-settings-highlighted">
11 <label>
12 <input type="checkbox" name="isc_options[list_layout][details]" value="1" <?php checked( $list_layout_details ); ?> <?php echo ! $is_pro_enabled ? 'disabled="disabled"' : ''; ?>/>
13 <?php
14 if ( ! $is_pro_enabled ) :
15 // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
16 echo ISC\Admin_Utils::get_pro_link( 'page-list-layout-details' );
17 endif;
18 ?>
19 <?php
20 esc_html_e( 'Expandable list', 'image-source-control-isc' );
21 ?>
22 </label>
23 <p class="description">
24 <?php
25 esc_html_e( 'Show as an expandable list that opens on click.', 'image-source-control-isc' );
26 ?>
27 </div>
28 <?php
29