Submit
Path:
~
/
home
/
getwphos
/
www
/
pioneerasphalt
/
wp-content
/
plugins
/
qode-framework
/
inc
/
common
/
fields
/
File Content:
class-qodeframeworkfieldradio.php
<?php if ( ! defined( 'ABSPATH' ) ) { // Exit if accessed directly. exit; } class QodeFrameworkFieldRadio extends QodeFrameworkFieldType { public function render_field() { ?> <?php $use_images = isset( $this->args['images'] ) && $this->args['images'] ? true : false; if ( is_array( $this->options ) && count( $this->options ) ) { ?> <div class="qodef-radio-group-holder qodef-field <?php if ( $use_images ) { echo ' qodef-with-images'; } ?> " data-option-name="<?php echo esc_attr( $this->name ); ?>" data-option-type="radiogroup"> <?php foreach ( $this->options as $key => $value ) { $checked = $this->params['value'] == $key ? 'checked' : ''; $label = $use_images ? $value['label'] : $value; ?> <div class="qodef-inline"> <?php if ( ! $use_images ) { ?> <input class="qodef-field" <?php echo esc_attr( $checked ); ?> type="radio" id="<?php echo esc_attr( $this->name . $key ); ?>" name="<?php echo esc_attr( $this->name ); ?>" value="<?php echo esc_attr( $key ); ?>"> <?php if ( ! empty( $label ) ) { ?> <label for="<?php echo esc_attr( $this->name . $key ); ?>"> <span class="qodef-label-view"></span> <span class="qodef-label-text"> <?php echo esc_html( $label ); ?> </span> </label> <?php } ?> <?php } else { ?> <label for="<?php echo esc_attr( $this->name . $key ); ?>"> <input class="qodef-field" <?php echo esc_attr( $checked ); ?> type="radio" id="<?php echo esc_attr( $this->name . $key ); ?>" name="<?php echo esc_attr( $this->name ); ?>" value="<?php echo esc_attr( $key ); ?>"> <img title=" <?php if ( ! empty( $label ) ) { echo esc_attr( $label ); } ?> " src="<?php echo esc_url( $value['image'] ); ?>" alt="<?php echo esc_attr( $key . ' image' ); ?>"/> </label> <?php } ?> </div> <?php } ?> </div> <?php } } }
Edit
Rename
Chmod
Delete
FILE
FOLDER
Name
Size
Permission
Action
class-qodeframeworkfieldaddress.php
1321 bytes
0644
class-qodeframeworkfieldcheckbox.php
1425 bytes
0644
class-qodeframeworkfieldcolor.php
580 bytes
0644
class-qodeframeworkfielddate.php
951 bytes
0644
class-qodeframeworkfieldfile.php
1558 bytes
0644
class-qodeframeworkfieldfont.php
1247 bytes
0644
class-qodeframeworkfieldgooglefont.php
1006 bytes
0644
class-qodeframeworkfieldhidden.php
757 bytes
0644
class-qodeframeworkfieldicon.php
1342 bytes
0644
class-qodeframeworkfieldiconpack.php
1318 bytes
0644
class-qodeframeworkfieldimage.php
2104 bytes
0644
class-qodeframeworkfieldnumber.php
1581 bytes
0644
class-qodeframeworkfieldpassword.php
991 bytes
0644
class-qodeframeworkfieldradio.php
1979 bytes
0644
class-qodeframeworkfieldselect.php
2158 bytes
0644
class-qodeframeworkfieldtext.php
1443 bytes
0644
class-qodeframeworkfieldtextarea.php
572 bytes
0644
class-qodeframeworkfieldtextareaeditor.php
431 bytes
0644
class-qodeframeworkfieldtextareahtml.php
619 bytes
0644
class-qodeframeworkfieldtextareasvg.php
618 bytes
0644
class-qodeframeworkfieldtype.php
5587 bytes
0644
class-qodeframeworkfieldyesno.php
1011 bytes
0644
N4ST4R_ID | Naxtarrr