Esempio n. 1
0
 /**
  * @param PluginsByTechnicalNameRequest $context
  * @return PluginStruct[]
  */
 public function getPlugins(PluginsByTechnicalNameRequest $context)
 {
     $params = ['locale' => $context->getLocale(), 'shopwareVersion' => $context->getShopwareVersion(), 'technicalNames' => $context->getTechnicalNames()];
     $data = $this->storeClient->doGetRequest('/pluginStore/pluginsByName', $params);
     return $this->hydrator->hydrateStorePlugins($data);
 }