Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

LibCal Experiement #783

Draft
wants to merge 1 commit into
base: develop
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<?php

namespace Drupal\ys_embed\Plugin\EmbedSource;

use Drupal\ys_embed\Plugin\EmbedSourceBase;
use Drupal\ys_embed\Plugin\EmbedSourceInterface;

/**
* Instagram post embed source.
*
* @EmbedSource(
* id = "libcal",
* label = @Translation("LibCal"),
* description = @Translation("LibCal embed source."),
* thumbnail = "",
* active = TRUE,
* )
*/
class LibCal extends EmbedSourceBase implements EmbedSourceInterface {

/**
* {@inheritdoc}
*/
protected static $pattern = '/(?<embed_code>\<div id="([^"]+)"\>\<\/div\>\<script src="https:\/\/schedule\.yale\.edu\/.*<\/script>)/';

/**
* {@inheritdoc}
*/
protected static $template = '{{ embed_code|raw }}';

/**
* {@inheritdoc}
*/
protected static $instructions = 'Find the embed code for an LibCal listing';

/**
* {@inheritdoc}
*/
protected static $example = '<div id="api_hours_today_iid457_lid4211"></div><script src="https://schedule.yale.edu/api_hours_today.php?iid=457&lid=4211&format=js&systemTime=0&context=object"> </script>';

}