Skip to content

Instantly share code, notes, and snippets.

@zhabinka
Created January 2, 2016 15:34
Show Gist options
  • Save zhabinka/92300efd36e1f5de0f00 to your computer and use it in GitHub Desktop.
Save zhabinka/92300efd36e1f5de0f00 to your computer and use it in GitHub Desktop.
Изменение TV-параметров через сниппет.
<?php
if ($views = $modx->resource->getTVValue(3)) {
$views++;
} else {
$views = 1;
}
$modx->resource->setTVValue(3,$views);
return $views;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment