Skip to content

Instantly share code, notes, and snippets.

@kratkar
Created November 24, 2015 13:17
Show Gist options
  • Save kratkar/17ec70627771c1521af3 to your computer and use it in GitHub Desktop.
Save kratkar/17ec70627771c1521af3 to your computer and use it in GitHub Desktop.
Get display(option) value from template variable lisbox, checkbox... MODX
<?php
$tv = $modx->getObject('modTemplateVar', array('name' => $name));
$matchPrams = array();
preg_match('/([^|]+)==' . $input . '/', $tv->get('elements'), $matchPrams);
return $matchPrams[1];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment