Advertisement
phranx

Phonograph php example

Nov 27th, 2015
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.63 KB | None | 0 0
  1. <!--
  2. Phonograph.php
  3. https://gist.github.com/fcamp/c4cb828cfb22bbe845cb
  4. -->
  5.  
  6. <?php Phonograph::start('my-text') //set the section name?>
  7. Dear User1,
  8.  
  9. Your record submitted has been disapproved by User.
  10.  
  11. Remarks:
  12.  
  13. Document No.:
  14. Record Title: Test1
  15. Record URL: http://myapp.dev/records?id=1
  16.  
  17. Sincerely,
  18.  
  19. Admin
  20.  
  21. Dear User1,
  22.  
  23. Your record submitted has been disapproved by User.
  24.  
  25. Remarks:
  26.  
  27. Document No.:
  28. Record Title: Test2
  29. Record URL: http://myapp.dev/records?id=2
  30.  
  31. Sincerely,
  32.  
  33. Admin
  34. <?php Phonograph::stop()//stop recording ?>
  35.  
  36. <?= Phonograph::play('my-text', ['effects' => 'nl2br'])//play, applying effect ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement