A bare bones front-end for knockout designed for maximum compatibility with "obsolete" browsers
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

23 строки
295B

  1. <?php
  2. namespace App\Helper;
  3. use App\BbCode\KnockoutDefinitionSet;
  4. class BBCode {
  5. private $content;
  6. public function __construct($content)
  7. {
  8. $this->content = $content;
  9. }
  10. public function render()
  11. {
  12. return nl2br(htmlentities($this->content));
  13. }
  14. }