Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save gartes/d3640e4af168af23a5041b6f6099a7cc to your computer and use it in GitHub Desktop.
Save gartes/d3640e4af168af23a5041b6f6099a7cc to your computer and use it in GitHub Desktop.
url - домен JURI
// https://docs.joomla.org/JURI/root
// Зависит от переменной конфигурации configuration.php
// public $live_site = 'http://домен.ru';
JURI::base (true) - со слэшом
JURI::base (false) || JURI::base () - без слэша
// https://docs.joomla.org/API17:JURI::current
JURI::current() - Возвращает URL-адрес запроса, минус запрос.
// https://docs.joomla.org/API17:JURI::root
JURI::root() - Домен сайта - Возвращает корневой URI для запроса
JURI::root( false, '/a-different-path' )
JURI::root( true, '/a-different-path' )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment