File "App_Shop.php"

Full Path: /home/romayxjt/public_html/wp-content/plugins/the-events-calendar/common/src/Tribe/App_Shop.php
File size: 12.44 KB
MIME-type: text/x-php
Charset: utf-8

<?php

// don't load directly
if ( ! defined( 'ABSPATH' ) ) {
	die( '-1' );
}

if ( ! class_exists( 'Tribe__App_Shop' ) ) {
	/**
	 * Class that handles the integration with our Shop App API
	 */
	class Tribe__App_Shop {

		/**
		 * Slug of the WP admin menu item
		 */
		const MENU_SLUG = 'tribe-app-shop';

		/**
		 * Singleton instance
		 *
		 * @var null or Tribe__App_Shop
		 */
		private static $instance = null;
		/**
		 * The slug for the new admin page
		 *
		 * @var string
		 */
		private $admin_page = null;

		/**
		 * Class constructor
		 */
		public function __construct() {
			add_action( 'admin_menu', [ $this, 'add_menu_page' ], 100 );
			add_action( 'wp_before_admin_bar_render', [ $this, 'add_toolbar_item' ], 20 );

			$this->register_assets();
		}

		/**
		 * Adds the page to the admin menu
		 */
		public function add_menu_page() {
			if ( ! tribe( 'settings' )->should_setup_pages() ) {
				return;
			}

			$page_title = esc_html__( 'Event Add-Ons', 'tribe-common' );
			$menu_title = esc_html__( 'Event Add-Ons', 'tribe-common' );
			$capability = apply_filters( 'tribe_events_addon_page_capability', 'install_plugins' );

			$where = tribe( 'settings' )->get_parent_slug();

			$this->admin_page = add_submenu_page(
				$where,
				$page_title,
				$menu_title,
				$capability,
				self::MENU_SLUG,
				[
					$this,
					'do_menu_page',
				]
			);
		}

		/**
		 * Adds a link to the shop app to the WP admin bar
		 */
		public function add_toolbar_item() {

			$capability = apply_filters( 'tribe_events_addon_page_capability', 'install_plugins' );

			// prevent users who cannot install plugins from seeing addons link
			if ( current_user_can( $capability ) ) {
				global $wp_admin_bar;

				$wp_admin_bar->add_menu( [
					'id'     => 'tribe-events-app-shop',
					'title'  => esc_html__( 'Event Add-Ons', 'tribe-common' ),
					'href'   => tribe( 'settings' )->get_url( [ 'page' => self::MENU_SLUG ] ),
					'parent' => 'tribe-events-settings-group',
				] );
			}
		}

		/**
		 * Registers the plugin assets
		 */
		protected function register_assets() {
			tec_assets(
				Tribe__Main::instance(),
				[
					[ 'tribe-app-shop-css', 'app-shop.css' ],
					[ 'tribe-app-shop-js', 'app-shop.js', [ 'jquery' ] ],
				],
				'admin_enqueue_scripts',
				[
					'conditionals' => [ $this, 'is_current_page' ],
				]
			);
		}

		/**
		 * Checks if the current page is the app shop
		 *
		 * @since 4.5.7
		 *
		 * @return bool
		 */
		public function is_current_page() {
			if ( ! tribe( 'settings' )->should_setup_pages() || ! did_action( 'admin_menu' ) ) {
				return false;
			}

			if ( is_null( $this->admin_page ) ) {
				_doing_it_wrong(
					__FUNCTION__,
					'Function was called before it is possible to accurately determine what the current page is.',
					'4.5.6'
				);
				return false;
			}

			return Tribe__Admin__Helpers::instance()->is_screen( $this->admin_page );
		}

		/**
		 * Renders the Shop App page
		 */
		public function do_menu_page() {
			$main = Tribe__Main::instance();
			$products = $this->get_all_products();
			$bundles = $this->get_bundles();
			$extensions = $this->get_extensions();
			$stellar_brands = $this->get_stellar_brands();
			include_once Tribe__Main::instance()->plugin_path . 'src/admin-views/app-shop.php';
		}

		/**
		 * Gets all products from the API
		 *
		 * @return array|WP_Error
		 */
		private function get_all_products() {
			$all_products = tribe( 'plugins.api' )->get_products();

			$products = [
				'the-events-calendar'      => (object) $all_products['the-events-calendar'],
				'events-calendar-pro'      => (object) $all_products['events-calendar-pro'],
				'event-aggregator'         => (object) $all_products['event-aggregator'],
				'event-tickets'            => (object) $all_products['event-tickets'],
				'event-tickets-plus'       => (object) $all_products['event-tickets-plus'],
				'promoter'                 => (object) $all_products['promoter'],
				'tribe-filterbar'          => (object) $all_products['tribe-filterbar'],
				'events-community'         => (object) $all_products['events-community'],
				'event-schedule-manager'   => (object) $all_products['event-schedule-manager'],
				'tribe-eventbrite'         => (object) $all_products['tribe-eventbrite'],
				'image-widget-plus'        => (object) $all_products['image-widget-plus'],
			];

			return $products;
		}

		/**
		 * Gets product bundles
		 *
		 * @return array|WP_Error
		 */
		private function get_bundles() {
			$bundles = [
				(object) [
					'title'       => __( 'Events Marketing Bundle', 'tribe-common' ),
					'logo'        => 'images/logo/bundle-event-marketing.svg',
					'link'        => 'https://evnt.is/1aj3',
					'discount'    => __( 'Save over 20%', 'tribe-common' ),
					'description' => __( 'Ticket sales, attendee management, and email marketing for your events', 'tribe-common' ),
					'includes'    => [
						'events-calendar-pro',
						'event-tickets-plus',
						'promoter',
					],
				],
				(object) [
					'title'       => __( 'Event Importer Bundle', 'tribe-common' ),
					'logo'        => 'images/logo/bundle-event-importer.svg',
					'link'        => 'https://evnt.is/1aj2',
					'discount'    => __( 'Save over 25%', 'tribe-common' ),
					'description' => __( 'Fill your calendar with events from across the web, including Google Calendar, Meetup, and more.', 'tribe-common' ),
					'includes'    => [
						'events-calendar-pro',
						'tribe-filterbar',
						'event-aggregator'
					],
				],
				(object) [
					'title'       => __( 'Community Manager Bundle', 'tribe-common' ),
					'logo'        => 'images/logo/bundle-community-manager.svg',
					'link'        => 'https://evnt.is/1aj4',
					'discount'    => __( 'Save over 20%', 'tribe-common' ), /* code review: fix this */
					'description' => __( 'Handle event submissions with ticket sales and everything you need to build a robust community.', 'tribe-common' ),
					'includes'    => [
						'event-tickets-plus',
						'events-calendar-pro',
						'events-community',
						'tribe-filterbar',
					],
				],
				(object) [
					'title'       => __( 'The Complete Collection', 'tribe-common' ),
					'logo'        => 'images/logo/bundle-ultimate.svg',
					'link'        => 'https://evnt.is/1aj5',
					'discount'    => __( 'Save over 20%', 'tribe-common' ), /* code review: fix this */
					'description' => __( 'All of our premium events management plugins at a deep discount.', 'tribe-common' ),
					'includes'    => [
						'event-aggregator',
						'event-schedule-manager',
						'event-tickets-plus',
						'events-calendar-pro',
						'events-community',
						'promoter',
						'tribe-eventbrite',
						'tribe-filterbar',
					],
				],

			];

			return $bundles;
		}

		/**
		 * Gets product extensions
		 *
		 * @return array|WP_Error
		 */
		private function get_extensions() {
			$extensions = [
				(object) [
					'title'       => __( 'Website URL CTA', 'tribe-common' ),
					'link'        => 'https://evnt.is/1aj6',
					'image'       => 'images/shop/extension-web-url-cta.jpg',
					'description' => __( 'Create a strong call-to-action for attendees to "Join Webinar" instead of only sharing a website address.', 'tribe-common' ),
				],
				(object) [
					'title'       => __( 'Link Directly to Webinar', 'tribe-common' ),
					'link'        => 'https://evnt.is/1aj7',
					'image'       => 'images/shop/extension-link-to-webinar.jpg',
					'description' => __( 'When users click on the event title, they’ll be taken right to the source of your event, offering a direct route to join.', 'tribe-common' ),
				],
				(object) [
					'title'       => __( 'Events Happening Now', 'tribe-common' ),
					'link'        => 'https://evnt.is/1aj8',
					'image'       => 'images/shop/extension-events-happening-now.jpg',
					'description' => __( 'Use this shortcode to display events that are currently in progress, like webinars and livestreams.', 'tribe-common' ),
				],
				(object) [
					'title'       => __( 'Custom Venue Links', 'tribe-common' ),
					'link'        => 'https://evnt.is/1aj9',
					'image'       => 'images/shop/extension-custom-venue-links.jpg',
					'description' => __( 'Turn the venue name for your event into a clickable URL — a great way to link directly to a venue’s website or a virtual meeting.', 'tribe-common' ),
				],
				(object) [
					'title'       => __( 'Adjust Label', 'tribe-common' ),
					'link'        => 'https://evnt.is/1aja',
					'image'       => 'images/shop/extension-change-label.jpg',
					'description' => __( 'Change "Events" to "Webinars," or "Venues" to "Livestream," or "Organizers" to "Hosts." Tailor your calendar for virtual events and meetings.', 'tribe-common' ),
				],
				(object) [
					'title'       => __( 'Reach Attendees', 'tribe-common' ),
					'link'        => 'https://evnt.is/1ajc',
					'image'       => 'images/shop/extension-advanced-options.jpg',
					'description' => __( 'From registration to attendance history, view every step of the event lifecycle with this HubSpot integration.', 'tribe-common' ),
				],
			];

			return $extensions;
		}

		/**
		 * Gets Stellar brands
		 *
		 * @return array|WP_Error
		 */
		private function get_stellar_brands() {
			$stellar_brands = [
				(object) [
					'image'       => 'images/shop/stellar-learndash-cta.jpg',
					'logo'        => 'images/shop/stellar-learndash-logo.png',
					'title'       => __( 'The online course platform created by e-learning experts.', 'tribe-common' ),
					'link'        => 'https://evnt.is/learndash',
					'linktext'    => __( 'Add Courses', 'tribe-common' ),
					'description' => __( 'Trusted to power learning programs for major universities, startups, entrepreneurs, and bloggers worldwide.', 'tribe-common' ),
				],
				(object) [
					'image'       => 'images/shop/stellar-ithemes-cta.jpg',
					'logo'        => 'images/shop/stellar-solidwp-logo.png',
					'title'       => __( 'Security, backups, and management — that’s Solid Suite.', 'tribe-common' ),
					'link'        => 'https://evnt.is/ithemes',
					'linktext'    => __( 'Add Security', 'tribe-common' ),
					'description' => __( 'SolidWP, the seriously solid foundation your WordPress site needs. Built with performance in mind.', 'tribe-common' ),
				],
				(object) [
					'image'       => 'images/shop/stellar-rcp-cta.jpg',
					'logo'        => 'images/shop/stellar-rcp-logo.png',
					'title'       => __( 'Built with developers in mind.', 'tribe-common' ),
					'link'        => 'https://evnt.is/rcp',
					'linktext'    => __( 'Add Content Restriction', 'tribe-common' ),
					'description' => __( 'Restrict Content Pro is flexible, easy to extend, and chock full of action hooks and filters, making it easy to modify and tweak to your specific needs.', 'tribe-common' ),
				],
				(object) [
					'image'       => 'images/shop/stellar-kadence-cta.jpg',
					'logo'        => 'images/shop/stellar-kadence-logo.png',
					'title'       => __( 'Build better WordPress websites with Kadence.', 'tribe-common' ),
					'link'        => 'https://evnt.is/kadencewp',
					'linktext'    => __( 'Add Starter Templates', 'tribe-common' ),
					'description' => __( 'Kadence lets you unlock your creativity in the WordPress Block Editor with expertly designed blocks, a robust theme, and a massive library of starter templates.', 'tribe-common' ),
				],
				(object) [
					'image'       => 'images/shop/stellar-iconic-cta.jpg',
					'logo'        => 'images/shop/stellar-iconic-logo.png',
					'title'       => __( 'Sales-boosting WooCommerce plugins.', 'tribe-common' ),
					'link'        => 'https://evnt.is/iconic',
					'linktext'    => __( 'Add Commerce Tools', 'tribe-common' ),
					'description' => __( 'Easy-to-use WooCommerce plugins work perfectly together, with any theme. Create a fast and profitable eCommerce store without any technical knowledge.
					', 'tribe-common' ),
				],
				(object) [
					'image'       => 'images/shop/stellar-give-cta.jpg',
					'logo'        => 'images/shop/stellar-give-logo.png',
					'title'       => __( 'The best WordPress donation plugin.', 'tribe-common' ),
					'link'        => 'https://evnt.is/givewp',
					'linktext'    => __( 'Add Donations', 'tribe-common' ),
					'description' => __( 'GiveWP makes it easy to raise money online with donation forms, donor databases, and fundraising reporting.', 'tribe-common' ),
				],
			];

			return $stellar_brands;
		}

		/**
		 * Static Singleton Factory Method
		 *
		 * @return Tribe__App_Shop
		 */
		public static function instance() {
			if ( ! isset( self::$instance ) ) {
				$className      = __CLASS__;
				self::$instance = new $className;
			}

			return self::$instance;
		}
	}
}