This repository has been archived by the owner on Jul 31, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Plugin.php
91 lines (83 loc) · 2.58 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
<?php namespace Bedard\BlogTags;
use Backend;
use Bedard\BlogTags\Models\Tag;
use Config;
use Event;
use System\Classes\PluginBase;
use RainLab\Blog\Controllers\Posts as PostsController;
use RainLab\Blog\Models\Post as PostModel;
/**
* BlogTags Plugin Information File
*/
class Plugin extends PluginBase
{
/**
* @var array Require the RainLab.Blog plugin
*/
public $require = ['RainLab.Blog'];
/**
* Returns information about this plugin
*
* @return array
*/
public function pluginDetails()
{
return [
'name' => 'bedard.blogtags::lang.plugin.name',
'description' => 'bedard.blogtags::lang.plugin.description',
'author' => 'Scott Bedard',
'icon' => 'icon-tags',
'homepage' => 'https://github.com/scottbedard/blogtags'
];
}
/**
* Register components
*
* @return array
*/
public function registerComponents()
{
return [
'Bedard\BlogTags\Components\BlogTags' => 'blogTags',
'Bedard\BlogTags\Components\BlogTagSearch' => 'blogTagSearch',
'Bedard\BlogTags\Components\BlogRelated' => 'blogRelated'
];
}
public function boot()
{
// extend the blog navigation
Event::listen('backend.menu.extendItems', function($manager) {
$manager->addSideMenuItems('RainLab.Blog', 'blog', [
'tags' => [
'label' => 'bedard.blogtags::lang.navigation.tags',
'icon' => 'icon-tags',
'code' => 'tags',
'owner' => 'RainLab.Blog',
'url' => Backend::url('bedard/blogtags/tags')
]
]);
});
// extend the post model
PostModel::extend(function($model) {
$model->belongsToMany['tags'] = [
'Bedard\BlogTags\Models\Tag',
'table' => 'bedard_blogtags_post_tag',
'order' => 'name'
];
});
// extend the post form
PostsController::extendFormFields(function($form, $model, $context) {
if (!$model instanceof PostModel) {
return;
}
$form->addSecondaryTabFields([
'tags' => [
'label' => 'bedard.blogtags::lang.form.label',
'mode' => 'relation',
'tab' => 'rainlab.blog::lang.post.tab_categories',
'type' => 'taglist'
]
]);
});
}
}