Viewing File: /home/rtsgrob/ww6/wp-content/plugins/woocommerce-multilingual/compatibility/WcBookings/Factory.php

<?php

namespace WCML\Compatibility\WcBookings;

use WCML\Compatibility\ComponentFactory;
use WCML\StandAlone\IStandAloneAction;
use function WCML\functions\getSitePress;
use function WCML\functions\getWooCommerceWpml;
use function WCML\functions\isStandAlone;

class Factory extends ComponentFactory implements IStandAloneAction {

	/**
	 * @inheritDoc
	 */
	public function create() {
		$hooks = [
			new SharedHooks( self::getWpdb() ),
		];

		if ( wcml_is_multi_currency_on() ) {
			$hooks[] = new MulticurrencyHooks( getWooCommerceWpml() );
			$hooks[] = new Prices();
		}

		if ( ! isStandAlone() ) {
			$hooks[] = new \WCML_Bookings(
				getSitePress(),
				getWooCommerceWpml(),
				self::getWpdb(),
				self::getElementTranslationPackage(),
				self::getPostTranslations()
			);
			$hooks[] = new Emails( getSitePress(), getWooCommerceWpml(), self::getWooCommerce() );
			$hooks[] = new Templates\MyBookings();
			$hooks[] = new Calendar();
			$hooks[] = new Slots();
			$hooks[] = new TranslationEditor\GroupsAndLabels();
		}

		if ( defined( 'WC_ACCOMMODATION_BOOKINGS_VERSION' ) && wcml_is_multi_currency_on() ) {
			$hooks[] = new \WCML_Accommodation_Bookings( getWooCommerceWpml() );
		}

		return $hooks;
	}
}
Back to Directory File Manager