We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1f9f20 commit ce045eaCopy full SHA for ce045ea
Model/Url.php
@@ -360,6 +360,24 @@ public function getMediaUrl($file)
360
return $this->_storeManager->getStore()
361
->getBaseUrl(\Magento\Framework\UrlInterface::URL_TYPE_MEDIA) . $file;
362
}
363
+
364
+ /**
365
+ * @return int|null
366
+ */
367
+ public function getStoreId()
368
+ {
369
+ return $this->storeId;
370
+ }
371
372
373
+ * @param $storeId
374
+ * @return $this
375
376
+ public function setStoreId($storeId)
377
378
+ $this->storeId = $storeId;
379
+ return $this;
380
381
382
/**
383
* Retrieve blog permalink config value
0 commit comments