Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
Commit e00f096b authored by Nicolas's avatar Nicolas
Browse files

Correction d'une faute de frappe

parent b7565c0a
No related branches found
No related tags found
No related merge requests found
...@@ -136,16 +136,16 @@ class Image extends Template implements BlockInterface ...@@ -136,16 +136,16 @@ class Image extends Template implements BlockInterface
parent::__construct($context, $data); parent::__construct($context, $data);
$this->defaultSettings = [ $this->defaultSettings = [
'constrainOnly' => $this->_scopeConfig->getValue('mediamangerimage/resize/constrain_only', ScopeInterface::SCOPE_STORE), 'constrainOnly' => $this->_scopeConfig->getValue('mediamanagerimage/resize/constrain_only', ScopeInterface::SCOPE_STORE),
'keepAspectRatio' => $this->_scopeConfig->getValue('mediamangerimage/resize/keep_aspect_ratio', ScopeInterface::SCOPE_STORE), 'keepAspectRatio' => $this->_scopeConfig->getValue('mediamanagerimage/resize/keep_aspect_ratio', ScopeInterface::SCOPE_STORE),
'keepTransparency' => $this->_scopeConfig->getValue('mediamangerimage/resize/keep_transparency', ScopeInterface::SCOPE_STORE), 'keepTransparency' => $this->_scopeConfig->getValue('mediamanagerimage/resize/keep_transparency', ScopeInterface::SCOPE_STORE),
'keepFrame' => $this->_scopeConfig->getValue('mediamangerimage/resize/keep_frame', ScopeInterface::SCOPE_STORE), 'keepFrame' => $this->_scopeConfig->getValue('mediamanagerimage/resize/keep_frame', ScopeInterface::SCOPE_STORE),
'backgroundColor' => $this->_scopeConfig->getValue('mediamangerimage/resize/background_color', ScopeInterface::SCOPE_STORE), 'backgroundColor' => $this->_scopeConfig->getValue('mediamanagerimage/resize/background_color', ScopeInterface::SCOPE_STORE),
'identifier' => $this->_scopeConfig->getValue('mediamangerimage/save/identifier', ScopeInterface::SCOPE_STORE), 'identifier' => $this->_scopeConfig->getValue('mediamanagerimage/save/identifier', ScopeInterface::SCOPE_STORE),
'basename' => $this->_scopeConfig->getValue('mediamangerimage/save/basename', ScopeInterface::SCOPE_STORE), 'basename' => $this->_scopeConfig->getValue('mediamanagerimage/save/basename', ScopeInterface::SCOPE_STORE),
'width' => $this->_scopeConfig->getValue('mediamangerimage/save/width', ScopeInterface::SCOPE_STORE), 'width' => $this->_scopeConfig->getValue('mediamanagerimage/save/width', ScopeInterface::SCOPE_STORE),
'height' => $this->_scopeConfig->getValue('mediamangerimage/save/height', ScopeInterface::SCOPE_STORE), 'height' => $this->_scopeConfig->getValue('mediamanagerimage/save/height', ScopeInterface::SCOPE_STORE),
'compression' => $this->_scopeConfig->getValue('mediamangerimage/save/compression', ScopeInterface::SCOPE_STORE) 'compression' => $this->_scopeConfig->getValue('mediamanagerimage/save/compression', ScopeInterface::SCOPE_STORE)
]; ];
} }
......
...@@ -125,16 +125,16 @@ class Video extends Template implements BlockInterface ...@@ -125,16 +125,16 @@ class Video extends Template implements BlockInterface
parent::__construct($context, $data); parent::__construct($context, $data);
$this->defaultSettings = [ $this->defaultSettings = [
'constrainOnly' => $this->_scopeConfig->getValue('mediamangervideo/resize/constrain_only', ScopeInterface::SCOPE_STORE), 'constrainOnly' => $this->_scopeConfig->getValue('mediamanagervideo/resize/constrain_only', ScopeInterface::SCOPE_STORE),
'keepAspectRatio' => $this->_scopeConfig->getValue('mediamangervideo/resize/keep_aspect_ratio', ScopeInterface::SCOPE_STORE), 'keepAspectRatio' => $this->_scopeConfig->getValue('mediamanagervideo/resize/keep_aspect_ratio', ScopeInterface::SCOPE_STORE),
'keepTransparency' => $this->_scopeConfig->getValue('mediamangervideo/resize/keep_transparency', ScopeInterface::SCOPE_STORE), 'keepTransparency' => $this->_scopeConfig->getValue('mediamanagervideo/resize/keep_transparency', ScopeInterface::SCOPE_STORE),
'keepFrame' => $this->_scopeConfig->getValue('mediamangervideo/resize/keep_frame', ScopeInterface::SCOPE_STORE), 'keepFrame' => $this->_scopeConfig->getValue('mediamanagervideo/resize/keep_frame', ScopeInterface::SCOPE_STORE),
'backgroundColor' => $this->_scopeConfig->getValue('mediamangervideo/resize/background_color', ScopeInterface::SCOPE_STORE), 'backgroundColor' => $this->_scopeConfig->getValue('mediamanagervideo/resize/background_color', ScopeInterface::SCOPE_STORE),
'identifier' => $this->_scopeConfig->getValue('mediamangervideo/save/identifier', ScopeInterface::SCOPE_STORE), 'identifier' => $this->_scopeConfig->getValue('mediamanagervideo/save/identifier', ScopeInterface::SCOPE_STORE),
'basename' => $this->_scopeConfig->getValue('mediamangervideo/save/basename', ScopeInterface::SCOPE_STORE), 'basename' => $this->_scopeConfig->getValue('mediamanagervideo/save/basename', ScopeInterface::SCOPE_STORE),
'width' => $this->_scopeConfig->getValue('mediamangervideo/save/width', ScopeInterface::SCOPE_STORE), 'width' => $this->_scopeConfig->getValue('mediamanagervideo/save/width', ScopeInterface::SCOPE_STORE),
'height' => $this->_scopeConfig->getValue('mediamangervideo/save/height', ScopeInterface::SCOPE_STORE), 'height' => $this->_scopeConfig->getValue('mediamanagervideo/save/height', ScopeInterface::SCOPE_STORE),
'compression' => $this->_scopeConfig->getValue('mediamangervideo/save/compression', ScopeInterface::SCOPE_STORE) 'compression' => $this->_scopeConfig->getValue('mediamanagervideo/save/compression', ScopeInterface::SCOPE_STORE)
]; ];
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment