| Current Path : /home/rtorresani/www/app/code/Webkul/BuyButton/Model/ |
| Current File : //home/rtorresani/www/app/code/Webkul/BuyButton/Model/ObjectProvider.php |
<?php
/**
* Webkul Software.
*
* @category Webkul
* @package Webkul_BuyButton
* @author Webkul
* @copyright Copyright (c) Webkul Software Private Limited (https://webkul.com)
* @license https://store.webkul.com/license.html
*/
namespace Webkul\BuyButton\Model;
class ObjectProvider
{
protected $directoryList;
public function __construct(
\Magento\Framework\Filesystem\DirectoryList $directoryList
) {
$this->directoryList = $directoryList;
}
public function viewUrl()
{
return $this->directoryList->getPath('media').'/buybutton/';
}
}