Skip to content

Instantly share code, notes, and snippets.

@av-jok
Forked from Fi1osof/gist:6023918
Last active August 29, 2015 14:01
Show Gist options
  • Save av-jok/716b797feffc23ee1815 to your computer and use it in GitHub Desktop.
Save av-jok/716b797feffc23ee1815 to your computer and use it in GitHub Desktop.
Дефолтовый контроллер
<?php
$properties = $modx->resource->getOne('Template')->getProperties();
if(!empty($properties['tpl'])){
$tpl = $properties['tpl'];
}
else{
$tpl = 'index.tpl';
}
if ($modx->resource->cacheable != '1') {
$modx->smarty->caching = false;
}
return $modx->smarty->fetch("tpl/{$tpl}");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment