forked from pkp/customBlockManager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCustomBlockManagerPlugin.inc.php
163 lines (145 loc) · 4.74 KB
/
CustomBlockManagerPlugin.inc.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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<?php
/**
* @file plugins/generic/customBlockManager/CustomBlockManagerPlugin.inc.php
*
* Copyright (c) 2014-2017 Simon Fraser University
* Copyright (c) 2003-2017 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
* @package plugins.generic.customBlockManager
* @class CustomBlockManagerPlugin
*
* Plugin to let managers add and delete custom sidebar blocks
*
*/
import('lib.pkp.classes.plugins.GenericPlugin');
class CustomBlockManagerPlugin extends GenericPlugin {
/**
* @copydoc Plugin::getDisplayName()
*/
function getDisplayName() {
return __('plugins.generic.customBlockManager.displayName');
}
/**
* @copydoc Plugin::getDescription()
*/
function getDescription() {
return __('plugins.generic.customBlockManager.description');
}
/**
* @copydoc Plugin::register()
*/
function register($category, $path) {
if (parent::register($category, $path)) {
// If the system isn't installed, or is performing an upgrade, don't
// register hooks. This will prevent DB access attempts before the
// schema is installed.
if (!Config::getVar('general', 'installed') || defined('RUNNING_UPGRADE')) return true;
if ($this->getEnabled()) {
// This hook is used to step in when block plugins are registered to add
// each custom block that has been created with this plugin.
HookRegistry::register('PluginRegistry::loadCategory', array($this, 'callbackLoadCategory'));
// This hook is used to register the components this plugin implements to
// permit administration of custom block plugins.
HookRegistry::register('LoadComponentHandler', array($this, 'setupGridHandler'));
}
return true;
}
return false;
}
/**
* Register as a block plugin, even though this is a generic plugin.
* This will allow the plugin to behave as a block plugin, i.e. to
* have layout tasks performed on it.
* @param $hookName string The name of the hook being invoked
* @param $args array The parameters to the invoked hook
*/
function callbackLoadCategory($hookName, $args) {
$category =& $args[0];
$plugins =& $args[1];
$request =& $this->getRequest();
switch ($category) {
case 'blocks': // The system is registering block plugins
$this->import('CustomBlockPlugin');
// Ensure that there is a context (journal or press)
$context = $request->getContext();
if (!$context) return false;
// Load the custom blocks we have created
$blocks = $this->getSetting($context->getId(), 'blocks');
if (!is_array($blocks)) break;
// Loop through each custom block and register it
$i=0;
foreach ($blocks as $block) {
$blockPlugin = new CustomBlockPlugin($block, $this->getName());
// Default the block to being enabled (for newly created blocks)
if ($blockPlugin->getEnabled() !== false) {
$blockPlugin->setEnabled(true);
}
// Default the block to the left sidebar (for newly created blocks)
if (!is_numeric($blockPlugin->getBlockContext())) {
$blockPlugin->setBlockContext(BLOCK_CONTEXT_SIDEBAR);
}
// Add the plugin to the list of registered plugins
$plugins[$blockPlugin->getSeq()][$blockPlugin->getPluginPath() . $i] = $blockPlugin;
$i++;
}
break;
}
return false;
}
/**
* Permit requests to the custom block grid handler
* @param $hookName string The name of the hook being invoked
* @param $args array The parameters to the invoked hook
*/
function setupGridHandler($hookName, $params) {
$component =& $params[0];
if ($component == 'plugins.generic.customBlockManager.controllers.grid.CustomBlockGridHandler') {
define('CUSTOMBLOCKMANAGER_PLUGIN_NAME', $this->getName());
return true;
}
return false;
}
/**
* @copydoc Plugin::getActions()
*/
function getActions($request, $actionArgs) {
import('lib.pkp.classes.linkAction.request.AjaxModal');
$router = $request->getRouter();
return array_merge(
$this->getEnabled()?array(
new LinkAction(
'settings',
new AjaxModal(
$router->url(
$request, null, null, 'manage', null, array(
'plugin' => $this->getName(),
'category' => $this->getCategory(),
'action' => 'index'
)
),
$this->getDisplayName()
),
__('plugins.generic.customBlockManager.manage'),
null
)
):array(),
parent::getActions($request, $actionArgs)
);
}
/**
* @copydoc Plugin::manage()
*/
function manage($args, $request) {
$templateMgr = TemplateManager::getManager($request);
$dispatcher = $request->getDispatcher();
return $templateMgr->fetchAjax(
'customBlockGridUrlGridContainer',
$dispatcher->url(
$request, ROUTE_COMPONENT, null,
'plugins.generic.customBlockManager.controllers.grid.CustomBlockGridHandler', 'fetchGrid'
)
);
}
}
?>