Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@ydenissov
Last active November 22, 2017 08:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ydenissov/981dd08a175d7a7a16e58333e1e45a56 to your computer and use it in GitHub Desktop.
Save ydenissov/981dd08a175d7a7a16e58333e1e45a56 to your computer and use it in GitHub Desktop.
Phpthumb wrapper for DocLister n Evolution CMS
<?php
[[DocLister?
&prepare=`thumb`
&thumbOptions=`w=100,h100,zc=1`
&tpl=`@CODE: <a href="[+tv.image+]"><img src="[+thumb+]"></a>`
]]
// thumb snippet
$data['thumb'] = $modx->runSnippet('phpthumb', Array(
'input' => $data['tv.image'],
'options'=> $_DocLister->getCFGDef('thumbOptions')
));
return $data;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment