Skip to content

Instantly share code, notes, and snippets.

@vidhav
vidhav / snippet.wrap.php
Last active August 29, 2015 14:03
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) : '';