User Tools

Site Tools


Sidebar

code:modx-revolution:vyvoj

Vývoj

Metody XPDO 2.0

$c->toSql(); // zobrazi SQL dotaz
 
$getCount('modResource', $c); // pocet elementu odpovidajicich dotazu, count()

Získání obsahu TV

<?php
$tv = $modx->getObject('modTemplateVar', $id); // $id = ID template variable
// nebo
$tv = $modx->getObject('modTemplateVar', array('name'=>'MyTV'));
 
$v = $tv->getContent();  // for the default value of the TV itself.
$v = $tv->getValue(12);  // for the raw value of the TV in doc 12
$v = $tv->getValue($modx->resource->get('id')); // for the raw value of the TV in the current doc.
$v = $tv->renderOutput(12); // for the processed value of the TV in doc 12.
$v = $tv->renderOutput($modx->resource->get('id')); // for the processed value of the TV in the current doc.
code/modx-revolution/vyvoj.txt · Last modified: 2010/09/06 15:45 (external edit)