__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

[email protected]: ~ $
<?php
/**
 * Setup customize items.
 *
 * @package WooCommerce\Admin\Customize
 * @version 3.1.0
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

if ( ! class_exists( 'WC_Admin_Customize', false ) ) :

	/**
	 * WC_Admin_Customize Class.
	 */
	class WC_Admin_Customize {

		/**
		 * Initialize customize actions.
		 */
		public function __construct() {
			// Include custom items to customizer nav menu settings.
			add_filter( 'customize_nav_menu_available_item_types', array( $this, 'register_customize_nav_menu_item_types' ) );
			add_filter( 'customize_nav_menu_available_items', array( $this, 'register_customize_nav_menu_items' ), 10, 4 );
		}

		/**
		 * Register customize new nav menu item types.
		 * This will register WooCommerce account endpoints as a nav menu item type.
		 *
		 * @since  3.1.0
		 * @param  array $item_types Menu item types.
		 * @return array
		 */
		public function register_customize_nav_menu_item_types( $item_types ) {
			$item_types[] = array(
				'title'      => __( 'WooCommerce Endpoints', 'woocommerce' ),
				'type_label' => __( 'WooCommerce Endpoint', 'woocommerce' ),
				'type'       => 'woocommerce_nav',
				'object'     => 'woocommerce_endpoint',
			);

			return $item_types;
		}

		/**
		 * Register account endpoints to customize nav menu items.
		 *
		 * @since  3.1.0
		 * @param  array   $items  List of nav menu items.
		 * @param  string  $type   Nav menu type.
		 * @param  string  $object Nav menu object.
		 * @param  integer $page   Page number.
		 * @return array
		 */
		public function register_customize_nav_menu_items( $items = array(), $type = '', $object = '', $page = 0 ) {
			if ( 'woocommerce_endpoint' !== $object ) {
				return $items;
			}

			// Don't allow pagination since all items are loaded at once.
			if ( 0 < $page ) {
				return $items;
			}

			// Get items from account menu.
			$endpoints = wc_get_account_menu_items();

			// Remove dashboard item.
			if ( isset( $endpoints['dashboard'] ) ) {
				unset( $endpoints['dashboard'] );
			}

			// Include missing lost password.
			$endpoints['lost-password'] = __( 'Lost password', 'woocommerce' );

			$endpoints = apply_filters( 'woocommerce_custom_nav_menu_items', $endpoints );

			foreach ( $endpoints as $endpoint => $title ) {
				$items[] = array(
					'id'         => $endpoint,
					'title'      => $title,
					'type_label' => __( 'Custom Link', 'woocommerce' ),
					'url'        => esc_url_raw( wc_get_account_endpoint_url( $endpoint ) ),
				);
			}

			return $items;
		}
	}

endif;

return new WC_Admin_Customize();

Filemanager

Name Type Size Permission Actions
helper Folder 0775
importers Folder 0775
list-tables Folder 0775
marketplace-suggestions Folder 0775
meta-boxes Folder 0775
notes Folder 0775
plugin-updates Folder 0775
reports Folder 0775
settings Folder 0775
views Folder 0775
class-wc-admin-addons.php File 13.24 KB 0664
class-wc-admin-api-keys-table-list.php File 7.07 KB 0664
class-wc-admin-api-keys.php File 7.82 KB 0664
class-wc-admin-assets.php File 46.97 KB 0664
class-wc-admin-attributes.php File 20.67 KB 0664
class-wc-admin-brands.php File 26.21 KB 0664
class-wc-admin-customize.php File 2.5 KB 0664
class-wc-admin-dashboard-setup.php File 4.57 KB 0664
class-wc-admin-dashboard.php File 24.32 KB 0664
class-wc-admin-duplicate-product.php File 9.69 KB 0664
class-wc-admin-exporters.php File 7.43 KB 0664
class-wc-admin-help.php File 4.71 KB 0664
class-wc-admin-importers.php File 8.45 KB 0664
class-wc-admin-log-table-list.php File 13.18 KB 0664
class-wc-admin-marketplace-promotions.php File 11.53 KB 0664
class-wc-admin-menus.php File 19 KB 0664
class-wc-admin-meta-boxes.php File 9.99 KB 0664
class-wc-admin-notices.php File 23.74 KB 0664
class-wc-admin-permalink-settings.php File 9.1 KB 0664
class-wc-admin-pointers.php File 2.19 KB 0664
class-wc-admin-post-types.php File 36.49 KB 0664
class-wc-admin-profile.php File 9.85 KB 0664
class-wc-admin-reports.php File 8.42 KB 0664
class-wc-admin-settings.php File 39 KB 0664
class-wc-admin-setup-wizard.php File 85.87 KB 0664
class-wc-admin-status.php File 14.46 KB 0664
class-wc-admin-taxonomies.php File 17.72 KB 0664
class-wc-admin-upload-downloadable-product.php File 3.75 KB 0664
class-wc-admin-webhooks-table-list.php File 11.06 KB 0664
class-wc-admin-webhooks.php File 14.56 KB 0664
class-wc-admin.php File 13.6 KB 0664
wc-admin-functions.php File 18.92 KB 0664
wc-meta-box-functions.php File 13.71 KB 0664
woocommerce-legacy-reports.php File 535 B 0664
Filemanager