Skip to content

Instantly share code, notes, and snippets.

@Cipa
Created September 1, 2011 12:34
Show Gist options
  • Save Cipa/1186079 to your computer and use it in GitHub Desktop.
Save Cipa/1186079 to your computer and use it in GitHub Desktop.
MODX Revolution - Get labels and values for checkbox, radio and select TVs
$tv = $modx->getObject('modTemplateVar',array('name'=>'MyTv'));
// or
//$tv = $modx->getObject('modTemplateVar',$id); // ID of the TV
$optionValues = $tv->get('elements');
$defaultValue = $tv->get('default_text');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment