-
Notifications
You must be signed in to change notification settings - Fork 1
/
Plugin.php
105 lines (94 loc) · 2.69 KB
/
Plugin.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
<?php namespace Sqwk\Gallery;
use Backend;
use System\Classes\PluginBase;
use System\Classes\PluginManager;
use RainLab\Blog\Controllers\Posts as PostsController;
use RainLab\Blog\Models\Post as PostModel;
/**
* Gallery Plugin Information File
*/
class Plugin extends PluginBase
{
public $require = [];
public function registerSettings()
{
}
/**
* Returns information about this plugin.
*
* @return array
*/
public function pluginDetails()
{
return [
'name' => 'sqwk.gallery::lang.plugin.name',
'description' => 'sqwk.gallery::lang.plugin.description',
'author' => 'sqwk',
'icon' => 'icon-picture-o'
];
}
/**
* Registers any front-end components implemented in this plugin.
*
* @return array
*/
public function registerComponents()
{
return [
'Sqwk\Gallery\Components\Gallery' => 'Gallery',
'Sqwk\Gallery\Components\Galleries' => 'Galleries',
];
}
/**
* Registers any front-end components implemented in this plugin as snippets for the static pages plugin.
*
* @return array
*/
public function registerPageSnippets()
{
return [
'Sqwk\Gallery\Components\Gallery' => 'Gallery',
'Sqwk\Gallery\Components\Galleries' => 'Galleries',
];
}
/**
* Registers any form widgets for use in backend
*
* @return array
*/
public function registerFormWidgets()
{
return [
'Sqwk\Gallery\FormWidgets\Gallery' => 'gallery',
];
}
public function boot()
{
if (PluginManager::instance()->hasPlugin('RainLab.Blog')) {
$this->require[] = 'RainLab.Blog';
PostModel::extend(function ($model) {
$model->belongsToMany['gallery'] = [
'Sqwk\Gallery\Models\Gallery',
'table' => 'sqwk_gallery_galleries_posts',
'key' => 'post_id',
'otherKey' => 'gallery_id'
];
});
PostsController::extendFormFields(function ($form, $model) {
if (!$model instanceof PostModel) {
return;
}
if (!$model->exists) {
return;
}
$form->addSecondaryTabFields([
'gallery' => [
'label' => 'sqwk.gallery::lang.form.label',
'tab' => 'sqwk.gallery::lang.form.tab',
'type' => 'relation'
]
]);
});
}
}
}