mirror of
https://github.com/pluginsGLPI/example.git
synced 2025-05-04 18:08:42 +02:00

git-svn-id: https://forge.glpi-project.org/svn/example/trunk@205 349b9182-4a13-0410-896f-e5e9767dd1b3
710 lines
22 KiB
PHP
710 lines
22 KiB
PHP
<?php
|
|
/*
|
|
* @version $Id$
|
|
-------------------------------------------------------------------------
|
|
GLPI - Gestionnaire Libre de Parc Informatique
|
|
Copyright (C) 2003-2011 by the INDEPNET Development Team.
|
|
|
|
http://indepnet.net/ http://glpi-project.org
|
|
-------------------------------------------------------------------------
|
|
|
|
LICENSE
|
|
|
|
This file is part of GLPI.
|
|
|
|
GLPI is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
GLPI is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with GLPI. If not, see <http://www.gnu.org/licenses/>.
|
|
--------------------------------------------------------------------------
|
|
*/
|
|
|
|
// ----------------------------------------------------------------------
|
|
// Original Author of file:
|
|
// Purpose of file:
|
|
// ----------------------------------------------------------------------
|
|
|
|
// Hook called on profile change
|
|
// Good place to evaluate the user right on this plugin
|
|
// And to save it in the session
|
|
function plugin_change_profile_example() {
|
|
|
|
// For example : same right of computer
|
|
if (Session::haveRight('computer','w')) {
|
|
$_SESSION["glpi_plugin_example_profile"] = array('example' => 'w');
|
|
|
|
} else if (Session::haveRight('computer','r')) {
|
|
$_SESSION["glpi_plugin_example_profile"] = array('example' => 'r');
|
|
|
|
} else {
|
|
unset($_SESSION["glpi_plugin_example_profile"]);
|
|
}
|
|
}
|
|
|
|
|
|
// Define dropdown relations
|
|
function plugin_example_getDatabaseRelations() {
|
|
return array("glpi_plugin_example_dropdowns" => array("glpi_plugin_example" => "plugin_example_dropdowns_id"));
|
|
}
|
|
|
|
|
|
// Define Dropdown tables to be manage in GLPI :
|
|
function plugin_example_getDropdown() {
|
|
// Table => Name
|
|
return array('PluginExampleDropdown' => __("Plugin Example Dropdown", 'example'));
|
|
}
|
|
|
|
|
|
|
|
////// SEARCH FUNCTIONS ///////(){
|
|
|
|
// Define Additionnal search options for types (other than the plugin ones)
|
|
function plugin_example_getAddSearchOptions($itemtype) {
|
|
|
|
$sopt = array();
|
|
if ($itemtype == 'Computer') {
|
|
// Just for example, not working...
|
|
$sopt[1001]['table'] = 'glpi_plugin_example_dropdowns';
|
|
$sopt[1001]['field'] = 'name';
|
|
$sopt[1001]['linkfield'] = 'plugin_example_dropdowns_id';
|
|
$sopt[1001]['name'] = __('Example plugin', 'example');
|
|
}
|
|
return $sopt;
|
|
}
|
|
|
|
// See also PluginExampleExample::getSpecificValueToDisplay()
|
|
function plugin_example_giveItem($type,$ID,$data,$num) {
|
|
|
|
$searchopt = &Search::getOptions($type);
|
|
$table = $searchopt[$ID]["table"];
|
|
$field = $searchopt[$ID]["field"];
|
|
|
|
switch ($table.'.'.$field) {
|
|
case "glpi_plugin_example_examples.name" :
|
|
$out = "<a href='".Toolbox::getItemTypeFormURL('PluginExampleExample')."?id=".$data['id']."'>";
|
|
$out .= $data["ITEM_$num"];
|
|
if ($_SESSION["glpiis_ids_visible"] || empty($data["ITEM_$num"])) {
|
|
$out .= " (".$data["id"].")";
|
|
}
|
|
$out .= "</a>";
|
|
return $out;
|
|
}
|
|
return "";
|
|
}
|
|
|
|
|
|
function plugin_example_displayConfigItem($type, $ID, $data, $num) {
|
|
|
|
$searchopt = &Search::getOptions($type);
|
|
$table = $searchopt[$ID]["table"];
|
|
$field = $searchopt[$ID]["field"];
|
|
|
|
// Example of specific style options
|
|
// No need of the function if you do not have specific cases
|
|
switch ($table.'.'.$field) {
|
|
case "glpi_plugin_example_examples.name" :
|
|
return " style=\"background-color:#DDDDDD;\" ";
|
|
}
|
|
return "";
|
|
}
|
|
|
|
|
|
function plugin_example_addDefaultJoin($type, $ref_table, &$already_link_tables) {
|
|
|
|
// Example of default JOIN clause
|
|
// No need of the function if you do not have specific cases
|
|
switch ($type) {
|
|
// case "PluginExampleExample" :
|
|
case "MyType" :
|
|
return Search::addLeftJoin($type, $ref_table, $already_link_tables,
|
|
"newtable", "linkfield");
|
|
}
|
|
return "";
|
|
}
|
|
|
|
|
|
function plugin_example_addDefaultSelect($type) {
|
|
|
|
// Example of default SELECT item to be added
|
|
// No need of the function if you do not have specific cases
|
|
switch ($type) {
|
|
// case "PluginExampleExample" :
|
|
case "MyType" :
|
|
return "`mytable`.`myfield` = 'myvalue' AS MYNAME, ";
|
|
}
|
|
return "";
|
|
}
|
|
|
|
|
|
function plugin_example_addDefaultWhere($type) {
|
|
|
|
// Example of default WHERE item to be added
|
|
// No need of the function if you do not have specific cases
|
|
switch ($type) {
|
|
// case "PluginExampleExample" :
|
|
case "MyType" :
|
|
return " `mytable`.`myfield` = 'myvalue' ";
|
|
}
|
|
return "";
|
|
}
|
|
|
|
|
|
function plugin_example_addLeftJoin($type, $ref_table, $new_table, $linkfield) {
|
|
|
|
// Example of standard LEFT JOIN clause but use it ONLY for specific LEFT JOIN
|
|
// No need of the function if you do not have specific cases
|
|
switch ($new_table) {
|
|
case "glpi_plugin_example_dropdowns" :
|
|
return " LEFT JOIN `$new_table` ON (`$ref_table`.`$linkfield` = `$new_table`.`id`) ";
|
|
}
|
|
return "";
|
|
}
|
|
|
|
|
|
function plugin_example_forceGroupBy($type) {
|
|
|
|
switch ($type) {
|
|
case 'PluginExampleExample' :
|
|
// Force add GROUP BY IN REQUEST
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
|
|
function plugin_example_addWhere($link, $nott, $type, $ID, $val, $searchtype) {
|
|
|
|
$searchopt = &Search::getOptions($type);
|
|
$table = $searchopt[$ID]["table"];
|
|
$field = $searchopt[$ID]["field"];
|
|
|
|
$SEARCH = Search::makeTextSearch($val,$nott);
|
|
|
|
// Example of standard Where clause but use it ONLY for specific Where
|
|
// No need of the function if you do not have specific cases
|
|
switch ($table.".".$field) {
|
|
/*case "glpi_plugin_example.name" :
|
|
$ADD = "";
|
|
if ($nott && $val!="NULL") {
|
|
$ADD = " OR `$table`.`$field` IS NULL";
|
|
}
|
|
return $link." (`$table`.`$field` $SEARCH ".$ADD." ) ";*/
|
|
case "glpi_plugin_example_examples.serial" :
|
|
return $link." `$table`.`$field` = '$val' ";
|
|
}
|
|
return "";
|
|
}
|
|
|
|
|
|
// This is not a real example because the use of Having condition in this case is not suitable
|
|
function plugin_example_addHaving($link, $nott, $type, $ID, $val, $num) {
|
|
|
|
$searchopt = &Search::getOptions($type);
|
|
$table = $searchopt[$ID]["table"];
|
|
$field = $searchopt[$ID]["field"];
|
|
|
|
$SEARCH = Search::makeTextSearch($val,$nott);
|
|
|
|
// Example of standard Having clause but use it ONLY for specific Having
|
|
// No need of the function if you do not have specific cases
|
|
switch ($table.".".$field) {
|
|
case "glpi_plugin_example.serial" :
|
|
$ADD = "";
|
|
if (($nott && $val!="NULL")
|
|
|| $val == '^$') {
|
|
$ADD = " OR ITEM_$num IS NULL";
|
|
}
|
|
return " $LINK ( ITEM_".$num.$SEARCH." $ADD ) ";
|
|
}
|
|
return "";
|
|
}
|
|
|
|
|
|
function plugin_example_addSelect($type,$ID,$num) {
|
|
|
|
$searchopt = &Search::getOptions($type);
|
|
$table = $searchopt[$ID]["table"];
|
|
$field = $searchopt[$ID]["field"];
|
|
|
|
// Example of standard Select clause but use it ONLY for specific Select
|
|
// No need of the function if you do not have specific cases
|
|
// switch ($table.".".$field) {
|
|
// case "glpi_plugin_example.name" :
|
|
// return $table.".".$field." AS ITEM_$num, ";
|
|
// }
|
|
return "";
|
|
}
|
|
|
|
|
|
function plugin_example_addOrderBy($type,$ID,$order,$key=0) {
|
|
|
|
$searchopt = &Search::getOptions($type);
|
|
$table = $searchopt[$ID]["table"];
|
|
$field = $searchopt[$ID]["field"];
|
|
|
|
// Example of standard OrderBy clause but use it ONLY for specific order by
|
|
// No need of the function if you do not have specific cases
|
|
// switch ($table.".".$field) {
|
|
// case "glpi_plugin_example.name" :
|
|
// return " ORDER BY $table.$field $order ";
|
|
// }
|
|
return "";
|
|
}
|
|
|
|
|
|
//////////////////////////////
|
|
////// SPECIFIC MODIF MASSIVE FUNCTIONS ///////
|
|
|
|
|
|
// Define actions :
|
|
function plugin_example_MassiveActions($type) {
|
|
|
|
switch ($type) {
|
|
// New action for core and other plugin types : name = plugin_PLUGINNAME_actionname
|
|
case 'Computer' :
|
|
return array("plugin_example_DoIt" => __("plugin_example_DoIt", 'example'));
|
|
|
|
// Actions for types provided by the plugin
|
|
case 'PluginExampleExample' :
|
|
return array("add_document" => _x('button', 'Add a document'), // GLPI core one
|
|
"do_nothing" => __('Do Nothing - just for fun', 'example')); // Specific one
|
|
}
|
|
return array();
|
|
}
|
|
|
|
|
|
// How to display specific actions ?
|
|
// options contain at least itemtype and and action
|
|
function plugin_example_MassiveActionsDisplay($options=array()) {
|
|
|
|
switch ($options['itemtype']) {
|
|
case 'Computer' :
|
|
switch ($options['action']) {
|
|
case "plugin_example_DoIt" :
|
|
echo " <input type='hidden' name='toto' value='1'>".
|
|
"<input type='submit' name='massiveaction' class='submit' value='".
|
|
__s('Post')."'> ".__('Write in item history', 'example');
|
|
break;
|
|
}
|
|
break;
|
|
|
|
case 'PluginExampleExample' :
|
|
switch ($options['action']) {
|
|
// No case for add_document : use GLPI core one
|
|
case "do_nothing" :
|
|
echo " <input type='submit' name='massiveaction' class='submit' value='".
|
|
__s('Post')."'> ".__('but do nothing :)', 'example');
|
|
break;
|
|
}
|
|
break;
|
|
}
|
|
return "";
|
|
}
|
|
|
|
|
|
// How to process specific actions ?
|
|
// May return array of stats containing number of process: ok / ko / noright count to display stats
|
|
function plugin_example_MassiveActionsProcess($data) {
|
|
|
|
$ok = 0;
|
|
$ko = 0;
|
|
$noright = 0;
|
|
|
|
switch ($data['action']) {
|
|
case 'plugin_example_DoIt' :
|
|
if ($data['itemtype'] == 'Computer') {
|
|
$comp = new Computer();
|
|
Session::addMessageAfterRedirect(__("Right it is the type I want...", 'example'));
|
|
Session::addMessageAfterRedirect(__('Write in item history', 'example'));
|
|
$changes = array(0, 'old value', 'new value');
|
|
foreach ($data['item'] as $key => $val) {
|
|
if ($val == 1) {
|
|
if ($comp->getFromDB($key)) {
|
|
Session::addMessageAfterRedirect("- ".$comp->getField("name"));
|
|
Log::history($key, 'Computer', $changes, 'PluginExampleExample', Log::HISTORY_PLUGIN);
|
|
$ok++;
|
|
} else {
|
|
// Example of ko count
|
|
$ko++;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
|
|
case 'do_nothing' :
|
|
if ($data['itemtype'] == 'PluginExampleExample') {
|
|
$ex = new PluginExampleExample();
|
|
Session::addMessageAfterRedirect(__("Right it is the type I want...", 'example'));
|
|
Session::addMessageAfterRedirect(__("But... I say I will do nothing for:", 'example'));
|
|
foreach ($data['item'] as $key => $val) {
|
|
if ($val == 1) {
|
|
if ($ex->getFromDB($key)) {
|
|
Session::addMessageAfterRedirect("- ".$ex->getField("name"));
|
|
$ok++;
|
|
} else {
|
|
// Example for noright / Maybe do it with can function is better
|
|
$noright++;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
return array('ok' => $ok,
|
|
'ko' => $ko,
|
|
'noright' => $noright);
|
|
|
|
}
|
|
|
|
|
|
// How to display specific update fields ?
|
|
// options must contain at least itemtype and options array
|
|
function plugin_example_MassiveActionsFieldsDisplay($options=array()) {
|
|
//$type,$table,$field,$linkfield
|
|
|
|
$table = $options['options']['table'];
|
|
$field = $options['options']['field'];
|
|
$linkfield = $options['options']['linkfield'];
|
|
|
|
if ($table == getTableForItemType($options['itemtype'])) {
|
|
// Table fields
|
|
switch ($table.".".$field) {
|
|
case 'glpi_plugin_example_examples.serial' :
|
|
_e("Not really specific - Just for example", 'example');
|
|
//Html::autocompletionTextField($linkfield,$table,$field);
|
|
// Dropdown::showYesNo($linkfield);
|
|
// Need to return true if specific display
|
|
return true;
|
|
}
|
|
|
|
} else {
|
|
// Linked Fields
|
|
switch ($table.".".$field) {
|
|
case "glpi_plugin_example_dropdowns.name" :
|
|
_e("Not really specific - Just for example", 'example');
|
|
// Need to return true if specific display
|
|
return true;
|
|
}
|
|
}
|
|
// Need to return false on non display item
|
|
return false;
|
|
}
|
|
|
|
|
|
// How to display specific search fields or dropdown ?
|
|
// options must contain at least itemtype and options array
|
|
// MUST Use a specific AddWhere & $tab[X]['searchtype'] = 'equals'; declaration
|
|
function plugin_example_searchOptionsValues($options=array()) {
|
|
|
|
$table = $options['searchoption']['table'];
|
|
$field = $options['searchoption']['field'];
|
|
|
|
// Table fields
|
|
switch ($table.".".$field) {
|
|
case "glpi_plugin_example_examples.serial" :
|
|
_e("Not really specific - Use your own dropdown - Just for example", 'example');
|
|
Dropdown::show(getItemTypeForTable($options['searchoption']['table']),
|
|
array('value' => $options['value'],
|
|
'name' => $options['name'],
|
|
'comments' => 0));
|
|
// Need to return true if specific display
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
|
|
//////////////////////////////
|
|
|
|
// Hook done on before update item case
|
|
function plugin_pre_item_update_example($item) {
|
|
|
|
/* Manipulate data if needed
|
|
if (!isset($item->input['comment'])) {
|
|
$item->input['comment'] = addslashes($item->fields['comment']);
|
|
}
|
|
$item->input['comment'] .= addslashes("\nUpdate: ".date('r'));
|
|
*/
|
|
Session::addMessageAfterRedirect(__("Pre Update Computer Hook", 'example'), true);
|
|
}
|
|
|
|
|
|
// Hook done on update item case
|
|
function plugin_item_update_example($item) {
|
|
|
|
Session::addMessageAfterRedirect(sprintf(__("Update Computer Hook (%s)", 'example'),implode(',',$item->updates)), true);
|
|
return true;
|
|
}
|
|
|
|
|
|
// Hook done on get empty item case
|
|
function plugin_item_empty_example($item) {
|
|
|
|
Session::addMessageAfterRedirect(__("Empty Computer Hook", 'example'),true);
|
|
return true;
|
|
}
|
|
|
|
|
|
// Hook done on before delete item case
|
|
function plugin_pre_item_delete_example($object) {
|
|
|
|
// Manipulate data if needed
|
|
Session::addMessageAfterRedirect(__("Pre Delete Computer Hook", 'example'),true);
|
|
}
|
|
|
|
|
|
// Hook done on delete item case
|
|
function plugin_item_delete_example($object) {
|
|
|
|
Session::addMessageAfterRedirect(__("Delete Computer Hook", 'example'),true);
|
|
return true;
|
|
}
|
|
|
|
|
|
// Hook done on before purge item case
|
|
function plugin_pre_item_purge_example($object) {
|
|
|
|
// Manipulate data if needed
|
|
Session::addMessageAfterRedirect(__("Pre Purge Computer Hook", 'example'),true);
|
|
}
|
|
|
|
|
|
// Hook done on purge item case
|
|
function plugin_item_purge_example($object) {
|
|
|
|
Session::addMessageAfterRedirect(__("Purge Computer Hook", 'example'),true);
|
|
return true;
|
|
}
|
|
|
|
|
|
// Hook done on before restore item case
|
|
function plugin_pre_item_restore_example($item) {
|
|
|
|
// Manipulate data if needed
|
|
Session::addMessageAfterRedirect(__("Pre Restore Computer Hook", 'example'));
|
|
}
|
|
|
|
|
|
// Hook done on before restore item case
|
|
function plugin_pre_item_restore_example2($item) {
|
|
|
|
// Manipulate data if needed
|
|
Session::addMessageAfterRedirect(__("Pre Restore Phone Hook", 'example'));
|
|
}
|
|
|
|
|
|
// Hook done on restore item case
|
|
function plugin_item_restore_example($item) {
|
|
|
|
Session::addMessageAfterRedirect(__("Restore Computer Hook", 'example'));
|
|
return true;
|
|
}
|
|
|
|
|
|
// Hook done on restore item case
|
|
function plugin_item_transfer_example($parm) {
|
|
//TRANS: %1$s is the source type, %2$d is the source ID, %3$d is the destination ID
|
|
Session::addMessageAfterRedirect(sprintf(__('Transfer Computer Hook %1$s %2$d -> %3$d', 'example'),$parm['type'],$parm['id'],
|
|
$parm['newID']));
|
|
|
|
return false;
|
|
}
|
|
|
|
// Do special actions for dynamic report
|
|
function plugin_example_dynamicReport($parm) {
|
|
|
|
if ($parm["item_type"] == 'PluginExampleExample') {
|
|
// Do all what you want for export depending on $parm
|
|
echo "Personalized export for type ".$parm["display_type"];
|
|
echo 'with additional datas : <br>';
|
|
echo "Single data : add1 <br>";
|
|
print $parm['add1'].'<br>';
|
|
echo "Array data : add2 <br>";
|
|
Html::printCleanArray($parm['add2']);
|
|
// Return true if personalized display is done
|
|
return true;
|
|
}
|
|
// Return false if no specific display is done, then use standard display
|
|
return false;
|
|
}
|
|
|
|
|
|
// Add parameters to Html::printPager in search system
|
|
function plugin_example_addParamFordynamicReport($itemtype) {
|
|
|
|
if ($itemtype == 'PluginExampleExample') {
|
|
// Return array data containing all params to add : may be single data or array data
|
|
// Search config are available from session variable
|
|
return array('add1' => $_SESSION['glpisearch'][$itemtype]['order'],
|
|
'add2' => array('tutu' => 'Second Add',
|
|
'Other Data'));
|
|
}
|
|
// Return false or a non array data if not needed
|
|
return false;
|
|
}
|
|
|
|
|
|
// Install process for plugin : need to return true if succeeded
|
|
function plugin_example_install() {
|
|
global $DB;
|
|
|
|
if (!TableExists("glpi_plugin_example_examples")) {
|
|
$query = "CREATE TABLE `glpi_plugin_example_examples` (
|
|
`id` int(11) NOT NULL auto_increment,
|
|
`name` varchar(255) collate utf8_unicode_ci default NULL,
|
|
`serial` varchar(255) collate utf8_unicode_ci NOT NULL,
|
|
`plugin_example_dropdowns_id` int(11) NOT NULL default '0',
|
|
`is_deleted` tinyint(1) NOT NULL default '0',
|
|
`is_template` tinyint(1) NOT NULL default '0',
|
|
`template_name` varchar(255) collate utf8_unicode_ci default NULL,
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci";
|
|
|
|
$DB->query($query) or die("error creating glpi_plugin_example_examples ". $DB->error());
|
|
|
|
$query = "INSERT INTO `glpi_plugin_example_examples`
|
|
(`id`, `name`, `serial`, `plugin_example_dropdowns_id`, `is_deleted`,
|
|
`is_template`, `template_name`)
|
|
VALUES (1, 'example 1', 'serial 1', 1, 0, 0, NULL),
|
|
(2, 'example 2', 'serial 2', 2, 0, 0, NULL),
|
|
(3, 'example 3', 'serial 3', 1, 0, 0, NULL)";
|
|
$DB->query($query) or die("error populate glpi_plugin_example ". $DB->error());
|
|
}
|
|
|
|
if (!TableExists("glpi_plugin_example_dropdowns")) {
|
|
$query = "CREATE TABLE `glpi_plugin_example_dropdowns` (
|
|
`id` int(11) NOT NULL auto_increment,
|
|
`name` varchar(255) collate utf8_unicode_ci default NULL,
|
|
`comment` text collate utf8_unicode_ci,
|
|
PRIMARY KEY (`id`),
|
|
KEY `name` (`name`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci";
|
|
|
|
$DB->query($query) or die("error creating glpi_plugin_example_dropdowns". $DB->error());
|
|
|
|
$query = "INSERT INTO `glpi_plugin_example_dropdowns`
|
|
(`id`, `name`, `comment`)
|
|
VALUES (1, 'dp 1', 'comment 1'),
|
|
(2, 'dp2', 'comment 2')";
|
|
|
|
$DB->query($query) or die("error populate glpi_plugin_example_dropdowns". $DB->error());
|
|
|
|
}
|
|
|
|
// To be called for each task the plugin manage
|
|
// task in class
|
|
CronTask::Register('PluginExampleExample', 'Sample', DAY_TIMESTAMP, array('param' => 50));
|
|
return true;
|
|
}
|
|
|
|
|
|
// Uninstall process for plugin : need to return true if succeeded
|
|
function plugin_example_uninstall() {
|
|
global $DB;
|
|
|
|
|
|
$notif = new Notification();
|
|
$options = array('itemtype' => 'Ticket',
|
|
'event' => 'plugin_example',
|
|
'FIELDS' => 'id');
|
|
foreach ($DB->request('glpi_notifications', $options) as $data) {
|
|
$notif->delete($data);
|
|
}
|
|
// Old version tables
|
|
if (TableExists("glpi_dropdown_plugin_example")) {
|
|
$query = "DROP TABLE `glpi_dropdown_plugin_example`";
|
|
$DB->query($query) or die("error deleting glpi_dropdown_plugin_example");
|
|
}
|
|
if (TableExists("glpi_plugin_example")) {
|
|
$query = "DROP TABLE `glpi_plugin_example`";
|
|
$DB->query($query) or die("error deleting glpi_plugin_example");
|
|
}
|
|
// Current version tables
|
|
if (TableExists("glpi_plugin_example_example")) {
|
|
$query = "DROP TABLE `glpi_plugin_example_example`";
|
|
$DB->query($query) or die("error deleting glpi_plugin_example_example");
|
|
}
|
|
if (TableExists("glpi_plugin_example_dropdowns")) {
|
|
$query = "DROP TABLE `glpi_plugin_example_dropdowns`;";
|
|
$DB->query($query) or die("error deleting glpi_plugin_example_dropdowns");
|
|
}
|
|
return true;
|
|
}
|
|
|
|
|
|
function plugin_example_AssignToTicket($types) {
|
|
|
|
$types['PluginExampleExample'] = "Example";
|
|
return $types;
|
|
}
|
|
|
|
|
|
function plugin_example_get_events(NotificationTargetTicket $target) {
|
|
$target->events['plugin_example'] = __("Example event", 'example');
|
|
}
|
|
|
|
|
|
function plugin_example_get_datas(NotificationTargetTicket $target) {
|
|
$target->datas['##ticket.example##'] = __("Example datas", 'example');
|
|
}
|
|
|
|
|
|
function plugin_example_postinit() {
|
|
global $CFG_GLPI;
|
|
|
|
// All plugins are initialized, so all types are registered
|
|
foreach ($CFG_GLPI["infocom_types"] as $type) {
|
|
// do something
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
* Hook to add more data from ldap
|
|
* fields from plugin_retrieve_more_field_from_ldap_example
|
|
*
|
|
* @param $datas array
|
|
*
|
|
* @return un tableau
|
|
**/
|
|
function plugin_retrieve_more_data_from_ldap_example(array $datas) {
|
|
return $datas;
|
|
}
|
|
|
|
|
|
/**
|
|
* Hook to add more fields from LDAP
|
|
*
|
|
* @param $fields array
|
|
*
|
|
* @return un tableau
|
|
**/
|
|
function plugin_retrieve_more_field_from_ldap_example($fields) {
|
|
return $fields;
|
|
}
|
|
|
|
// Check to add to status page
|
|
function plugin_example_Status($param) {
|
|
// Do checks (no check for example)
|
|
$ok = true;
|
|
echo "example plugin: example";
|
|
if ($ok) {
|
|
echo "_OK";
|
|
} else {
|
|
echo "_PROBLEM";
|
|
// Only set ok to false if trouble (global status)
|
|
$param['ok'] = false;
|
|
}
|
|
echo "\n";
|
|
return $param;
|
|
}
|
|
?>
|