-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstatic-social-embeds.php
99 lines (86 loc) · 2.6 KB
/
static-social-embeds.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<?php
namespace Grav\Plugin;
use Grav\Common\Assets;
use Grav\Common\Plugin;
/**
* Class StaticSocialEmbedsPlugin
* @package Grav\Plugin
*/
class StaticSocialEmbedsPlugin extends Plugin
{
/**
* @return array
*
* The getSubscribedEvents() gives the core a list of events
* that the plugin wants to listen to. The key of each
* array section is the event that the plugin listens to
* and the value (in the form of an array) contains the
* callable (or function) as well as the priority. The
* higher the number the higher the priority.
*/
public static function getSubscribedEvents()
{
return [
'onPluginsInitialized' => [
['autoload', 100001],
['onPluginsInitialized', 0]
],
];
}
/**
* [onPluginsInitialized:100000] Composer autoload.
*
* @return ClassLoader
*/
public function autoload()
{
return require __DIR__ . '/vendor/autoload.php';
}
/**
* Initialize the plugin
*/
public function onPluginsInitialized()
{
if ($this->isAdmin()) {
// Don't proceed if we are in the admin plugin
return;
}
// Enable the main event we are interested in
$this->enable([
'onShortcodeHandlers' => ['onShortcodeHandlers', 0],
'onTwigTemplatePaths' => ['onTwigTemplatePaths', 0],
'onAssetsInitialized' => ['onAssetsInitialized', 0]
]);
}
/**
* Add current directory to twig lookup paths.
*/
public function onTwigTemplatePaths()
{
$this->grav['twig']->twig_paths[] = __DIR__ . '/templates';
}
/**
* Adds assets.
*/
public function onAssetsInitialized()
{
/** @var $assets Assets */
$assets = $this->grav['assets'];
if ($this->config->get('plugins.static-social-embeds.include_font_awesome_5', true)) {
$assets->add('https://use.fontawesome.com/releases/v5.1.0/css/all.css');
}
if ($this->config->get('plugins.static-social-embeds.built_in_css', true)) {
$assets->add('plugin://static-social-embeds/assets/css-compiled/sse.min.css', 4);
}
if ($this->config->get('plugins.static-social-embeds.built_in_js', true)) {
$assets->addJs('plugin://static-social-embeds/assets/js/sse.js', 4, true, 'defer');
}
}
/**
* Registers shortcodes
*/
public function onShortcodeHandlers()
{
$this->grav['shortcode']->registerAllShortcodes(__DIR__ . '/shortcodes');
}
}