Created
May 3, 2018 10:21
-
-
Save gartes/d3640e4af168af23a5041b6f6099a7cc to your computer and use it in GitHub Desktop.
url - домен JURI
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
// 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