-
Notifications
You must be signed in to change notification settings - Fork 0
/
ImportMobilierNationalPlugin.php
111 lines (102 loc) · 3.48 KB
/
ImportMobilierNationalPlugin.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
<?php
/* ----------------------------------------------------------------------
* app/plugins/ArtefactsCanadaPlugin.php :
* ----------------------------------------------------------------------
* CollectiveAccess
* Open-source collections management software
* ----------------------------------------------------------------------
*
* Software by Whirl-i-Gig (http://www.whirl-i-gig.com)
* Copyright 2018 Whirl-i-Gig
*
* For more information visit http://www.CollectiveAccess.org
*
* This program is free software; you may redistribute it and/or modify it under
* the terms of the provided license as published by Whirl-i-Gig
*
* CollectiveAccess is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTIES whatsoever, including any implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* This source code is free and modifiable under the terms of
* GNU General Public License. (http://www.gnu.org/copyleft/gpl.html). See
* the "license.txt" file for details, or visit the CollectiveAccess web site at
* http://www.CollectiveAccess.org
*
* ----------------------------------------------------------------------
*/
class ImportMobilierNationalPlugin extends BaseApplicationPlugin {
# -------------------------------------------------------
/**
*
*/
protected $description = null;
/**
*
*/
private $opo_config;
/**
*
*/
private $ops_plugin_path;
# -------------------------------------------------------
public function __construct($ps_plugin_path) {
$this->ops_plugin_path = $ps_plugin_path;
$this->description = _t('ImportMobilierNational');
parent::__construct();
$this->opo_config = Configuration::load($ps_plugin_path.'/conf/ImportMobilierNational.conf');
}
# -------------------------------------------------------
/**
* Override checkStatus() to return true - the statisticsViewerPlugin always initializes ok... (part to complete)
*/
public function checkStatus() {
return array(
'description' => $this->getDescription(),
'errors' => array(),
'warnings' => array(),
'available' => ((bool)$this->opo_config->get('enabled'))
);
}
# -------------------------------------------------------
/**
* Insert activity menu
*/
public function hookRenderMenuBar($pa_menu_bar) {
if ($o_req = $this->getRequest()) {
//if (!$o_req->user->canDoAction('can_ImportMobilierNational')) { return $pa_menu_bar; }
if(!(bool)$this->opo_config->get('enabled')) { return $pa_menu_bar; }
if (isset($pa_menu_bar['Export'])) {
$va_menu_items = $pa_menu_bar['Export']['navigation'];
if (!is_array($va_menu_items)) { $va_menu_items = array(); }
} else {
$va_menu_items = array();
}
$va_menu_items['ImportMobilierNational_export'] = array(
'displayName' => _t('ImportMobilierNational'),
"default" => array(
'module' => 'ImportMobilierNational',
'controller' => 'Import',
'action' => 'Index'
)
);
if (isset($pa_menu_bar['Import'])) {
$pa_menu_bar['Import']['navigation'] = $va_menu_items;
} else {
$pa_menu_bar['Import'] = array(
'displayName' => _t('Import'),
'navigation' => $va_menu_items
);
}
}
return $pa_menu_bar;
}
# -------------------------------------------------------
/**
* Add plugin user actions
*/
static function getRoleActionList() {
return array();
}
# -------------------------------------------------------
}