Guest User

Untitled

a guest
Jul 17th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. function onAfterRender()
  2. {
  3. // get the original buffer
  4. $buffer = JResponse::getBody();
  5.  
  6. // replace this with that...
  7. $replace = 'foo';
  8. $with = 'bar';
  9. $buffer = str_replace( $replace, $with, $buffer );
  10.  
  11. // write the changes back to the buffer
  12. JResponse::setBody($buffer);
  13. }
Add Comment
Please, Sign In to add comment