Download the PHP package asmbs/wp-schedule-builder without Composer
On this page you can find all versions of the php package asmbs/wp-schedule-builder. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download asmbs/wp-schedule-builder
More information about asmbs/wp-schedule-builder
Files in asmbs/wp-schedule-builder
Package wp-schedule-builder
Short Description Build interactive agendas for scientific meetings
License MIT
Informations about the package wp-schedule-builder
ScheduleBuilder
ScheduleBuilder is a WordPress plugin for building interactive agendas for scientific meetings.
Requirements
- PHP 7.0+
- A Composer-based WordPress stack like Bedrock
- Node + NPM
- The Advanced Custom Fields (ACF) Pro WordPress plugin v5.7+
Installation
-
Install with Composer:
- Activate the plugin.
- Go to the newly created Schedule Settings page and add the conference dates, venues, rooms and credit information for the event you're managing.
- Start building!
Development
Requirements
- NPM
- Composer
Getting Started
To install the development dependencies, run:
To rebuild the assets, run:
(Requires npx)
RESTful API
As of v5.0 this plugin is bundled with a GET only api. To enable this feature set the SCHEDULE_BUILDER_API
environmental variable 1
. For details on the endpoints provided please see the
Schedule-Builder API documentation
Webhook
With the RESTful API enable it is possible to report changes to session, abstract, and person post types by setting
SCHEDULE_BUILDER_WEBHOOK_URL
environmental variable to an absolute URL. The webhook MUST accept HTTP POST method with
a JSON body,
Where
{post_type}
is eithersession|abstract|person
and{post_id}
is the Wordpress post id
When sending the POST request to the webhook, if the environmental variable SCHEDULE_BUILDER_WEBHOOK_AUTHORIZATION
is
configured its value is added as a bearer token in the request Authorization header.
Example
The application .env
file as:
will translate to an HTTP authorization header:
Viewing API Documentation
Once deployed to view the API documents navigate to https://<meeting base url>/app/plugins/wp-schedule-builder/docs/
where <meetting base url>
is the meetings Wordpress site's FQDN. Information on compiling the API documentation see
docs/open-api.md