Submit
Path:
~
/
home
/
getwphos
/
www
/
pioneerasphalt
/
wp-content
/
plugins
/
qode-framework
/
inc
/
common
/
fields-attachment
/
File Content:
class-qodeframeworkfieldattachmentselect.php
<?php if ( ! defined( 'ABSPATH' ) ) { // Exit if accessed directly. exit; } class QodeFrameworkFieldAttachmentSelect extends QodeFrameworkFieldAttachmentType { public function render() { $html = '<select name="' . $this->name . '">'; foreach ( $this->options as $key => $label ) { $selected = $this->params['value'] == $key ? ' selected="selected"' : ''; $html .= '<option' . esc_attr( $selected ) . ' value="' . esc_attr( $key ) . '">'; $html .= esc_html( $label ); $html .= '</option>'; } $html .= '</select>'; $this->form_fields['html'] = $html; } }
Edit
Rename
Chmod
Delete
FILE
FOLDER
Name
Size
Permission
Action
class-qodeframeworkfieldattachmentselect.php
592 bytes
0644
class-qodeframeworkfieldattachmenttext.php
358 bytes
0644
class-qodeframeworkfieldattachmenttype.php
1764 bytes
0644
N4ST4R_ID | Naxtarrr