Skip to content

Instantly share code, notes, and snippets.

@zhabinka
Created January 2, 2016 15:47
Show Gist options
  • Save zhabinka/e308ff24c53a632b8313 to your computer and use it in GitHub Desktop.
Save zhabinka/e308ff24c53a632b8313 to your computer and use it in GitHub Desktop.
Выводим общее количество просмотров всех страниц, созданных пользователем.
<?php
$user = $modx->user;
$resource = $user->getMany('CreatedResources');
foreach ($resource as $res) {
$views = $views + $res->getTVValue(3);
}
return $views;
@zhabinka
Copy link
Author

zhabinka commented Jan 2, 2016

Решение описано здесь - https://ilyaut.ru/xpdo/xpdo-for-dummies-part-4-practice-2/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment