index of
/
home
/
thefkyzp
/
www
/
wp-content
/
plugins
/
forminator
/
addons
/
pro
/
slack
/
views
/
module
/
File: /home/thefkyzp/www/wp-content/plugins/forminator/addons/pro/slack/views/module/select-type.php
<?php /** * Template for select type * * @package Forminator */ // defaults. $vars = array( 'error_message' => '', 'type' => '', 'type_error' => '', 'types' => array(), ); /** * Template variables. * * @var array $template_vars * */ foreach ( $template_vars as $key => $val ) { $vars[ $key ] = $val; } ?> <div class="forminator-integration-popup__header"> <h3 id="forminator-integration-popup__title" class="sui-box-title sui-lg" style="overflow: initial; white-space: normal; text-overflow: initial;"> <?php esc_html_e( 'Select Type', 'forminator' ); ?> </h3> <p id="forminator-integration-popup__description" class="sui-description"><?php esc_html_e( 'Select what type of channel Slack will send the message to: a public channel, a private group or a DM channel.', 'forminator' ); ?></p> <?php if ( ! empty( $vars['error_message'] ) ) : ?> <?php // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Output is already escaped. echo Forminator_Admin::get_red_notice( esc_html( $vars['error_message'] ) ); ?> <?php endif; ?> </div> <form> <div class="sui-form-field <?php echo esc_attr( ! empty( $vars['type_error'] ) ? 'sui-form-field-error' : '' ); ?>" style="margin: 0;"> <label class="sui-label" for="slack-type-id"><?php esc_html_e( 'Type', 'forminator' ); ?></label> <select name="type" id="slack-type-id" class="sui-select" data-placeholder="<?php esc_html_e( 'Please select type', 'forminator' ); ?>"> <option></option> <?php foreach ( $vars['types'] as $type_id => $type_name ) : ?> <option value="<?php echo esc_attr( $type_id ); ?>" <?php selected( $vars['type'], $type_id ); ?>><?php echo esc_html( $type_name ); ?></option> <?php endforeach; ?> </select> <?php if ( ! empty( $vars['type_error'] ) ) : ?> <span class="sui-error-message"><?php echo esc_html( $vars['type_error'] ); ?></span> <?php endif; ?> </div> <input type="hidden" name="multi_id" value="<?php echo esc_attr( $vars['multi_id'] ); ?>"> </form>