This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Quick Intro into the Joomla HTMLHelper class | |
// Checkout also this video: https://www.youtube.com/watch?v=aHY_hsu7iuk | |
// File: \libraries\src\HTML\HTMLHelper.php | |
use Joomla\CMS\HTML\HTMLHelper; | |
// Image | |
echo HTMLHelper::_('image', 'plg_system_web357framework/fix404errorlinks.png', Text::_('Fix 404 Error Links extension for Joomla!'), null, true); | |
echo HTMLHelper::_('image', 'media/plg_system_web357framework/images/fix404errorlinks.png', Text::_('Fix 404 Error Links extension for Joomla!'), null, false); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
defined('_JEXEC') or die; | |
// формируем URL в переменной $queryUrl | |
$queryUrl = 'https://[ваше_название].bitrix24.ru/rest/[идентификатор_пользователя]/[код_вебхука]/crm.lead.add.json'; | |
//проверяем существование передаваемых переменных | |
if(isset($source['name'])) | |
{ |