- /**
- * Get icons for available payment methods
- *
- * @return array
- */
- public function getIcons()
- {
- if (!empty($this->icons)) {
- return $this->icons;
- }
-
- $types = $this->ccConfig->getCcAvailableTypes();
- foreach (array_keys($types) as $code) {
- if (!array_key_exists($code, $this->icons)) {
- $asset = $this->ccConfig->createAsset('Magento_Payment::images/cc/' . strtolower($code) . '.png');
- $placeholder = $this->assetSource->findSource($asset);
- if ($placeholder) {
- list($width, $height) = getimagesize($asset->getSourceFile());
- $this->icons[$code] = [
- 'url' => $asset->getUrl(),
- 'width' => $width,
- 'height' => $height
- ];
- }
- }
- }
-
- return $this->icons;
- }