2017 © Pedro PelĂĄez
 

library bbb-php-api

Simple PHP API of The BigBlueButton.

image

deviny/bbb-php-api

Simple PHP API of The BigBlueButton.

  • Friday, January 12, 2018
  • by DevinY
  • Repository
  • 1 Watchers
  • 0 Stars
  • 13 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

BigBlueButton PHP API

Original version available at: https://github.com/petermentzer/bbb-api-php, (*1)

Re-packed by Devin Yang., (*2)

https://yty.ccc.tc/demo/, (*3)

Example

Create Meeting and Join Link., (*4)

<?php

use DevinY\BigBlueButtonPhpApi\Bbb;
require __DIR__.'/../vendor/autoload.php';
define("DEFAULT_SECURITY_SALT", "YOUR SALT");
define("DEFAULT_SERVER_BASE_URL", "YOUR SERVER URL");

$meeting_id = time();
$meeting = new Bbb($meeting_id);
$meeting->setName("This is Meeting Name");
echo sprintf("<a href='%s'>Join as Student</a><br/>",$meeting->attendee("John"));
echo sprintf("<a href='%s'>Join as Teacher</a><br/>",$meeting->moderator("Devin"));
?>

Preupload slides

<?php
$meetingObj->slides(['https://ccc.test/p1.pdf','https://ccc.test/p2.pdf']);
?>

Define Different Server

<?php
$meeting = new Bbb("test");
$meeting->setServerBaseUrl('YOUR SERVER URL');
$meeting->setSecret('YOUR SALT');
?>

SetClinetPage by default is BigBlueButton.html

<?php
$meetingObj->setClientPage("ccc.html");
?>

More Available methods

$meeting->setWelcome('Welecome message for all')
    ->setModeratorOnlyMessage('Only teacher can see this messsage');
$meeting->setDuration(20);
$meeting->setRecord("true"); //Old version
$meeting->setAutoStartRecording(false);
$meeting->setAllowStartStopRecording(true);
$meeting->setLogoutUrl('https://YourDomain');

The Versions

12/01 2018

dev-master

9999999-dev

Simple PHP API of The BigBlueButton.

  Sources   Download

GPL 3.0

The Requires

  • php >=5.3.0

 

by Devin Yang

bbb bigbluebutton

12/01 2018

v1.2

1.2.0.0

Simple PHP API of The BigBlueButton.

  Sources   Download

GPL 3.0

The Requires

  • php >=5.3.0

 

by Devin Yang

bbb bigbluebutton

01/01 2018

v1.1

1.1.0.0

Simple PHP API of The BigBlueButton.

  Sources   Download

GPL 3.0

The Requires

  • php >=5.3.0

 

by Devin Yang

bbb bigbluebutton