This repository has been archived on 2024-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
sakura/app/BBCode/Tags/YouTube.php
2016-10-07 21:21:05 +02:00

31 lines
650 B
PHP

<?php
/**
* Holds the YouTube tag.
* @package Sakura
*/
namespace Sakura\BBCode\Tags;
use Sakura\BBCode\TagBase;
/**
* YouTube tag.
* @package Sakura
* @author Julian van de Groep <me@flash.moe>
*/
class YouTube extends TagBase
{
/**
* The pattern to match.
* @var string
*/
public static $pattern = "/\[youtube\]([A-Za-z0-9\-\_]+)\[\/youtube\]/s";
/**
* The string to replace it with.
* @var string
*/
public static $replace = "<iframe width='560' height='315' src='https://www.youtube-nocookie.com/embed/$1'"
. " frameborder='0' allowfullscreen class='bbcode__youtube'></iframe>";
}