/home/sharedstore/public_html/prestashop.sharedstore.ma/src/Core/Help
Edit: /home/sharedstore/public_html/prestashop.sharedstore.ma/src/Core/Help/Documentation.php (1708B)
* @copyright Since 2007 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
*/
namespace PrestaShop\PrestaShop\Core\Help;
use PrestaShop\PrestaShop\Core\Foundation\Version;
class Documentation
{
/**
* @var Version
*/
private $version;
/**
* @var string
*/
private $host;
public function __construct(Version $version, string $host)
{
$this->version = $version;
$this->host = $host;
}
public function generateLink(string $section, string $langIsoCode): string
{
return urlencode($this->host . $langIsoCode . '/doc/'
. $section . '?version=' . $this->version->getSemVersion() . '&country=' . $langIsoCode);
}
}