-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswiper-js.php
140 lines (122 loc) · 3.56 KB
/
swiper-js.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<?php
namespace Grav\Plugin;
use Composer\Autoload\ClassLoader;
use Grav\Common\Grav;
use Grav\Common\Page\Interfaces\PageInterface;
use Grav\Common\Plugin;
use Grav\Plugin\SwiperJS\Twig\SwiperJSExtension;
use RocketTheme\Toolbox\Event\Event;
/**
* Class SwiperJSPlugin
*
* @package Grav\Plugin
*/
class SwiperJSPlugin extends Plugin
{
/** @var array */
public $features = [
'blueprints' => 0, // Use priority 0
];
/**
* Composer autoload.
*is
* @return ClassLoader
*/
public function autoload(): ClassLoader
{
return require __DIR__ . '/vendor/autoload.php';
}
/**
* @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(): array
{
return [
'onPluginsInitialized' => [
['onPluginsInitialized', 0]
],
];
}
/**
* Initialize the plugin
*/
public function onPluginsInitialized(): void
{
if ($this->isAdmin()) {
$this->enable(
[
'onAdminSave' => ['onAdminSave', 0],
'onGetPageTemplates' => ['onGetPageTemplates', 0],
'onGetPageBlueprints' => ['onGetPageBlueprints', 0],
]
);
return;
}
$this->enable(
[
'onTwigTemplatePaths' => ['onTwigTemplatePaths', 0],
'onTwigExtensions' => ['onTwigExtensions', 0],
]
);
}
/**
* @param $event
*/
public function onAdminSave($event)
{
$page = $event['object'];
if (!$page instanceof PageInterface) {
return;
}
$header = $page->header();
if (!isset($header['swiper'])) {
return;
}
$options = $header['swiper']['options'] ?? [];
$header->offsetSet('swiper.options.navigation.nextEl', $options['navigation']['nextEl'] ?? '');
$header->offsetSet('swiper.options.navigation.prevEl', $options['navigation']['prevEl'] ?? '');
$header->offsetSet('swiper.options.pagination.el', $options['pagination']['el'] ?? '');
$header->offsetSet('swiper.options.scrollbar.el', $options['scrollbar']['el'] ?? '');
}
/**
* Add blueprint directory to page templates.
*/
public function onGetPageTemplates(Event $event)
{
$locator = Grav::instance()['locator'];
$event->types->scanTemplates($locator->findResource('plugin://' . $this->name . '/templates'));
}
/**
* Extend page blueprints with additional configuration options.
*
* @param Event $event
*/
public function onGetPageBlueprints($event)
{
$locator = Grav::instance()['locator'];
$event->types->scanBlueprints($locator->findResource('plugin://' . $this->name . '/blueprints'));
}
/**
* Register templates
*
* @return void
*/
public function onTwigTemplatePaths()
{
$this->grav['twig']->twig_paths[] = __DIR__ . '/templates';
}
/**
* @return void
*/
public function onTwigExtensions()
{
$this->grav['twig']->twig->addExtension(new SwiperJSExtension());
}
}