MODX
- 26 ответов
- 0 вопросов
5
Вклад в тег
foreach ($users as $user){
// получаем id пользователя
$uid = $user->get('member');
// получаем объект пользователя
$user = $modx->getObject('modUser', $uid);
// получаем имя пользователя
$name = $user->get('username');
// получаем профиль пользователя
$profile = $user->getOne('Profile');
/****тут остальной код*****/
//end for each
}
const anchors = document.querySelectorAll('a[href*="#"]');
for (let anchor of anchors) {
if (anchor.getAttribute('href').indexOf('http') == -1) {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const blockID = anchor.getAttribute('href').substr(1);
if (document.getElementById(blockID)) {
document.getElementById(blockID).scrollIntoView({
behavior: 'smooth',
block: 'center'
});
}
});
}
}