| Current Path : /var/www/homesaver/www/bitrix/modules/iblock/lib/grid/row/actions/item/helpers/ |
| Current File : /var/www/homesaver/www/bitrix/modules/iblock/lib/grid/row/actions/item/helpers/withurl.php |
<?php
namespace Bitrix\Iblock\Grid\Row\Actions\Item\Helpers;
use CUtil;
trait WithUrl
{
protected string $url;
public function setUrl(string $url): void
{
$this->url = $url;
}
protected function getUrlForOnclick(): string
{
return CUtil::JSEscape($this->url);
}
}