File manager - Edit - /home/buyherba/public_html/wp-content/plugins/click-to-chat-for-whatsapp/new/admin/components/select.php
Back
<?php /** * Render a generic select field component. * * Accepts either a direct list of options or a callback `list_cb` to populate the values. * * @package Click_To_Chat */ if ( ! defined( 'ABSPATH' ) ) { exit; } $field_title = ( isset( $input['title'] ) ) ? $input['title'] : ''; $description = ( isset( $input['description'] ) ) ? $input['description'] : ''; $parent_class = ( isset( $input['parent_class'] ) ) ? $input['parent_class'] : ''; $parent_id = ( isset( $input['parent_id'] ) ) ? $input['parent_id'] : ''; $select_class = ( isset( $input['select_class'] ) ) ? $input['select_class'] : ''; // list $list = array(); if ( isset( $input['list'] ) ) { $list = $input['list']; } elseif ( isset( $input['list_cb'] ) ) { $list_cb = $input['list_cb']; $lists_file = plugin_dir_path( HT_CTC_PLUGIN_FILE ) . 'new/admin/components/list/ht-ctc-admin-list-page.php'; if ( is_file( $lists_file ) ) { include_once $lists_file; $lists_instance = HT_CTC_Admin_List_Page::instance(); $list = ( class_exists( 'HT_CTC_Admin_List_Page' ) && method_exists( 'HT_CTC_Admin_List_Page', $list_cb ) ) ? $lists_instance->$list_cb() : array(); } } ?> <div class="row ctc_component_select <?php echo esc_attr( $parent_class ); ?>" id="<?php echo esc_attr( $parent_id ); ?>" style="margin:0;"> <?php if ( '' !== $field_title ) { ?> <p class="description"><?php echo esc_html( $field_title ); ?> </p> <?php } ?> <div class="row"> <div class="input-field col s12"> <select name="<?php echo esc_attr( $dbrow ); ?>[<?php echo esc_attr( $db_key ); ?>]" class="<?php echo esc_attr( $select_class ); ?>"> <?php foreach ( $list as $k => $v ) { ?> <option value="<?php echo esc_attr( $k ); ?>" <?php echo ( $db_value === $k ) ? 'SELECTED' : ''; ?> ><?php echo esc_html( $v ); ?></option> <?php } ?> </select> <?php if ( '' !== $description ) { ?> <p class="description"><?php echo wp_kses_post( $description ); ?></p> <?php } ?> </div> </div> </div>
| ver. 1.4 |
Github
|
.
| PHP 8.1.34 | Generation time: 0.18 |
proxy
|
phpinfo
|
Settings