Skip to content

Instantly share code, notes, and snippets.

@vidhav
Last active August 29, 2015 14:03
Show Gist options
  • Save vidhav/88c6b48f9dfd55978efd to your computer and use it in GitHub Desktop.
Save vidhav/88c6b48f9dfd55978efd to your computer and use it in GitHub Desktop.
MODX Output Modifier that parses the $input value into the $options value.
<?php
/**
* Wraps the value of a placeholder.
* [[*introtext:wrap=`<p class="intro">|</p>`]]
*/
return (empty($input) === false && strpos($options, '|') !== false) ? str_replace('|', $input, $options) : '';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment