You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.1 KiB
30 lines
1.1 KiB
9 months ago
|
<?php defined( 'ABSPATH' ) || die ?>
|
||
|
|
||
|
<script id="tmpl-rwmb-image-item" type="text/html">
|
||
|
<input type="hidden" name="{{{ data.controller.fieldName }}}" value="{{{ data.id }}}" class="rwmb-media-input">
|
||
|
<div class="rwmb-file-icon">
|
||
|
<# if ( 'image' === data.type && data.sizes ) { #>
|
||
|
<# if ( data.sizes[data.controller.imageSize] ) { #>
|
||
|
<img src="{{{ data.sizes[data.controller.imageSize].url }}}">
|
||
|
<# } else { #>
|
||
|
<img src="{{{ data.sizes.full.url }}}">
|
||
|
<# } #>
|
||
|
<# } else { #>
|
||
|
<# if ( data.image && data.image.src && data.image.src !== data.icon ) { #>
|
||
|
<img src="{{ data.image.src }}" />
|
||
|
<# } else { #>
|
||
|
<img src="{{ data.icon }}" />
|
||
|
<# } #>
|
||
|
<# } #>
|
||
|
</div>
|
||
|
<div class="rwmb-image-overlay"></div>
|
||
|
<div class="rwmb-image-actions">
|
||
|
<a class="rwmb-image-edit rwmb-edit-media" title="{{{ i18nRwmbMedia.edit }}}" href="{{{ data.editLink }}}" target="_blank">
|
||
|
<span class="dashicons dashicons-edit"></span>
|
||
|
</a>
|
||
|
<a href="#" class="rwmb-image-delete rwmb-remove-media" title="{{{ i18nRwmbMedia.remove }}}">
|
||
|
<span class="dashicons dashicons-no-alt"></span>
|
||
|
</a>
|
||
|
</div>
|
||
|
</script>
|