A bare bones front-end for knockout designed for maximum compatibility with "obsolete" browsers
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace App\BbCode\Tag;
  3. use Knockout\BbCode\Tag\TagInterface;
  4. use Knockout\BbCode\Tokenizer\Tag as TokenTag;
  5. class Video implements TagInterface
  6. {
  7. public function format(TokenTag $tokenTag): string
  8. {
  9. $url = $tokenTag->getText();
  10. return "<a href=\"{$url}\" target=\"_blank\">[Video Embed]</a>";
  11. }
  12. public function getName(): string
  13. {
  14. return 'video';
  15. }
  16. public function getOriginalText(TokenTag $tokenTag) : string
  17. {
  18. return "[video]{$tokenTag->getText()}[/video]";
  19. }
  20. }