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.
|
|
<?php if(isset($image)): ?>
|
|
|
<img<?php if(isset($image['class'])): ?> class="<?php echo $image['class']; ?>" <?php endif; ?>src="<?php echo BASE_URL.MEDIA_DIR.$image['image']; ?>" title="<?php echo $image['alt']; ?>" alt="<?php echo $image['alt']; ?>" width="<?php echo $image['width']; ?>" height="<?php echo $image['height']; ?>" />
|
|
|
<?php else: ?>
|
|
|
<span class="missing">[ missing image ]</span>
|
|
|
<?php endif; ?>
|