A bare bones front-end for knockout designed for maximum compatibility with "obsolete" browsers
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

23 satır
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. }