Fix File
•
/
home
/
sportsfe...
/
httpdocs
/
wp-conte...
/
plugins
/
embedpre...
/
EmbedPre...
/
Ends
/
Back
/
Settings
/
template...
•
File:
twitch.php
•
Content:
<?php /* * Twitch Settings page * All undefined vars comes from 'render_settings_page' method * */ $twitch_settings = get_option( EMBEDPRESS_PLG_NAME.':twitch'); $start_time = isset( $twitch_settings['start_time']) ? intval($twitch_settings['start_time']) : 0; $autoplay = isset($twitch_settings['embedpress_pro_twitch_autoplay']) ? esc_attr($twitch_settings['embedpress_pro_twitch_autoplay']) : 'no'; $show_chat = isset($twitch_settings['embedpress_pro_twitch_chat']) ? esc_attr($twitch_settings['embedpress_pro_twitch_chat']) : 'no'; $theme = isset($twitch_settings['embedpress_pro_twitch_theme']) ? esc_attr($twitch_settings['embedpress_pro_twitch_theme']) : 'dark'; $fs = isset($twitch_settings['embedpress_pro_fs']) ? esc_attr($twitch_settings['embedpress_pro_fs']) : 'yes'; $mute = isset($twitch_settings['embedpress_pro_twitch_mute']) ? esc_attr($twitch_settings['embedpress_pro_twitch_mute']) : 'yes'; ?> <div class="embedpress__settings background__white radius-25 p40"> <h3><?php esc_html_e( "Twitch Settings", "embedpress" ); ?></h3> <div class="embedpress__settings__form"> <form action="" method="post" class="embedpress-settings-form"> <?php do_action( 'embedpress_before_twitch_settings_fields'); echo $nonce_field ; ?> <div class="form__group"> <p class="form__label" ><?php esc_html_e( "Start Time (In Seconds)", "embedpress" ); ?> </p> <div class="form__control__wrap"> <input type="number" name="start_time" id="start_time" class="form__control" data-default="<?php echo esc_attr( $start_time); ?>" value="<?php echo esc_attr( $start_time); ?>" > <p><?php esc_html_e( "You can put a custom time in seconds to start video. Example: 500", "embedpress" ); ?></p> </div> </div> <div class="form__group"> <p class="form__label"><?php esc_html_e( "Auto Play", "embedpress" ); ?></p> <div class="form__control__wrap"> <div data-default="<?php echo esc_attr( $autoplay ); ?>" data-value="<?php echo esc_attr( $autoplay ); ?>" class="input__flex input__radio_wrap"> <label class="input__radio"> <input type="radio" name="autoplay" value="no" <?php checked( 'no', $autoplay); ?>> <span><?php esc_html_e( "No", "embedpress" ); ?></span> </label> <label class="input__radio"> <input type="radio" name="autoplay" value="yes" <?php checked( 'yes', $autoplay); ?>> <span><?php esc_html_e( "Yes", "embedpress" ); ?></span> </label> </div> <p><?php esc_html_e( "Automatically start to play the videos when the player loads.", "embedpress" ); ?></p> </div> </div> <div class="form__group"> <p class="form__label"><?php esc_html_e( "Show Chat", "embedpress" ); echo $pro_active ? '': ' <span class="isPro">PRO</span>'; ?> </p> <div class="form__control__wrap"> <div data-default="<?php echo esc_attr( $show_chat ); ?>" data-value="<?php echo esc_attr( $show_chat ); ?>" class="input__flex input__radio_wrap <?php echo $pro_active ? '': 'isPro'; ?>"> <label class="input__radio"> <input type="radio" name="show_chat" value="no" <?php echo $pro_active ? '' : 'disabled'; checked( 'no', $show_chat); ?>> <span><?php esc_html_e( "No", "embedpress" ); ?></span> </label> <label class="input__radio"> <input type="radio" name="show_chat" value="yes" <?php echo $pro_active ? '' : 'disabled'; checked( 'yes', $show_chat); ?>> <span><?php esc_html_e( "Yes", "embedpress" ); ?></span> </label> </div> <?php if ( !$pro_active ) { include EMBEDPRESS_SETTINGS_PATH . 'templates/partials/alert-pro.php'; } ?> <p><?php esc_html_e( "You can show or hide chat using this setting", "embedpress" ); ?></p> </div> </div> <div class="form__group"> <p class="form__label"><?php esc_html_e( "Theme", "embedpress" );?> </p> <div class="form__control__wrap"> <div class="embedpress__select"> <span><i class="ep-icon ep-caret-down"></i></span> <select name="theme" data-default="<?php echo esc_attr( $theme); ?>"> <option value="dark" <?php selected( 'dark', $theme); ?>><?php esc_html_e( "Dark", "embedpress" ); ?></option> <option value="light" <?php selected( 'light', $theme); ?>><?php esc_html_e( "Light", "embedpress" ); ?></option> </select> </div> <p><?php esc_html_e( "Set dark or light theme for the twitch comment.", "embedpress" ); ?></p> </div> </div> <div class="form__group"> <p class="form__label"><?php esc_html_e( "Enable Fullscreen Button", "embedpress" ); ?></p> <div class="form__control__wrap"> <div data-default="<?php echo esc_attr( $fs ); ?>" data-value="<?php echo esc_attr( $fs ); ?>" class="input__flex input__radio_wrap"> <label class="input__radio"> <input type="radio" name="fs" value="no" <?php checked( 'no', $fs); ?>> <span><?php esc_html_e( "No", "embedpress" ); ?></span> </label> <label class="input__radio"> <input type="radio" name="fs" value="yes" <?php checked( 'yes', $fs); ?>> <span><?php esc_html_e( "Yes", "embedpress" ); ?></span> </label> </div> <p><?php esc_html_e( "Indicates whether the fullscreen button is enabled.", "embedpress" ); ?></p> </div> </div> <div class="form__group"> <p class="form__label"><?php esc_html_e( "Mute On Start", "embedpress" ); ?> </p> <div class="form__control__wrap"> <div data-default="<?php echo esc_attr( $mute ); ?>" data-value="<?php echo esc_attr( $mute ); ?>" class="input__flex input__radio_wrap "> <label class="input__radio"> <input type="radio" name="mute" value="no" <?php checked( 'no', $mute); ?>> <span><?php esc_html_e( "No", "embedpress" ); ?></span> </label> <label class="input__radio"> <input type="radio" name="mute" value="yes" <?php checked( 'yes', $mute); ?>> <span><?php esc_html_e( "Yes", "embedpress" ); ?></span> </label> </div> <p><?php esc_html_e( "Set it to Yes to mute the video on start.", "embedpress" ); ?></p> </div> </div> <?php do_action( 'embedpress_after_twitch_settings_fields'); ?> <button class="button button__themeColor radius-10 embedpress-submit-btn" name="submit" value="twitch"><?php esc_html_e( 'Save Changes', 'embedpress'); ?></button> </form> </div> </div>
•
Search:
•
Replace:
Function
Edit by line
Download
Information
Rename
Copy
Move
Delete
Chmod
List