Created
June 9, 2018 02:26
-
-
Save pavel-one/eb72e6cd4862252d988e92f74a62f493 to your computer and use it in GitHub Desktop.
pdoResources UserFiles where
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
{set $gallery = '!pdoResources' | snippet: [ | |
'limit' => 0, | |
'class' => 'UserFile', | |
'loadModels' => 'UserFiles', | |
'sortby' => 'rank', | |
'sortdir' => 'ASC', | |
'tpl' => '@FILE pdo/eventGallery.tpl', | |
'select' => [ | |
'UserFile' => '*', | |
'Thumb' => 'Thumb.url as thumb', | |
], | |
'leftJoin' => [ | |
'Thumb' => [ | |
'class' => 'UserFile', | |
'on' => 'Thumb.parent = UserFile.id AND Thumb.properties LIKE \'%"w":1024,"h":683%\'', | |
], | |
], | |
'where' => [ | |
'UserFile.list' => 'default', | |
'UserFile.parent' => $_modx->resource.id | |
], | |
]} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment