-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgist.php
61 lines (51 loc) · 1.46 KB
/
gist.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
<?php
use Herbie\DI;
use Herbie\Hook;
class GistPlugin
{
/**
* Initialize plugin
*/
public static function install()
{
$config = DI::get('Config');
if ((bool)$config->get('plugins.config.gist.twig', false)) {
Hook::attach('twigInitialized', ['GistPlugin', 'addTwigFunction']);
}
if ((bool)$config->get('plugins.config.gist.shortcode', true)) {
Hook::attach('shortcodeInitialized', ['GistPlugin', 'addShortcode']);
}
}
public static function addTwigFunction($twig)
{
$twig->addFunction(
new Twig_SimpleFunction('gist', ['GistPlugin', 'gistTwig'], ['is_safe' => ['html']])
);
}
public static function addShortcode($shortcode)
{
$shortcode->add('gist', ['GistPlugin', 'gistShortcode']);
}
/**
* @param string $id
* @param string $file
* @return string
*/
public static function gistTwig($id, $file = '')
{
return "<script src=\"http://gist.github.com/{$id}.js" . ($file == '' ? '' : '?file=' . $file) . "\"></script>";
}
/**
* @param array $options
* @return string
*/
public static function gistShortcode($options)
{
$options = array_merge([
'id' => empty($options[0]) ? '' : $options[0],
'file' => ''
], $options);
return call_user_func_array(['GistPlugin', 'gistTwig'], $options);
}
}
GistPlugin::install();