PluginProbe
PixCodes / 2.3.8
PixCodes v2.3.8
2.3.9 trunk 2.3.4 2.3.5 2.3.6 2.3.7 2.3.8
pixcodes / params / image.php

image.php in PixCodes 2.3.8, at params/image.php

18 lines 599 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if ( ! defined( 'ABSPATH' ) ) {
3 die( '-1' );
4 }
5
6 $class= "span12";
7 if ( isset($param['admin_class'] ) ) $class = $param['admin_class']; ?>
8
9 <span class="<?php echo esc_attr( $class ); ?>" >
10 <label for="<?php echo esc_attr( $param['param_key'] ); ?>"><?php echo esc_html( $param['name'] ); ?></label>
11 <div class="media_image_holder" >
12 <i class="icon-camera" style=""></i>
13 <input type="hidden" class="media_image_input" name="<?php echo esc_attr( $param['param_key'] ); ?>" />
14 <img class="upload_preview" />
15 <i class="icon-edit" ></i>
16 </div>
17 </span>
18