Reviews::register( $container )

Summary

No summary available.

Source

File: src/BigCommerce/Container/Reviews.php

	public function register( Container $container ) {
		$container[ self::PRODUCT_LISTENER ] = function ( Container $container ) {
			return new Product_Update_Listener();
		};
		$meta_update                         = $this->create_callback( 'product_meta_updated', function ( $meta_id, $post_id, $meta_key, $meta_value ) use ( $container ) {
			$container[ self::PRODUCT_LISTENER ]->meta_updated( $meta_id, $post_id, $meta_key, $meta_value );
		} );
		add_action( 'added_post_meta', $meta_update, 10, 4 );
		add_action( 'updated_post_meta', $meta_update, 10, 4 );

		$container[ self::FETCHER ] = function ( Container $container ) {
			return new Review_Fetcher( $container[ Api::FACTORY ]->catalog() );
		};

		$container[ self::CACHER ] = function ( Container $container ) {
			return new Review_Cache( $container[ self::FETCHER ] );
		};
		add_action( Product_Update_Listener::TRIGGER_UPDATE, $this->create_callback( 'update_cache', function ( $product_id ) use ( $container ) {
			$container[ self::CACHER ]->update_cache( $product_id );
		} ), 10, 1 );
	}


User Contributed Notes

You must log in before being able to contribute a note or feedback.