Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Favicon.php
Go to the documentation of this file.
1 <?php
7 
9 
10 class Favicon extends Image
11 {
16  const UPLOAD_DIR = 'favicon';
17 
24  protected function _getUploadDir()
25  {
26  return $this->_mediaDirectory->getRelativePath($this->_appendScopeInfo(self::UPLOAD_DIR));
27  }
28 
34  protected function _addWhetherScopeInfo()
35  {
36  return true;
37  }
38 
44  public function getAllowedExtensions()
45  {
46  return ['ico', 'png', 'gif', 'jpg', 'jpeg', 'apng'];
47  }
48 }