Hexid M1n1 5h3ll MobiLe
HOME
+FILE
+DIR
Server Info
Mass Tools
Auto Unzip File
UpLite
Upload
Upmod
home
/
h67425c
/
test.khm.rent
/
_
[
Writable
]
File Upload :
Gaszz
File:/home/h67425c/test.khm.rent/v2.tar
woocommerce/woocommerce-option-row.php��������������������������������������������������������������0000644�����������������00000004421�14756075032�0014240 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?php /** * The Template for displaying the WooCommerce option row. * * @var YIT_Plugin_Panel_WooCommerce $panel * @var array $field The field. * @package YITH\PluginFramework\Templates */ defined( 'ABSPATH' ) || exit; // Exit if accessed directly. $default_field = array( 'id' => '', 'title' => $field['name'] ?? '', 'desc' => '', ); $field = wp_parse_args( $field, $default_field ); $extra_row_class = $field['extra_row_class'] ?? ''; $display_row = ! in_array( $field['type'], array( 'hidden', 'html', 'sep', 'simple-text', 'title', 'list-table' ), true ); $display_row = isset( $field['yith-display-row'] ) ? ! ! $field['yith-display-row'] : $display_row; $show_container = $show_container ?? true; $is_required = ! empty( $field['required'] ); $is_disabled = $field['is_option_disabled'] ?? false; $extra_row_classes = $is_required ? array( 'yith-plugin-fw--required' ) : array(); $extra_row_classes = (array) apply_filters( 'yith_plugin_fw_panel_wc_extra_row_classes', $extra_row_classes, $field ); $row_classes = array( 'yith-plugin-fw__panel__option', 'yith-plugin-fw__panel__option--' . $field['type'], $is_disabled ? 'yith-plugin-fw__panel__option--is-disabled' : '', ); $row_classes = array_filter( array_merge( $row_classes, $extra_row_classes, array( $extra_row_class ) ) ); $row_classes = implode( ' ', $row_classes ); $label_id = ! ! $field['id'] ? ( $field['id'] . '__label' ) : ''; ?> <div class="<?php echo esc_attr( $row_classes ); ?>" <?php echo yith_field_deps_data( $field ); ?>> <?php if ( $display_row ) : ?> <div class="yith-plugin-fw__panel__option__label"> <label id="<?php echo esc_attr( $label_id ); ?>" for="<?php echo esc_attr( $field['id'] ); ?>"><?php echo wp_kses_post( $field['title'] ); ?></label> <?php $panel->get_template( 'panel-option-label-tags.php', array( 'field' => $field ) ); ?> </div> <div class="yith-plugin-fw__panel__option__content"> <?php yith_plugin_fw_get_field( $field, true, $show_container ); ?> </div> <?php if ( ! ! $field['desc'] ) : ?> <div class="yith-plugin-fw__panel__option__description"> <?php echo wp_kses_post( $field['desc'] ); ?> </div> <?php endif; ?> <?php else : ?> <?php yith_plugin_fw_get_field( $field, true ); ?> <?php endif; ?> </div> �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������woocommerce/woocommerce-form.php��������������������������������������������������������������������0000644�����������������00000006034�14756075032�0013070 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?php /** * The Template for displaying the WooCommerce form. * * @var YIT_Plugin_Panel_WooCommerce $panel The YITH WooCommerce Panel. * @var string $option_key The current option key ( see YIT_Plugin_Panel::get_current_option_key() ). * @package YITH\PluginFramework\Templates */ defined( 'ABSPATH' ) || exit; // Exit if accessed directly. $form_method = apply_filters( 'yit_admin_panel_form_method', 'POST', $option_key ); $content_class = apply_filters( 'yit_admin_panel_content_class', 'yit-admin-panel-content-wrap', $option_key ); $container_id = $panel->settings['page'] . '_' . $option_key; $page_title = $panel->get_page_title(); $page_description = $panel->get_page_description(); $notices = $panel->get_notices(); ?> <?php do_action( 'yit_framework_before_print_wc_panel_content', $option_key ); ?> <div class="yith-plugin-fw__panel__content__page yith-plugin-fw__panel__content__page--options <?php echo esc_attr( $content_class ); ?>"> <div class="yith-plugin-fw__panel__content__page__heading"> <h1 class="yith-plugin-fw__panel__content__page__title"> <?php echo wp_kses_post( $page_title ); ?> </h1> <?php if ( $page_description ) : ?> <div class="yith-plugin-fw__panel__content__page__description"> <?php echo wp_kses_post( $page_description ); ?> </div> <?php endif; ?> </div> <form id="plugin-fw-wc" method="<?php echo esc_attr( $form_method ); ?>"> <div class="yith-plugin-fw__panel__secondary-notices"> <?php foreach ( $notices as $notice ) { $notice_type = $notice['type'] ?? 'info'; $notice_message = $notice['message'] ?? ''; yith_plugin_fw_get_component( array( 'type' => 'notice', 'notice_type' => $notice_type, 'message' => $notice_message, ) ); } ?> </div> <?php $panel->add_fields(); ?> <?php wp_nonce_field( 'yit_panel_wc_options_' . $panel->settings['page'], 'yit_panel_wc_options_nonce' ); ?> <input type="hidden" name="page" value="<?php echo esc_attr( $panel->settings['page'] ); ?>"/> <input type="hidden" name="tab" value="<?php echo esc_attr( $panel->get_current_tab() ); ?>"/> <input type="hidden" name="sub_tab" value="<?php echo esc_attr( $panel->get_current_sub_tab() ); ?>"/> </form> <form id="plugin-fw-wc-reset" method="post"> <input type="hidden" name="yit-action" value="wc-options-reset"/> <input type="hidden" name="yit-reset" value="1"/> <?php wp_nonce_field( 'yith_wc_reset_options_' . $panel->settings['page'], 'yith_wc_reset_options_nonce' ); ?> </form> </div> <?php do_action( 'yit_framework_after_print_wc_panel_content', $option_key ); ?> <div class="yith-plugin-fw__panel__content__actions"> <button class="yith-plugin-fw__button yith-plugin-fw__button--primary" id="yith-plugin-fw__panel__content__save"><?php esc_html_e( 'Save Options', 'yith-plugin-fw' ); ?></button> <button class="yith-plugin-fw__button yith-plugin-fw__button--secondary" id="yith-plugin-fw__panel__content__reset"><?php esc_html_e( 'Reset Defaults', 'yith-plugin-fw' ); ?></button> </div> ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������panel-wp-page-footer.php����������������������������������������������������������������������������0000644�����������������00000001641�14756075032�0011221 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?php /** * The Template for displaying the Panel Footer in WP Pages. * * @var YIT_Plugin_Panel|YIT_Plugin_Panel_WooCommerce $panel * @var bool $has_sub_tabs * @var array $page_args * @package YITH\PluginFramework\Templates */ defined( 'ABSPATH' ) || exit; global $pagenow; $description = $page_args['description'] ?? ''; $is_list = in_array( $pagenow, array( 'edit.php', 'edit-tags.php' ), true ) ?> <?php if ( $is_list && ! ! $description ) : ?> <div class="yith-plugin-fw-wp-page__description"> <?php echo wp_kses_post( $description ); ?> </div> <script type="text/javascript"> jQuery( '.yith-plugin-fw-wp-page__description' ).insertBefore( 'hr.wp-header-end' ); </script> <?php endif; ?> </div><!-- /yith-plugin-fw-wp-page-wrapper --> </div><!-- yith-plugin-fw__panel__content--> </div><!-- yith-plugin-fw__panel --> �����������������������������������������������������������������������������������������������panel-settings-sections.php�������������������������������������������������������������������������0000644�����������������00000005132�14756075032�0012051 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?php /** * The Template for displaying the settings sections in YIT panel. * * @var YIT_Plugin_Panel $panel * @package YITH\PluginFramework\Templates */ defined( 'ABSPATH' ) || exit; // Exit if accessed directly. global $wp_settings_sections, $wp_settings_fields; $sections = $wp_settings_sections['yit'] ?? array(); ?> <?php foreach ( $sections as $section ) : ?> <?php $fields = isset( $wp_settings_fields ) && isset( $wp_settings_fields['yit'] ) && isset( $wp_settings_fields['yit'][ $section['id'] ] ) ? ( (array) $wp_settings_fields['yit'][ $section['id'] ] ) : array(); ?> <div class="yith-plugin-fw__panel__section"> <?php if ( $section['title'] ) : ?> <div class="yith-plugin-fw__panel__section__title"> <h2><?php echo esc_html( $section['title'] ); ?></h2> <?php if ( ! empty( $section['description'] ) ) : ?> <div class="yith-plugin-fw__panel__section__description"> <?php echo wp_kses_post( wpautop( wptexturize( $section['description'] ) ) ); ?> </div> <?php endif; ?> </div> <?php endif; ?> <?php if ( ! ! $fields ) : ?> <div class="yith-plugin-fw__panel__section__content"> <?php foreach ( $fields as $field ) : ?> <?php $label_for = $field['args']['label_for'] ?? ''; $option = $field['args']['option'] ?? array(); $option_type = $option['type'] ?? ''; $option_type = 'on-off' === $option_type ? 'onoff' : $option_type; $is_disabled = $option['is_option_disabled'] ?? false; $row_classes = array( 'yith-plugin-fw__panel__option', $option_type ? 'yith-plugin-fw__panel__option--' . $option_type : false, $is_disabled ? 'yith-plugin-fw__panel__option--is-disabled' : '', ); $row_classes = implode( ' ', array_filter( $row_classes ) ); ?> <div class="<?php echo esc_attr( $row_classes ); ?>" <?php echo yith_panel_field_deps_data( $option, $panel ); ?>> <div class="yith-plugin-fw__panel__option__label"> <label for="<?php echo esc_attr( $label_for ); ?>"><?php echo wp_kses_post( $field['title'] ); ?></label> <?php $panel->get_template( 'panel-option-label-tags.php', array( 'field' => $option ) ); ?> </div> <div class="yith-plugin-fw__panel__option__content"> <?php call_user_func( $field['callback'], $field['args'] ); ?> </div> <?php if ( ! empty( $option['desc'] ) ) : ?> <div class="yith-plugin-fw__panel__option__description"> <?php echo wp_kses_post( $option['desc'] ); ?> </div> <?php endif; ?> </div> <?php endforeach; ?> </div> <?php endif; ?> </div> <?php endforeach; ?> ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������panel-wp-page-header.php����������������������������������������������������������������������������0000644�����������������00000002050�14756075032�0011146 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?php /** * The Template for displaying the Panel Header. * * @var YIT_Plugin_Panel|YIT_Plugin_Panel_WooCommerce $panel * @var string $page_wrapper_classes * @var string $wrap_class * @var array $tabs_nav_args * @var bool $has_sub_tabs * @package YITH\PluginFramework\Templates */ defined( 'ABSPATH' ) || exit; $collapsed_class = get_user_setting( 'yithFwSidebarFold', 'o' ) === 'f' ? 'yith-plugin-fw__panel__sidebar--collapsed' : ''; ?> <div class="yith-plugin-fw__panel"> <div class="yith-plugin-fw__panel__sidebar <?php echo esc_attr( $collapsed_class ); ?>"> <?php $panel->print_sidebar_header(); $panel->print_tabs_nav( $tabs_nav_args ); ?> </div><!-- yith-plugin-fw__panel__sidebar --> <div class="<?php echo esc_attr( $panel->get_panel_content_classes() ); ?>"> <?php $panel->render_panel_header_nav(); ?> <div class="<?php echo esc_attr( $page_wrapper_classes ); ?>"> ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������panel-nav-item.php����������������������������������������������������������������������������������0000644�����������������00000025236�14756075032�0010113 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?php /** * The Template for displaying the Panel Tab nav. * * @var YIT_Plugin_Panel|YIT_Plugin_Panel_WooCommerce $panel * @var string $tab_key * @var array $tab_data * @var array $nav_args * @package YITH\PluginFramework\Templates */ defined( 'ABSPATH' ) || exit; list ( $current_tab, $current_sub_tab, $premium_class, $the_page, $parent_page ) = yith_plugin_fw_extract( $nav_args, 'current_tab', 'current_sub_tab', 'premium_class', 'page', 'parent_page' ); $icons = array( 'dashboard' => '<svg fill="none" stroke="currentColor" stroke-width="1.5" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M9 17.25v1.007a3 3 0 01-.879 2.122L7.5 21h9l-.621-.621A3 3 0 0115 18.257V17.25m6-12V15a2.25 2.25 0 01-2.25 2.25H5.25A2.25 2.25 0 013 15V5.25m18 0A2.25 2.25 0 0018.75 3H5.25A2.25 2.25 0 003 5.25m18 0V12a2.25 2.25 0 01-2.25 2.25H5.25A2.25 2.25 0 013 12V5.25"></path></svg>', 'settings' => '<svg fill="none" stroke="currentColor" stroke-width="1.5" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M9.594 3.94c.09-.542.56-.94 1.11-.94h2.593c.55 0 1.02.398 1.11.94l.213 1.281c.063.374.313.686.645.87.074.04.147.083.22.127.324.196.72.257 1.075.124l1.217-.456a1.125 1.125 0 011.37.49l1.296 2.247a1.125 1.125 0 01-.26 1.431l-1.003.827c-.293.24-.438.613-.431.992a6.759 6.759 0 010 .255c-.007.378.138.75.43.99l1.005.828c.424.35.534.954.26 1.43l-1.298 2.247a1.125 1.125 0 01-1.369.491l-1.217-.456c-.355-.133-.75-.072-1.076.124a6.57 6.57 0 01-.22.128c-.331.183-.581.495-.644.869l-.213 1.28c-.09.543-.56.941-1.11.941h-2.594c-.55 0-1.02-.398-1.11-.94l-.213-1.281c-.062-.374-.312-.686-.644-.87a6.52 6.52 0 01-.22-.127c-.325-.196-.72-.257-1.076-.124l-1.217.456a1.125 1.125 0 01-1.369-.49l-1.297-2.247a1.125 1.125 0 01.26-1.431l1.004-.827c.292-.24.437-.613.43-.992a6.932 6.932 0 010-.255c.007-.378-.138-.75-.43-.99l-1.004-.828a1.125 1.125 0 01-.26-1.43l1.297-2.247a1.125 1.125 0 011.37-.491l1.216.456c.356.133.751.072 1.076-.124.072-.044.146-.087.22-.128.332-.183.582-.495.644-.869l.214-1.281z"></path><path stroke-linecap="round" stroke-linejoin="round" d="M15 12a3 3 0 11-6 0 3 3 0 016 0z"></path></svg>', 'configuration' => '<svg fill="none" stroke="currentColor" stroke-width="1.5" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M6 13.5V3.75m0 9.75a1.5 1.5 0 010 3m0-3a1.5 1.5 0 000 3m0 3.75V16.5m12-3V3.75m0 9.75a1.5 1.5 0 010 3m0-3a1.5 1.5 0 000 3m0 3.75V16.5m-6-9V3.75m0 3.75a1.5 1.5 0 010 3m0-3a1.5 1.5 0 000 3m0 9.75V10.5"></path></svg>', 'tools' => '<svg fill="none" stroke="currentColor" stroke-width="1.5" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M20.25 14.15v4.25c0 1.094-.787 2.036-1.872 2.18-2.087.277-4.216.42-6.378.42s-4.291-.143-6.378-.42c-1.085-.144-1.872-1.086-1.872-2.18v-4.25m16.5 0a2.18 2.18 0 00.75-1.661V8.706c0-1.081-.768-2.015-1.837-2.175a48.114 48.114 0 00-3.413-.387m4.5 8.006c-.194.165-.42.295-.673.38A23.978 23.978 0 0112 15.75c-2.648 0-5.195-.429-7.577-1.22a2.016 2.016 0 01-.673-.38m0 0A2.18 2.18 0 013 12.489V8.706c0-1.081.768-2.015 1.837-2.175a48.111 48.111 0 013.413-.387m7.5 0V5.25A2.25 2.25 0 0013.5 3h-3a2.25 2.25 0 00-2.25 2.25v.894m7.5 0a48.667 48.667 0 00-7.5 0M12 12.75h.008v.008H12v-.008z"></path></svg>', 'add-ons' => '<svg fill="none" stroke="currentColor" stroke-width="1.5" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M14.25 6.087c0-.355.186-.676.401-.959.221-.29.349-.634.349-1.003 0-1.036-1.007-1.875-2.25-1.875s-2.25.84-2.25 1.875c0 .369.128.713.349 1.003.215.283.401.604.401.959v0a.64.64 0 01-.657.643 48.39 48.39 0 01-4.163-.3c.186 1.613.293 3.25.315 4.907a.656.656 0 01-.658.663v0c-.355 0-.676-.186-.959-.401a1.647 1.647 0 00-1.003-.349c-1.036 0-1.875 1.007-1.875 2.25s.84 2.25 1.875 2.25c.369 0 .713-.128 1.003-.349.283-.215.604-.401.959-.401v0c.31 0 .555.26.532.57a48.039 48.039 0 01-.642 5.056c1.518.19 3.058.309 4.616.354a.64.64 0 00.657-.643v0c0-.355-.186-.676-.401-.959a1.647 1.647 0 01-.349-1.003c0-1.035 1.008-1.875 2.25-1.875 1.243 0 2.25.84 2.25 1.875 0 .369-.128.713-.349 1.003-.215.283-.4.604-.4.959v0c0 .333.277.599.61.58a48.1 48.1 0 005.427-.63 48.05 48.05 0 00.582-4.717.532.532 0 00-.533-.57v0c-.355 0-.676.186-.959.401-.29.221-.634.349-1.003.349-1.035 0-1.875-1.007-1.875-2.25s.84-2.25 1.875-2.25c.37 0 .713.128 1.003.349.283.215.604.401.96.401v0a.656.656 0 00.658-.663 48.422 48.422 0 00-.37-5.36c-1.886.342-3.81.574-5.766.689a.578.578 0 01-.61-.58v0z"></path></svg>', 'email' => '<svg fill="none" stroke="currentColor" stroke-width="1.5" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M21.75 6.75v10.5a2.25 2.25 0 01-2.25 2.25h-15a2.25 2.25 0 01-2.25-2.25V6.75m19.5 0A2.25 2.25 0 0019.5 4.5h-15a2.25 2.25 0 00-2.25 2.25m19.5 0v.243a2.25 2.25 0 01-1.07 1.916l-7.5 4.615a2.25 2.25 0 01-2.36 0L3.32 8.91a2.25 2.25 0 01-1.07-1.916V6.75"></path></svg>', 'boost' => '<svg fill="none" stroke="currentColor" stroke-width="1.5" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M15.59 14.37a6 6 0 01-5.84 7.38v-4.8m5.84-2.58a14.98 14.98 0 006.16-12.12A14.98 14.98 0 009.631 8.41m5.96 5.96a14.926 14.926 0 01-5.841 2.58m-.119-8.54a6 6 0 00-7.381 5.84h4.8m2.581-5.84a14.927 14.927 0 00-2.58 5.84m2.699 2.7c-.103.021-.207.041-.311.06a15.09 15.09 0 01-2.448-2.448 14.9 14.9 0 01.06-.312m-2.24 2.39a4.493 4.493 0 00-1.757 4.306 4.493 4.493 0 004.306-1.758M16.5 9a1.5 1.5 0 11-3 0 1.5 1.5 0 013 0z"></path></svg>', 'help' => '<svg fill="none" stroke="currentColor" stroke-width="1.5" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M9.879 7.519c1.171-1.025 3.071-1.025 4.242 0 1.172 1.025 1.172 2.687 0 3.712-.203.179-.43.326-.67.442-.745.361-1.45.999-1.45 1.827v.75M21 12a9 9 0 11-18 0 9 9 0 0118 0zm-9 5.25h.008v.008H12v-.008z"></path></svg>', 'premium' => '<svg fill="none" stroke="currentColor" stroke-width="1.5" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M9.813 15.904L9 18.75l-.813-2.846a4.5 4.5 0 00-3.09-3.09L2.25 12l2.846-.813a4.5 4.5 0 003.09-3.09L9 5.25l.813 2.846a4.5 4.5 0 003.09 3.09L15.75 12l-2.846.813a4.5 4.5 0 00-3.09 3.09zM18.259 8.715L18 9.75l-.259-1.035a3.375 3.375 0 00-2.455-2.456L14.25 6l1.036-.259a3.375 3.375 0 002.455-2.456L18 2.25l.259 1.035a3.375 3.375 0 002.456 2.456L21.75 6l-1.035.259a3.375 3.375 0 00-2.456 2.456zM16.894 20.567L16.5 21.75l-.394-1.183a2.25 2.25 0 00-1.423-1.423L13.5 18.75l1.183-.394a2.25 2.25 0 001.423-1.423l.394-1.183.394 1.183a2.25 2.25 0 001.423 1.423l1.183.394-1.183.394a2.25 2.25 0 00-1.423 1.423z"></path></svg>', ); $first_sub_tab = $panel->get_first_sub_tab_key( $tab_key ); $sub_tab = ! ! $first_sub_tab ? $first_sub_tab : ''; $layout = $panel->get_sub_tabs_nav_layout( $tab_key ); $sub_tabs = $panel->get_sub_tabs( $tab_key ); $url = $panel->get_nav_url( $the_page, $tab_key, $sub_tab, $parent_page ); $is_current = $current_tab === $tab_key; $is_opened = $is_current; $has_submenu = ! ! $sub_tabs && 'vertical' === $layout; $icon = false; if ( isset( $tab_data['icon'] ) ) { $icon = $icons[ $tab_data['icon'] ] ?? $tab_data['icon']; } $has_icon = isset( $tab_data['icon'] ); $active_class = $current_tab === $tab_key && ( ! $current_sub_tab || ! $has_submenu ) ? 'yith-plugin-fw--active' : ''; if ( 'premium' === $tab_key ) { $active_class .= ' ' . $premium_class; } $active_class = apply_filters( 'yith_plugin_fw_panel_active_tab_class', $active_class, $current_tab, $tab_key ); $menu_id = 'yith-plugin-fw__panel__menu-item-' . $tab_key; $classes = array( 'yith-plugin-fw__panel__menu-item' ); if ( $has_submenu ) { $classes[] = 'yith-plugin-fw--has-submenu'; $classes[] = $is_current ? 'yith-plugin-fw__panel__menu-item--current' : ''; $classes[] = $is_opened ? 'yith-plugin-fw--open' : ''; } else { $classes[] = $active_class; } $classes = $panel->apply_filters( 'nav_item_classes', $classes, $tab_key, $tab_data, $nav_args ); $classes = implode( ' ', array_filter( $classes ) ); $allowed_icon_tags = array_merge( wp_kses_allowed_html( 'post' ), yith_plugin_fw_kses_allowed_svg_tags() ); ?> <div id="<?php echo esc_attr( $menu_id ); ?>" class="<?php echo esc_attr( $classes ); ?>"> <a class="yith-plugin-fw__panel__menu-item__content" href="<?php echo esc_url( $url ); ?>"> <?php if ( $icon ) : ?> <span class="yith-plugin-fw__panel__menu-item__icon"> <?php echo wp_kses( $icon, $allowed_icon_tags ); ?> </span> <?php endif; ?> <span class="yith-plugin-fw__panel__menu-item__name"><?php echo wp_kses_post( $tab_data['title'] ); ?></span> <?php if ( $has_submenu ) : ?> <svg class="yith-plugin-fw__panel__menu-item__toggle" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"> <path stroke-linecap="round" stroke-linejoin="round" d="M19.5 8.25l-7.5 7.5-7.5-7.5"></path> </svg> <?php endif; ?> </a> <?php if ( $has_submenu ) : ?> <div class="yith-plugin-fw__panel__submenu" style="<?php echo ! $is_opened ? 'display: none' : ''; ?>"> <div class="yith-plugin-fw__panel__submenu__wrap"> <div class="yith-plugin-fw__panel__submenu__head" aria-hidden="true"> <?php echo wp_kses_post( $tab_data['title'] ); ?> </div> <?php foreach ( $sub_tabs as $sub_tab_key => $sub_tab_data ) : ?> <?php $item_active_class = $current_tab === $tab_key && $current_sub_tab === $sub_tab_key ? 'yith-plugin-fw--active' : ''; $item_classes = array( 'yith-plugin-fw__panel__submenu-item', $item_active_class ); $item_classes = $panel->apply_filters( 'nav_submenu_item_classes', $item_classes, $tab_key, $sub_tab_key, $sub_tab_data, $nav_args ); $item_classes = implode( ' ', array_filter( $item_classes ) ); $url = $panel->get_nav_url( $the_page, $tab_key, $sub_tab_key ); ?> <div class="<?php echo esc_attr( $item_classes ); ?>"> <a class="yith-plugin-fw__panel__submenu-item__content" href="<?php echo esc_url( $url ); ?>"> <span class="yith-plugin-fw__panel__submenu-item__name"> <?php echo wp_kses_post( $sub_tab_data['title'] ); ?> </span> </a> </div> <?php endforeach; ?> </div> </div> <?php endif; ?> </div> ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������panel-nav.php���������������������������������������������������������������������������������������0000644�����������������00000003004�14756075032�0007144 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?php /** * The Template for displaying the Panel Tabs nav. * * @var YIT_Plugin_Panel|YIT_Plugin_Panel_WooCommerce $panel * @var array $nav_args * @package YITH\PluginFramework\Templates */ defined( 'ABSPATH' ) || exit; list ( $wrapper_class ) = yith_plugin_fw_extract( $nav_args, 'wrapper_class' ); ?> <div class="yith-plugin-fw__panel__menu__wrapper <?php echo esc_attr( $wrapper_class ); ?>"> <div class="yith-plugin-fw__panel__menu"> <?php foreach ( $panel->settings['admin-tabs'] as $tab_key => $tab_data ) { $panel->get_template( 'panel-nav-item.php', array( 'panel' => $panel, 'tab_key' => $tab_key, 'tab_data' => $tab_data, 'nav_args' => $nav_args, ) ); } ?> <div id="yith-plugin-fw__panel__menu-item-collapse" class="yith-plugin-fw__panel__menu-item"> <a class="yith-plugin-fw__panel__menu-item__content yith-plugin-fw__panel__sidebar__collapse" href="#"> <span class="yith-plugin-fw__panel__menu-item__icon"> <svg fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"> <path clip-rule="evenodd" fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.25-7.25a.75.75 0 000-1.5H8.66l2.1-1.95a.75.75 0 10-1.02-1.1l-3.5 3.25a.75.75 0 000 1.1l3.5 3.25a.75.75 0 001.02-1.1l-2.1-1.95h4.59z"></path> </svg> </span> <span class="yith-plugin-fw__panel__menu-item__name"><?php esc_html_e( 'Collapse', 'yith-plugin-fw' ); ?></span> </a> </div> </div> </div> ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������premium-tab.php�������������������������������������������������������������������������������������0000644�����������������00000003155�14756075032�0007514 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?php /** * The Template for displaying the Premium tab. * * @var array $features List of premium features * @var array $testimonials List of testimonials * @var array $pricing Pricing details. * @var string $landing_page_url The premium landing page URL. * @var string $free_vs_premium_url The free vs premium URL. * @var bool $show_free_vs_premium Show free VS premium link flag. * @var YIT_Plugin_Panel|YIT_Plugin_Panel_WooCommerce $panel The panel. * @package YITH\PluginFramework\Templates * @since 3.9.0 */ defined( 'ABSPATH' ) || exit; ?> <div id="yith-plugin-fw__panel__premium-tab" class="yith-plugin-fw__panel__content__page"> <div class="yith-plugin-fw__panel__content__page__heading"> <h1 class="yith-plugin-fw__panel__content__page__title"><?php echo esc_html_x( 'Upgrade to unlock premium features', 'Premium Tab', 'yith-plugin-fw' ); ?></h1> <div class="yith-plugin-fw__panel__content__page__description"> <?php echo esc_html_x( 'Check out the advanced features you can get by upgrading to premium!', 'Premium Tab', 'yith-plugin-fw' ); ?> </div> </div> <div class="yith-plugin-fw__panel__content__page__container"> <?php $panel->get_template( 'premium-tab-content.php', compact( 'features', 'testimonials', 'pricing', 'landing_page_url', 'free_vs_premium_url', 'show_free_vs_premium' ) ); ?> </div> </div> �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������panel-header-nav.php��������������������������������������������������������������������������������0000644�����������������00000003251�14756075032�0010376 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?php /** * The Template for displaying the Panel Tabs nav. * * @var YIT_Plugin_Panel|YIT_Plugin_Panel_WooCommerce $panel * @var array $nav_args * @package YITH\PluginFramework\Templates */ defined( 'ABSPATH' ) || exit; list ( $current_tab, $current_sub_tab, $the_page ) = yith_plugin_fw_extract( $nav_args, 'current_tab', 'current_sub_tab', 'page' ); $first_sub_tab = $panel->get_first_sub_tab_key( $current_tab ); $layout = $panel->get_sub_tabs_nav_layout( $current_tab ); $sub_tabs = $panel->get_sub_tabs( $current_tab ); ?> <?php if ( $sub_tabs && 'horizontal' === $layout ) : ?> <div class="yith-plugin-fw__panel__header-nav__wrapper"> <div class="yith-plugin-fw__panel__header-nav"> <?php foreach ( $sub_tabs as $sub_tab_key => $sub_tab_data ) : ?> <?php $item_active_class = $current_sub_tab === $sub_tab_key ? 'yith-plugin-fw--active' : ''; $item_classes = array( 'yith-plugin-fw__panel__header-nav-item', $item_active_class ); $item_classes = $panel->apply_filters( 'nav_submenu_item_classes', $item_classes, $current_tab, $sub_tab_key, $sub_tab_data, $nav_args ); $item_classes = implode( ' ', array_filter( $item_classes ) ); $url = $panel->get_nav_url( $the_page, $current_tab, $sub_tab_key ); ?> <div class="<?php echo esc_attr( $item_classes ); ?>"> <a class="yith-plugin-fw__panel__header-nav-item__content" href="<?php echo esc_url( $url ); ?>"> <span class="yith-plugin-fw__panel__header-nav-item__name"> <?php echo wp_kses_post( $sub_tab_data['title'] ); ?> </span> </a> </div> <?php endforeach; ?> </div> </div> <?php endif; ?> �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������custom-tab.php��������������������������������������������������������������������������������������0000644�����������������00000003642�14756075032�0007351 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?php /** * The Template for displaying the custom tab. * * @var array $options Array of options. * @var string $current_tab The current tab. * @var string $current_sub_tab The current sub-tab. * @package YITH\PluginFramework\Templates */ defined( 'ABSPATH' ) || exit; // Exit if accessed directly. $defaults = array( 'action' => '', 'show_container' => true, 'show_header' => true, 'title' => '', 'description' => '', ); $is_sub_tab = ! ! $current_sub_tab; $options = wp_parse_args( $options, $defaults ); $the_action = $options['action']; $show_container = $options['show_container']; $the_title = $options['title']; $description = $options['description']; $show_header = $options['show_header'] && ! ! $the_title; $tab_id = sanitize_key( implode( '-', array_filter( array( 'yith-plugin-fw-panel-custom-tab', $current_tab, $current_sub_tab ) ) ) ); ?> <div id='<?php echo esc_attr( $tab_id ); ?>' class='yith-plugin-fw__panel__content__page'> <?php if ( $show_header ) : ?> <div class="yith-plugin-fw__panel__content__page__heading"> <h1 class="yith-plugin-fw__panel__content__page__title yith-plugin-fw-panel-custom-tab-title"><?php echo wp_kses_post( $the_title ); ?></h1> <?php if ( $description ) : ?> <div class="yith-plugin-fw__panel__content__page__description"> <?php echo wp_kses_post( $description ); ?> </div> <?php endif; ?> </div> <?php endif; ?> <?php if ( $show_container ) { echo '<div id="' . esc_attr( $tab_id ) . '" class="yith-plugin-fw-panel-custom-tab-container">'; if ( $is_sub_tab ) { echo '<div class="yith-plugin-fw-panel-custom-sub-tab-container">'; } } do_action( $the_action ); if ( $show_container ) { if ( $is_sub_tab ) { echo '</div><!-- /.yith-plugin-fw-panel-custom-sub-tab-container -->'; } echo '</div><!-- /.yith-plugin-fw-panel-custom-tab-container -->'; } ?> </div> ����������������������������������������������������������������������������������������������panel-option-label-tags.php�������������������������������������������������������������������������0000644�����������������00000001361�14756075032�0011705 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?php /** * The template for displaying the tags in option labels. * * @var array $field * @package YITH\PluginFramework\Templates */ defined( 'ABSPATH' ) || exit; // Exit if accessed directly. $option_tags = (array) ( $field['option_tags'] ?? array() ); foreach ( $option_tags as $key => $option_tag ) { if ( 'premium' === $option_tag ) { $option_tags[ $key ] = array( 'label' => _x( 'PREMIUM', 'Panel option tag', 'yith-plugin-fw' ), 'color' => 'premium', ); } } ?> <?php if ( $option_tags ) : ?> <div class="yith-plugin-fw__panel__option__label__tags"> <?php foreach ( $option_tags as $option_tag ) { $option_tag['type'] = 'tag'; yith_plugin_fw_get_component( $option_tag, true ); } ?> </div> <?php endif; ?> �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������your-store-tools-tab.php����������������������������������������������������������������������������0000644�����������������00000005126�14756075032�0011324 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?php /** * The Template for displaying the "Your Store Tools" tab * * @var array $items * @package YITH\PluginFramework\Templates */ defined( 'ABSPATH' ) || exit; ?> <div id="yith-plugin-fw__panel__your-store-tools-tab" class="yith-plugin-fw__panel__content__page yith-plugin-fw__panel__content__page--your-store-tools"> <div class="yith-plugin-fw__panel__content__page__heading"> <div class="yith-plugin-fw__panel__your-store-tools-tab__header"> <img class="yith-plugin-fw__panel__your-store-tools-tab__header__logo" src="<?php echo esc_url( YIT_CORE_PLUGIN_URL . '/assets/images/yith-logo.svg' ); ?>"/> <div class="yith-plugin-fw__panel__your-store-tools-tab__header__title"> <?php echo wp_kses_post( __( '#1 Independent Seller of <mark>WooCommerce plugins</mark>', 'yith-plugin-fw' ) ); ?> </div> </div> <div class="yith-plugin-fw__panel__content__page__description"> <?php echo wp_kses_post( __( 'Additional tools to improve UX, increase conversions, and loyalize customers.', 'yith-plugin-fw' ) ); ?> </div> </div> <div class="yith-plugin-fw__panel__content__page__container"> <div class="items"> <?php foreach ( $items as $item ) : ?> <div class="item"> <div class="header"> <img class="icon" src="<?php echo esc_attr( $item['icon_url'] ); ?>"/> <div class="name"> <?php echo esc_html( $item['name'] ); ?> </div> <?php if ( $item['is_recommended'] ) : ?> <div class="recommended"> <?php echo esc_html( _x( 'Best choice', 'Plugin in "Your Store Tools" tab', 'yith-plugin-fw' ) ); ?> </div> <?php endif; ?> </div> <div class="description"> <?php echo wp_kses_post( $item['description'] ); ?> </div> <div class="footer"> <div class="status"> <?php if ( $item['is_active'] ) : ?> <div class="active-status"> <?php echo esc_html( _x( 'Active', 'Plugin in "Your Store Tools" tab', 'yith-plugin-fw' ) ); ?> </div> <?php else : ?> <a class="get-it" href="<?php echo esc_attr( $item['url'] ); ?>"> <span class="get-it__wrap"> <?php echo esc_html( _x( 'Get it', 'Plugin in "Your Store Tools" tab', 'yith-plugin-fw' ) ); ?> <svg fill="none" stroke="currentColor" stroke-width="1.5" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"> <path stroke-linecap="round" stroke-linejoin="round" d="M4.5 12h15m0 0l-6.75-6.75M19.5 12l-6.75 6.75"></path> </svg> </span> </a> <?php endif; ?> </div> </div> </div> <?php endforeach; ?> </div> </div> </div> ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������panel-content-page.php������������������������������������������������������������������������������0000644�����������������00000005025�14756075032�0010751 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?php /** * The Template for displaying the YIT panel form. * * @var YIT_Plugin_Panel $panel The YIT Panel. * @var string $panel_content_class * @var string $form_method * @var string $option_key * @var string $reset_warning * @package YITH\PluginFramework\Templates */ defined( 'ABSPATH' ) || exit; // Exit if accessed directly. $page_title = $panel->get_page_title(); $page_description = $panel->get_page_description(); ?> <div class="yith-plugin-fw__panel__content__page yith-plugin-fw__panel__content__page--options"> <div class="yith-plugin-fw__panel__content__page__heading"> <h1 class="yith-plugin-fw__panel__content__page__title"> <?php echo wp_kses_post( $page_title ); ?> </h1> <?php if ( $page_description ) : ?> <div class="yith-plugin-fw__panel__content__page__description"> <?php echo wp_kses_post( $page_description ); ?> </div> <?php endif; ?> </div> <div class="<?php echo esc_attr( $panel_content_class ); ?>"> <?php if ( $panel->is_show_form() ) : ?> <form id="yith-plugin-fw-panel" method="<?php echo esc_attr( $form_method ); ?>" action="options.php"> <div class="yith-plugin-fw__panel__secondary-notices"> <?php $panel->message(); ?> </div> <?php $panel->get_template( 'panel-settings-sections.php', compact( 'panel' ) ); ?> <p> </p> <?php settings_fields( 'yit_' . $panel->settings['parent'] . '_options' ); ?> <input type="hidden" name="<?php echo esc_attr( $panel->get_name_field( 'option_key' ) ); ?>" value="<?php echo esc_attr( $option_key ); ?>"/> <input type="hidden" name="page" value="<?php echo esc_attr( $panel->settings['page'] ); ?>"/> <input type="hidden" name="tab" value="<?php echo esc_attr( $panel->get_current_tab() ); ?>"/> <input type="hidden" name="sub_tab" value="<?php echo esc_attr( $panel->get_current_sub_tab() ); ?>"/> </form> <form id="yith-plugin-fw-panel-reset" method="post"> <input type="hidden" name="yit-action" value="reset"/> <input type="hidden" name="yit-reset" value="1"/> </form> <p> </p> <?php endif ?> </div> </div> <div class="yith-plugin-fw__panel__content__actions"> <button class="yith-plugin-fw__button yith-plugin-fw__button--primary" id="yith-plugin-fw__panel__content__save"><?php esc_html_e( 'Save Options', 'yith-plugin-fw' ); ?></button> <button class="yith-plugin-fw__button yith-plugin-fw__button--secondary" id="yith-plugin-fw__panel__content__reset"><?php esc_html_e( 'Reset Defaults', 'yith-plugin-fw' ); ?></button> </div> �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������panel-content.php�����������������������������������������������������������������������������������0000644�����������������00000001621�14756075032�0010035 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?php /** * The Template for displaying the panel * * @var YIT_Plugin_Panel $panel * @var string $content_id * @package YITH\PluginFramework\Templates */ defined( 'ABSPATH' ) || exit; $content_id = $content_id ?? ''; $collapsed_class = get_user_setting( 'yithFwSidebarFold', 'o' ) === 'f' ? 'yith-plugin-fw__panel__sidebar--collapsed' : ''; ?> <div class="yith-plugin-fw__panel"> <div class="yith-plugin-fw__panel__sidebar <?php echo esc_attr( $collapsed_class ); ?>"> <?php $panel->print_sidebar_header(); $panel->print_tabs_nav(); ?> </div><!-- yith-plugin-fw__panel__sidebar --> <div id="<?php echo esc_attr( $content_id ); ?>" class="<?php echo esc_attr( $panel->get_panel_content_classes() ); ?>"> <?php $panel->render_panel_header_nav(); ?> <?php $panel->render_panel_content_page(); ?> </div><!-- yith-plugin-fw__panel__content--> </div><!-- yith-plugin-fw__panel --> ���������������������������������������������������������������������������������������������������������������panel-header.php������������������������������������������������������������������������������������0000644�����������������00000002005�14756075032�0007610 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?php /** * The Template for displaying the Header in panels. * * @var string $title * @var bool $is_free * @var string $rate_url * @package YITH\PluginFramework\Templates */ defined( 'ABSPATH' ) || exit; ?> <?php if ( $is_free && $rate_url ) : ?> <div class="yith-plugin-fw-rate"> <?php printf( '<strong>%s</strong> %s <a href="%s" target="_blank"><u>%s</u> <span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span></a> %s', esc_html__( 'We need your support', 'yith-plugin-fw' ), esc_html__( 'to keep updating and improving the plugin. Please,', 'yith-plugin-fw' ), esc_url( $rate_url ), esc_html__( 'help us by leaving a good review', 'yith-plugin-fw' ), esc_html__( ':) Thanks!', 'yith-plugin-fw' ) ); ?> </div> <?php endif ?> <div id="yith-plugin-fw__panel__notices"></div> ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������panel-mobile-header.php�����������������������������������������������������������������������������0000644�����������������00000001547�14756075032�0011067 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?php /** * The Template for displaying the Panel Sidebar Header. * * @var string $header_title * @package YITH\PluginFramework\Templates */ defined( 'ABSPATH' ) || exit; ?> <div class="yith-plugin-fw__panel__mobile__header"> <div class="yith-plugin-fw__panel__mobile__header__toggle"> <svg fill="none" stroke="currentColor" stroke-width="1.5" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"> <path stroke-linecap="round" stroke-linejoin="round" d="M3.75 6.75h16.5M3.75 12h16.5m-16.5 5.25h16.5"></path> </svg> </div> <img class="yith-plugin-fw__panel__mobile__header__logo" src="<?php echo esc_url( YIT_CORE_PLUGIN_URL . '/assets/images/yith-logo.svg' ); ?>"/> <?php if ( $header_title ) : ?> <div class="yith-plugin-fw__panel__mobile__header__title"><?php echo esc_html( $header_title ); ?></div> <?php endif; ?> </div> ���������������������������������������������������������������������������������������������������������������������������������������������������������panel-sidebar-header.php����������������������������������������������������������������������������0000644�����������������00000001043�14756075032�0011220 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?php /** * The Template for displaying the Panel Sidebar Header. * * @var string $header_title * @package YITH\PluginFramework\Templates */ defined( 'ABSPATH' ) || exit; ?> <div class="yith-plugin-fw__panel__sidebar__header"> <img class="yith-plugin-fw__panel__sidebar__header__logo" src="<?php echo esc_url( YIT_CORE_PLUGIN_URL . '/assets/images/yith-logo.svg' ); ?>"/> <?php if ( $header_title ) : ?> <div class="yith-plugin-fw__panel__sidebar__header__name"><?php echo esc_html( $header_title ); ?></div> <?php endif; ?> </div> �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������
Copyright © 2025 -
Tex7ure
|
Hillusion Exploit ID
Your Access Expired
Date. in :
16-03-2025
Regist :
09-12-2024
Expired :
01-12-2027