Download the PHP package deviny/bbb-php-api without Composer
On this page you can find all versions of the php package deviny/bbb-php-api. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download deviny/bbb-php-api
More information about deviny/bbb-php-api
Files in deviny/bbb-php-api
Download deviny/bbb-php-api
More information about deviny/bbb-php-api
Files in deviny/bbb-php-api
Vendor deviny
Package bbb-php-api
Short Description Simple PHP API of The BigBlueButton.
License GPL-3.0-only
Package bbb-php-api
Short Description Simple PHP API of The BigBlueButton.
License GPL-3.0-only
Keywords bbbbigbluebutton
Please rate this library. Is it a good library?
Informations about the package bbb-php-api
BigBlueButton PHP API
Original version available at: https://github.com/petermentzer/bbb-api-php
Re-packed by Devin Yang.
Example
Create Meeting and Join Link.
<?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');
All versions of bbb-php-api with dependencies
PHP Build Version
Package Version
Requires
php Version
>=5.3.0
The package deviny/bbb-php-api contains the following files
Loading the files please wait ....