403Webshell
Server IP : 49.212.180.16  /  Your IP : 3.144.72.54
Web Server : Apache
System : FreeBSD www2606.sakura.ne.jp 13.0-RELEASE-p14 FreeBSD 13.0-RELEASE-p14 #2: Mon Dec 9 13:54:55 JST 2024 root@www5301.sakura.ne.jp:/usr/obj/usr/src/amd64.amd64/sys/GENERIC amd64
User : utannto ( 1076)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : ON  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/utannto/www/hironaka.biz/wp-content/plugins/feedzy-rss-feeds/form/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/utannto/www/hironaka.biz/wp-content/plugins/feedzy-rss-feeds/form/form.php
<?php
/**
 * The file that defines the core plugin class
 *
 * A class definition that includes attributes and functions used across both the
 * public-facing side of the site and the admin area.
 *
 * @link       http://themeisle.com
 * @since      3.0.0
 *
 * @package    feedzy-rss-feeds
 * @subpackage feedzy-rss-feeds/form
 */

$html_parts = Feedzy_Rss_Feeds_Ui_Lang::get_form_elements();
?>
<!DOCTYPE html>
<html>
<head>
	<!-- Disable browser caching of dialog window -->
	<meta http-equiv="cache-control" content="no-cache"/>
	<meta http-equiv="expires" content="0"/>
	<meta http-equiv="pragma" content="no-cache"/>
	<?php echo sprintf( '<link rel="stylesheet" href="%s" type="text/css" media="all"/>', esc_url( FEEDZY_ABSURL . 'css/form.css?h=' . gmdate( 'dmYHis' ) ) ); //phpcs:ignore WordPress.WP.EnqueuedResources.NonEnqueuedStylesheet ?>
</head>
<body>
<div class="feedzy-popup-form container">
	<?php
	$output = '';
	if ( ! empty( $html_parts ) ) {
		foreach ( $html_parts as $item => $section ) {
			$output .= '<div class="container feedzy_' . $item . '">';
			$output .= '<h5>' . $section['title'] . '</h5>';
			if ( ! feedzy_is_pro() && 'section_feed' === $item ) {
				$upsell_url = add_query_arg(
					array(
						'utm_source'   => 'wpadmin',
						'utm_medium'   => 'classiceditorshortcode',
						'utm_campaign' => 'amazonproductadvertising',
						'utm_content'  => 'feedzy-rss-feeds',
					),
					FEEDZY_UPSELL_LINK
				);
				$output .= '<div class="upgrade-alert">';
				$output .= wp_sprintf( __( '<strong>NEW! </strong>Enable Amazon Product Advertising feeds to generate affiliate revenue by <a href="%s" target="_blank">upgrading to Feedzy Pro.</a>', 'feedzy-rss-feeds' ), esc_url_raw( $upsell_url ) );
				$output .= '</div>';
			}
			if ( isset( $section['description'] ) ) {
				$output .= '<p>' . $section['description'] . '</p>';
			}
			if ( ! empty( $section['elements'] ) ) {
				foreach ( $section['elements'] as $name => $props ) {
					$element  = '';
					$disabled = '';
					$badge    = '';
					if ( isset( $props['disabled'] ) && $props['disabled'] ) {
						$disabled = 'disabled="true"';
						$badge    = '<small class="feedzy_pro_tag">' . __( 'Premium', 'feedzy-rss-feeds' ) . '</small>';
					}
					switch ( $props['type'] ) {
						case 'select':
							$element = '<select name="' . $name . '" data-feedzy="' . $name . '" ' . $disabled . ' >';
							foreach ( $props['opts'] as $opt => $values ) {
								$checked = '';
								if ( $props['value'] === $values['value'] ) {
									$checked = 'selected';
								}
								$element .= '<option value="' . $values['value'] . '" ' . $checked . ' > ' . $values['label'] . '</option>';
							}
							$element .= '</select>';
							break;
						case 'radio':
							foreach ( $props['opts'] as $opt => $values ) {
								$checked = '';
								if ( $props['value'] === $values['value'] ) {
									$checked = 'checked="checked"';
								}
								$element .= '<label class="feedzy-radio-image feedzy-template-' . $values['value']
											. '"><input type="radio" name="' . $name . '" data-feedzy="' . $name . '" value="' . $values['value'] . '" ' . $checked . ' ' . $disabled . ' />' .
											$values['label'] . '</label>';
							}
							break;
						case 'checkbox':
							foreach ( $props['opts'] as $opt => $values ) {
								$checked = '';
								if ( $props['value'] === $values['value'] ) {
									$checked = 'checked="checked"';
								}
								$element .= '<input type="checkbox" name="' . $name . '" data-feedzy="' . $name . '" value="' . $values['value'] . '" ' . $checked . ' ' . $disabled . ' /> ' . $values['label'];
							}
							break;
						case 'file':
							$element = '
                                    <input type="text" class="column column-50 float-left" name="' . $name . '" data-feedzy="' . $name . '" id="feedzy_image_url" placeholder="' . $props['placeholder'] . '" value="' . $props['value'] . '">
                                    <input type="button" class="column column-50 float-right button-outline" name="upload-btn" id="feedzy_upload_btn" value="' . $props['button']['button_text'] . '">
                                ';
							break;
						default:
							$element = '<input type="text" name="' . $name . '" data-feedzy="' . $name . '" value="' . $props['value'] . '" placeholder="' . ( isset( $props['placeholder'] ) ? $props['placeholder'] : '' ) . '" ' . $disabled . ' />';
							break;
					} // End switch().
					$output .= '
                        <div class="row feedzy_element_' . $name . '">
                           <div class="column column-50">
                                <label for="' . $name . '">' . $props['label'] . $badge . '</label>
                            </div>
                            <div class="column column-50">
                                ' . $element . '
                            </div>
                            <hr/>
                        </div>
                        ';
				} // End foreach().
			} // End if().
			$output .= '</div>';
		} // End foreach().
	} // End if().
	echo wp_kses( $output, apply_filters( 'feedzy_wp_kses_allowed_html', array() ) );
	?>
</div>
<script type="text/javascript">
	var args = top.tinymce.activeEditor.windowManager.getParams();
	var $ = args.jquery;
	var editor = args.editor;
	var wp = args.wp;
	var custom_uploader;
	$(document).ready(function ($) {
		$(document).on('click', '#feedzy_upload_btn', function (e) {
			e.preventDefault();
			var upload_button = $(this);
			custom_uploader = wp.media.frames.file_frame = wp.media({
				title: editor.getLang('feedzy_tinymce_plugin.image_button'),
				button: {
					text: editor.getLang('feedzy_tinymce_plugin.image_button')
				},
				multiple: false
			});

			custom_uploader.on('select', function () {
				var attachment = custom_uploader.state().get('selection').first().toJSON();
				upload_button.siblings('input[type="text"]').val(attachment.url);
			});

			custom_uploader.open();
		});
	});
</script>
</body>
</html>

Youez - 2016 - github.com/yon3zu
LinuXploit