Created
April 7, 2014 07:35
-
-
Save argnist/10016149 to your computer and use it in GitHub Desktop.
Вывод содержимого чанка, например в Ajax.
This file contains 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
if (!$modx->resource) { | |
$modx->resource = $modx->newObject('modResource'); | |
$modx->resource->set('id', 5); | |
$modx->resource->set('pagetitle', 'isAPI'); | |
$modx->resource->set('content', $modx->getChunk('Film.Search.Results')); | |
} | |
$modx->getResponse(); | |
$modx->response->outputContent(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment