2017 © Pedro Peláez
 

library ybb

BB Code interpreter for youtube videos

image

rimelek/ybb

BB Code interpreter for youtube videos

  • Monday, July 17, 2017
  • by rimelek
  • Repository
  • 1 Watchers
  • 0 Stars
  • 4 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

README

Description

This is just a simple function convert youtube video links or video IDs to the video embed code using BB codes. You can pass arguments to the BB code or you can disable them., (*1)

Arguments

  • nocookie: Default: "off". If it is "on" youtube-nocookie.com will be used as domain.
  • controls: Default: "on". Whether you want to show control buttons or not.
  • suggestions: Default: "on". You can turn suggestions after the video on or off.
  • showinfo: Default: "on". In case of "off" the title of the video and other information will be hidden.
  • width: Default: 560. Width in pixels
  • height: Default: 315. Height in pixels

You can completely omit the value if it is "on". "nocookie" means the same as "nocookie=on", (*2)

Examples

BB codes

[youtube showinfo=off]https://www.youtube.com/watch?v=tH2TvzgFCU0[/youtube]
[youtube]https://youtube.com/watch?v=tH2TvzgFCU0[/youtube]
[youtube]http://www.youtube.com/watch?v=tH2TvzgFCU0[/youtube]
[youtube]//www.youtube.com/watch?v=tH2TvzgFCU0[/youtube]
[youtube]https://youtu.be/tH2TvzgFCU0[/youtube]
[youtube]http://youtu.be/tH2TvzgFCU0[/youtube]
[youtube]//youtu.be/tH2TvzgFCU0[/youtube]
[youtube suggestions=off]tH2TvzgFCU0[/youtube]
[youtube width=350 height=300 nocookie controls=off]tH2TvzgFCU0[/youtube]

Usage of the function

<?php
use Rimelek\YBB;

$text = '... Here is your text containing bb codes like:     [youtube width=350 height=300 nocookie controls=off]tH2TvzgFCU0[/youtube] ... ';

echo YBB\ybb($text);
echo YBB\ybb($text, ['nocookie' => 'on']);
echo YBB\ybb($text, ['nocookie' => 'on'], ['width', 'height']);

Instead of "on", you can always write "yes", "1", or "true" Instead of "off", you can always write "no", "0" or "false", (*3)

Run demo.php for a working demo., (*4)

The Versions

17/07 2017

dev-master

9999999-dev

BB Code interpreter for youtube videos

  Sources   Download

MIT

17/07 2017

v1.0.1

1.0.1.0

BB Code interpreter for youtube videos

  Sources   Download

MIT

16/07 2017

v1.0.0

1.0.0.0

BB Code interpreter for youtube videos

  Sources   Download

MIT