├── Api ├── ConfigProviderInterface.php ├── Data │ ├── Dcc │ │ ├── CatalogData │ │ │ ├── CatalogProduct │ │ │ │ ├── CategoryPathBuilderInterface.php │ │ │ │ ├── CategoryPathInterface.php │ │ │ │ ├── FamilyBuilderInterface.php │ │ │ │ └── FamilyInterface.php │ │ │ ├── CatalogProductBuilderInterface.php │ │ │ └── CatalogProductInterface.php │ │ ├── CatalogDataBuilderInterface.php │ │ └── CatalogDataInterface.php │ └── IndexInterface.php ├── DccInterface.php ├── IndexRepositoryInterface.php └── StringFormatterInterface.php ├── Block ├── Adminhtml │ └── System │ │ └── Config │ │ └── Sftp │ │ └── TestConnection.php └── System │ └── Config │ └── Button.php ├── Console └── Command │ ├── Index.php │ ├── Product.php │ ├── Purchase.php │ └── PurchaseTest.php ├── Controller ├── Adminhtml │ ├── Bvfeed │ │ ├── Rebuildproduct.php │ │ ├── Runproduct.php │ │ └── Runpurchase.php │ ├── Bvindex │ │ └── Index.php │ └── Config │ │ └── Sftp │ │ └── TestConnection.php ├── Index.php ├── Pixel │ └── Test.php └── Submission │ └── Container.php ├── LICENSE.md ├── Logger ├── Handler.php └── Logger.php ├── Model ├── BVSEOSDK │ ├── BV.php │ ├── BVFooter.php │ ├── BVUtility.php │ ├── Base.php │ ├── CHANGELOG.md │ ├── ExampleQuestionsGetContent.php │ ├── ExampleReviewsGetAggregateRating.php │ ├── ExampleReviewsGetContent.php │ ├── ExampleReviewsGetReviews.php │ ├── ExampleSEOGetContent.php │ ├── ExampleSellerratingsGetContent.php │ ├── ExampleSpotlightsGetContent.php │ ├── ExampleStoriesGetContent.php │ ├── LICENSE │ ├── OWNERS │ ├── Questions.php │ ├── README.md │ ├── Reviews.php │ ├── SellerRatings.php │ ├── Spotlights.php │ ├── Stories.php │ ├── archive-assembly.xml │ └── pom.xml ├── Backend │ └── Remote.php ├── Config │ └── Version.php ├── ConfigProvider.php ├── Cron.php ├── CurrentProductProvider.php ├── Dcc.php ├── Dcc │ ├── CatalogData.php │ ├── CatalogData │ │ ├── CatalogProduct.php │ │ ├── CatalogProduct │ │ │ ├── CategoryPath.php │ │ │ ├── CategoryPathBuilder.php │ │ │ ├── Family.php │ │ │ └── FamilyBuilder.php │ │ └── CatalogProductBuilder.php │ └── CatalogDataBuilder.php ├── Feed │ ├── Feed.php │ ├── Product │ │ ├── Brand.php │ │ ├── Category.php │ │ └── Product.php │ ├── ProductFeed.php │ └── PurchaseFeed.php ├── Filesystem │ └── Io │ │ └── Sftp.php ├── Index.php ├── IndexRepository.php ├── Indexer │ ├── Eav.php │ ├── Flat.php │ └── Indexer.php ├── Notification.php ├── ResourceModel │ ├── Index.php │ └── Index │ │ └── Collection.php ├── SeoContent.php ├── Source │ ├── Category.php │ ├── Environment.php │ ├── ProductAttribute.php │ ├── ProductList.php │ ├── Scope.php │ ├── SftpHost.php │ └── Trigger.php ├── StringFormatter.php └── XMLWriter.php ├── OWNERS ├── Observer └── Config.php ├── Plugin ├── Disable.php └── ProductList │ ├── Category.php │ ├── Crosssell.php │ ├── Item.php │ ├── NewProductsWidget.php │ ├── Related.php │ ├── Search.php │ ├── Upsell.php │ └── Widget.php ├── README.md ├── Setup ├── Patch │ └── Data │ │ ├── InstallBvAttribute.php │ │ └── UpgradeBvDataAtttribute.php └── Uninstall.php ├── Test └── Unit │ └── Model │ └── DccTest.php ├── Ui ├── Component │ └── Listing │ │ ├── Column │ │ ├── Bvproductindex │ │ │ └── PageActions.php │ │ ├── Json.php │ │ └── Thumbnail.php │ │ └── DataProviders │ │ └── Bv │ │ └── Product │ │ └── Index.php └── ReviewStaging │ └── Review.php ├── ViewModel ├── Header.php ├── Pixel.php ├── Product.php ├── Questions.php └── Reviews.php ├── composer.json ├── etc ├── acl.xml ├── adminhtml │ ├── di.xml │ ├── menu.xml │ ├── routes.xml │ └── system.xml ├── config.xml ├── crontab.xml ├── csp_whitelist.xml ├── db_schema.xml ├── di.xml ├── events.xml ├── frontend │ └── routes.xml ├── indexer.xml ├── module.xml ├── mview.xml └── webapi.xml ├── phpdox.xml ├── phpunit.xml ├── registration.php └── view ├── adminhtml ├── layout │ └── adminhtml_bvindex_index.xml ├── requirejs-config.js ├── templates │ └── system │ │ └── config │ │ └── testconnection.phtml ├── ui_component │ └── bv_product_index.xml └── web │ └── js │ └── testconnection.js └── frontend ├── layout ├── bazaarvoice_pixel_test.xml ├── bazaarvoice_submission_container.xml ├── catalog_product_view.xml ├── checkout_onepage_success.xml ├── customer_account.xml └── default.xml └── templates ├── checkout └── onepage │ └── success │ └── bvpixel.phtml ├── header.phtml ├── productheader.phtml ├── qa └── questions.phtml └── rr ├── reviews.phtml └── summary.phtml /Api/ConfigProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Api/ConfigProviderInterface.php -------------------------------------------------------------------------------- /Api/Data/Dcc/CatalogData/CatalogProduct/CategoryPathBuilderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Api/Data/Dcc/CatalogData/CatalogProduct/CategoryPathBuilderInterface.php -------------------------------------------------------------------------------- /Api/Data/Dcc/CatalogData/CatalogProduct/CategoryPathInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Api/Data/Dcc/CatalogData/CatalogProduct/CategoryPathInterface.php -------------------------------------------------------------------------------- /Api/Data/Dcc/CatalogData/CatalogProduct/FamilyBuilderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Api/Data/Dcc/CatalogData/CatalogProduct/FamilyBuilderInterface.php -------------------------------------------------------------------------------- /Api/Data/Dcc/CatalogData/CatalogProduct/FamilyInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Api/Data/Dcc/CatalogData/CatalogProduct/FamilyInterface.php -------------------------------------------------------------------------------- /Api/Data/Dcc/CatalogData/CatalogProductBuilderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Api/Data/Dcc/CatalogData/CatalogProductBuilderInterface.php -------------------------------------------------------------------------------- /Api/Data/Dcc/CatalogData/CatalogProductInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Api/Data/Dcc/CatalogData/CatalogProductInterface.php -------------------------------------------------------------------------------- /Api/Data/Dcc/CatalogDataBuilderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Api/Data/Dcc/CatalogDataBuilderInterface.php -------------------------------------------------------------------------------- /Api/Data/Dcc/CatalogDataInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Api/Data/Dcc/CatalogDataInterface.php -------------------------------------------------------------------------------- /Api/Data/IndexInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Api/Data/IndexInterface.php -------------------------------------------------------------------------------- /Api/DccInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Api/DccInterface.php -------------------------------------------------------------------------------- /Api/IndexRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Api/IndexRepositoryInterface.php -------------------------------------------------------------------------------- /Api/StringFormatterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Api/StringFormatterInterface.php -------------------------------------------------------------------------------- /Block/Adminhtml/System/Config/Sftp/TestConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Block/Adminhtml/System/Config/Sftp/TestConnection.php -------------------------------------------------------------------------------- /Block/System/Config/Button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Block/System/Config/Button.php -------------------------------------------------------------------------------- /Console/Command/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Console/Command/Index.php -------------------------------------------------------------------------------- /Console/Command/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Console/Command/Product.php -------------------------------------------------------------------------------- /Console/Command/Purchase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Console/Command/Purchase.php -------------------------------------------------------------------------------- /Console/Command/PurchaseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Console/Command/PurchaseTest.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Bvfeed/Rebuildproduct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Controller/Adminhtml/Bvfeed/Rebuildproduct.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Bvfeed/Runproduct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Controller/Adminhtml/Bvfeed/Runproduct.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Bvfeed/Runpurchase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Controller/Adminhtml/Bvfeed/Runpurchase.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Bvindex/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Controller/Adminhtml/Bvindex/Index.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Config/Sftp/TestConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Controller/Adminhtml/Config/Sftp/TestConnection.php -------------------------------------------------------------------------------- /Controller/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Controller/Index.php -------------------------------------------------------------------------------- /Controller/Pixel/Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Controller/Pixel/Test.php -------------------------------------------------------------------------------- /Controller/Submission/Container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Controller/Submission/Container.php -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Logger/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Logger/Handler.php -------------------------------------------------------------------------------- /Logger/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Logger/Logger.php -------------------------------------------------------------------------------- /Model/BVSEOSDK/BV.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/BVSEOSDK/BV.php -------------------------------------------------------------------------------- /Model/BVSEOSDK/BVFooter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/BVSEOSDK/BVFooter.php -------------------------------------------------------------------------------- /Model/BVSEOSDK/BVUtility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/BVSEOSDK/BVUtility.php -------------------------------------------------------------------------------- /Model/BVSEOSDK/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/BVSEOSDK/Base.php -------------------------------------------------------------------------------- /Model/BVSEOSDK/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/BVSEOSDK/CHANGELOG.md -------------------------------------------------------------------------------- /Model/BVSEOSDK/ExampleQuestionsGetContent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/BVSEOSDK/ExampleQuestionsGetContent.php -------------------------------------------------------------------------------- /Model/BVSEOSDK/ExampleReviewsGetAggregateRating.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/BVSEOSDK/ExampleReviewsGetAggregateRating.php -------------------------------------------------------------------------------- /Model/BVSEOSDK/ExampleReviewsGetContent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/BVSEOSDK/ExampleReviewsGetContent.php -------------------------------------------------------------------------------- /Model/BVSEOSDK/ExampleReviewsGetReviews.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/BVSEOSDK/ExampleReviewsGetReviews.php -------------------------------------------------------------------------------- /Model/BVSEOSDK/ExampleSEOGetContent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/BVSEOSDK/ExampleSEOGetContent.php -------------------------------------------------------------------------------- /Model/BVSEOSDK/ExampleSellerratingsGetContent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/BVSEOSDK/ExampleSellerratingsGetContent.php -------------------------------------------------------------------------------- /Model/BVSEOSDK/ExampleSpotlightsGetContent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/BVSEOSDK/ExampleSpotlightsGetContent.php -------------------------------------------------------------------------------- /Model/BVSEOSDK/ExampleStoriesGetContent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/BVSEOSDK/ExampleStoriesGetContent.php -------------------------------------------------------------------------------- /Model/BVSEOSDK/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/BVSEOSDK/LICENSE -------------------------------------------------------------------------------- /Model/BVSEOSDK/OWNERS: -------------------------------------------------------------------------------- 1 | # Owning team. 2 | seo-sdk-owners@bazaarvoice.com 3 | -------------------------------------------------------------------------------- /Model/BVSEOSDK/Questions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/BVSEOSDK/Questions.php -------------------------------------------------------------------------------- /Model/BVSEOSDK/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/BVSEOSDK/README.md -------------------------------------------------------------------------------- /Model/BVSEOSDK/Reviews.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/BVSEOSDK/Reviews.php -------------------------------------------------------------------------------- /Model/BVSEOSDK/SellerRatings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/BVSEOSDK/SellerRatings.php -------------------------------------------------------------------------------- /Model/BVSEOSDK/Spotlights.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/BVSEOSDK/Spotlights.php -------------------------------------------------------------------------------- /Model/BVSEOSDK/Stories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/BVSEOSDK/Stories.php -------------------------------------------------------------------------------- /Model/BVSEOSDK/archive-assembly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/BVSEOSDK/archive-assembly.xml -------------------------------------------------------------------------------- /Model/BVSEOSDK/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/BVSEOSDK/pom.xml -------------------------------------------------------------------------------- /Model/Backend/Remote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/Backend/Remote.php -------------------------------------------------------------------------------- /Model/Config/Version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/Config/Version.php -------------------------------------------------------------------------------- /Model/ConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/ConfigProvider.php -------------------------------------------------------------------------------- /Model/Cron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/Cron.php -------------------------------------------------------------------------------- /Model/CurrentProductProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/CurrentProductProvider.php -------------------------------------------------------------------------------- /Model/Dcc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/Dcc.php -------------------------------------------------------------------------------- /Model/Dcc/CatalogData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/Dcc/CatalogData.php -------------------------------------------------------------------------------- /Model/Dcc/CatalogData/CatalogProduct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/Dcc/CatalogData/CatalogProduct.php -------------------------------------------------------------------------------- /Model/Dcc/CatalogData/CatalogProduct/CategoryPath.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/Dcc/CatalogData/CatalogProduct/CategoryPath.php -------------------------------------------------------------------------------- /Model/Dcc/CatalogData/CatalogProduct/CategoryPathBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/Dcc/CatalogData/CatalogProduct/CategoryPathBuilder.php -------------------------------------------------------------------------------- /Model/Dcc/CatalogData/CatalogProduct/Family.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/Dcc/CatalogData/CatalogProduct/Family.php -------------------------------------------------------------------------------- /Model/Dcc/CatalogData/CatalogProduct/FamilyBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/Dcc/CatalogData/CatalogProduct/FamilyBuilder.php -------------------------------------------------------------------------------- /Model/Dcc/CatalogData/CatalogProductBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/Dcc/CatalogData/CatalogProductBuilder.php -------------------------------------------------------------------------------- /Model/Dcc/CatalogDataBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/Dcc/CatalogDataBuilder.php -------------------------------------------------------------------------------- /Model/Feed/Feed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/Feed/Feed.php -------------------------------------------------------------------------------- /Model/Feed/Product/Brand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/Feed/Product/Brand.php -------------------------------------------------------------------------------- /Model/Feed/Product/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/Feed/Product/Category.php -------------------------------------------------------------------------------- /Model/Feed/Product/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/Feed/Product/Product.php -------------------------------------------------------------------------------- /Model/Feed/ProductFeed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/Feed/ProductFeed.php -------------------------------------------------------------------------------- /Model/Feed/PurchaseFeed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/Feed/PurchaseFeed.php -------------------------------------------------------------------------------- /Model/Filesystem/Io/Sftp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/Filesystem/Io/Sftp.php -------------------------------------------------------------------------------- /Model/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/Index.php -------------------------------------------------------------------------------- /Model/IndexRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/IndexRepository.php -------------------------------------------------------------------------------- /Model/Indexer/Eav.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/Indexer/Eav.php -------------------------------------------------------------------------------- /Model/Indexer/Flat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/Indexer/Flat.php -------------------------------------------------------------------------------- /Model/Indexer/Indexer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/Indexer/Indexer.php -------------------------------------------------------------------------------- /Model/Notification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/Notification.php -------------------------------------------------------------------------------- /Model/ResourceModel/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/ResourceModel/Index.php -------------------------------------------------------------------------------- /Model/ResourceModel/Index/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/ResourceModel/Index/Collection.php -------------------------------------------------------------------------------- /Model/SeoContent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/SeoContent.php -------------------------------------------------------------------------------- /Model/Source/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/Source/Category.php -------------------------------------------------------------------------------- /Model/Source/Environment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/Source/Environment.php -------------------------------------------------------------------------------- /Model/Source/ProductAttribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/Source/ProductAttribute.php -------------------------------------------------------------------------------- /Model/Source/ProductList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/Source/ProductList.php -------------------------------------------------------------------------------- /Model/Source/Scope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/Source/Scope.php -------------------------------------------------------------------------------- /Model/Source/SftpHost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/Source/SftpHost.php -------------------------------------------------------------------------------- /Model/Source/Trigger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/Source/Trigger.php -------------------------------------------------------------------------------- /Model/StringFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/StringFormatter.php -------------------------------------------------------------------------------- /Model/XMLWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Model/XMLWriter.php -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- 1 | partner-admin@bazaarvoice.com -------------------------------------------------------------------------------- /Observer/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Observer/Config.php -------------------------------------------------------------------------------- /Plugin/Disable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Plugin/Disable.php -------------------------------------------------------------------------------- /Plugin/ProductList/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Plugin/ProductList/Category.php -------------------------------------------------------------------------------- /Plugin/ProductList/Crosssell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Plugin/ProductList/Crosssell.php -------------------------------------------------------------------------------- /Plugin/ProductList/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Plugin/ProductList/Item.php -------------------------------------------------------------------------------- /Plugin/ProductList/NewProductsWidget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Plugin/ProductList/NewProductsWidget.php -------------------------------------------------------------------------------- /Plugin/ProductList/Related.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Plugin/ProductList/Related.php -------------------------------------------------------------------------------- /Plugin/ProductList/Search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Plugin/ProductList/Search.php -------------------------------------------------------------------------------- /Plugin/ProductList/Upsell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Plugin/ProductList/Upsell.php -------------------------------------------------------------------------------- /Plugin/ProductList/Widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Plugin/ProductList/Widget.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/README.md -------------------------------------------------------------------------------- /Setup/Patch/Data/InstallBvAttribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Setup/Patch/Data/InstallBvAttribute.php -------------------------------------------------------------------------------- /Setup/Patch/Data/UpgradeBvDataAtttribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Setup/Patch/Data/UpgradeBvDataAtttribute.php -------------------------------------------------------------------------------- /Setup/Uninstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Setup/Uninstall.php -------------------------------------------------------------------------------- /Test/Unit/Model/DccTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Test/Unit/Model/DccTest.php -------------------------------------------------------------------------------- /Ui/Component/Listing/Column/Bvproductindex/PageActions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Ui/Component/Listing/Column/Bvproductindex/PageActions.php -------------------------------------------------------------------------------- /Ui/Component/Listing/Column/Json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Ui/Component/Listing/Column/Json.php -------------------------------------------------------------------------------- /Ui/Component/Listing/Column/Thumbnail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Ui/Component/Listing/Column/Thumbnail.php -------------------------------------------------------------------------------- /Ui/Component/Listing/DataProviders/Bv/Product/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Ui/Component/Listing/DataProviders/Bv/Product/Index.php -------------------------------------------------------------------------------- /Ui/ReviewStaging/Review.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/Ui/ReviewStaging/Review.php -------------------------------------------------------------------------------- /ViewModel/Header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/ViewModel/Header.php -------------------------------------------------------------------------------- /ViewModel/Pixel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/ViewModel/Pixel.php -------------------------------------------------------------------------------- /ViewModel/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/ViewModel/Product.php -------------------------------------------------------------------------------- /ViewModel/Questions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/ViewModel/Questions.php -------------------------------------------------------------------------------- /ViewModel/Reviews.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/ViewModel/Reviews.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/composer.json -------------------------------------------------------------------------------- /etc/acl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/etc/acl.xml -------------------------------------------------------------------------------- /etc/adminhtml/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/etc/adminhtml/di.xml -------------------------------------------------------------------------------- /etc/adminhtml/menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/etc/adminhtml/menu.xml -------------------------------------------------------------------------------- /etc/adminhtml/routes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/etc/adminhtml/routes.xml -------------------------------------------------------------------------------- /etc/adminhtml/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/etc/adminhtml/system.xml -------------------------------------------------------------------------------- /etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/etc/config.xml -------------------------------------------------------------------------------- /etc/crontab.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/etc/crontab.xml -------------------------------------------------------------------------------- /etc/csp_whitelist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/etc/csp_whitelist.xml -------------------------------------------------------------------------------- /etc/db_schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/etc/db_schema.xml -------------------------------------------------------------------------------- /etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/etc/di.xml -------------------------------------------------------------------------------- /etc/events.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/etc/events.xml -------------------------------------------------------------------------------- /etc/frontend/routes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/etc/frontend/routes.xml -------------------------------------------------------------------------------- /etc/indexer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/etc/indexer.xml -------------------------------------------------------------------------------- /etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/etc/module.xml -------------------------------------------------------------------------------- /etc/mview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/etc/mview.xml -------------------------------------------------------------------------------- /etc/webapi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/etc/webapi.xml -------------------------------------------------------------------------------- /phpdox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/phpdox.xml -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/phpunit.xml -------------------------------------------------------------------------------- /registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/registration.php -------------------------------------------------------------------------------- /view/adminhtml/layout/adminhtml_bvindex_index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/view/adminhtml/layout/adminhtml_bvindex_index.xml -------------------------------------------------------------------------------- /view/adminhtml/requirejs-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/view/adminhtml/requirejs-config.js -------------------------------------------------------------------------------- /view/adminhtml/templates/system/config/testconnection.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/view/adminhtml/templates/system/config/testconnection.phtml -------------------------------------------------------------------------------- /view/adminhtml/ui_component/bv_product_index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/view/adminhtml/ui_component/bv_product_index.xml -------------------------------------------------------------------------------- /view/adminhtml/web/js/testconnection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/view/adminhtml/web/js/testconnection.js -------------------------------------------------------------------------------- /view/frontend/layout/bazaarvoice_pixel_test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/view/frontend/layout/bazaarvoice_pixel_test.xml -------------------------------------------------------------------------------- /view/frontend/layout/bazaarvoice_submission_container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/view/frontend/layout/bazaarvoice_submission_container.xml -------------------------------------------------------------------------------- /view/frontend/layout/catalog_product_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/view/frontend/layout/catalog_product_view.xml -------------------------------------------------------------------------------- /view/frontend/layout/checkout_onepage_success.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/view/frontend/layout/checkout_onepage_success.xml -------------------------------------------------------------------------------- /view/frontend/layout/customer_account.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/view/frontend/layout/customer_account.xml -------------------------------------------------------------------------------- /view/frontend/layout/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/view/frontend/layout/default.xml -------------------------------------------------------------------------------- /view/frontend/templates/checkout/onepage/success/bvpixel.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/view/frontend/templates/checkout/onepage/success/bvpixel.phtml -------------------------------------------------------------------------------- /view/frontend/templates/header.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/view/frontend/templates/header.phtml -------------------------------------------------------------------------------- /view/frontend/templates/productheader.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/view/frontend/templates/productheader.phtml -------------------------------------------------------------------------------- /view/frontend/templates/qa/questions.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/view/frontend/templates/qa/questions.phtml -------------------------------------------------------------------------------- /view/frontend/templates/rr/reviews.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/view/frontend/templates/rr/reviews.phtml -------------------------------------------------------------------------------- /view/frontend/templates/rr/summary.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazaarvoice/magento2-extension/HEAD/view/frontend/templates/rr/summary.phtml --------------------------------------------------------------------------------