Skip to content

Instantly share code, notes, and snippets.

@bwente
Created March 23, 2017 15:19
Show Gist options
  • Save bwente/42a328aebfc708b88ef08ad1f42eb8f9 to your computer and use it in GitHub Desktop.
Save bwente/42a328aebfc708b88ef08ad1f42eb8f9 to your computer and use it in GitHub Desktop.
MODX output filter for finding matching strings
<?php
$parameters = explode(',',$options);
$test = $parameters[0];
$success = $parameters[1];
$output = " "; // needed a space to make this work
if (stristr($input, $test) !== false) {
$output = $success;
}
return $output;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment