Previous releases can be found here: https://forge.glpi-project.org/projects/processmaker
190 lines
6.6 KiB
PHP
190 lines
6.6 KiB
PHP
<?php
|
|
|
|
if (!defined('GLPI_ROOT')) {
|
|
die("Sorry. You can't access directly to this file");
|
|
}
|
|
|
|
/**
|
|
* This class manages the mail settings
|
|
*/
|
|
class ProcessmakerConfig extends CommonDBTM {
|
|
|
|
var $table = 'glpi_plugins_processmaker_config';
|
|
|
|
|
|
static function getTypeName() {
|
|
global $LANG;
|
|
|
|
return 'Process Maker Plugin Configuration';
|
|
}
|
|
|
|
|
|
function defineTabs($options=array()) {
|
|
|
|
$ong = array();
|
|
$this->addStandardTab(__CLASS__, $ong, $options);
|
|
|
|
return $ong;
|
|
}
|
|
|
|
|
|
function getTabNameForItem(CommonGLPI $item, $withtemplate=0) {
|
|
global $LANG, $CFG_GLPI;
|
|
|
|
switch ($item->getType()) {
|
|
case __CLASS__ :
|
|
$tabs[1] = $LANG['common'][12];
|
|
return $tabs;
|
|
}
|
|
return '';
|
|
}
|
|
|
|
|
|
static function displayTabContentForItem(CommonGLPI $item, $tabnum=1, $withtemplate=0) {
|
|
global $CFG_GLPI;
|
|
|
|
if($item->getType() == __CLASS__) {
|
|
switch ($tabnum) {
|
|
case 1 :
|
|
$item->showFormMailServerConfig();
|
|
break;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
|
|
/**
|
|
* Print the mailing config form
|
|
*
|
|
* @param $ID integer ID of the item
|
|
* @param $options array
|
|
* - target filename : where to go when done.
|
|
* - tabs integer : ID of the tab to display
|
|
*
|
|
* @return Nothing (display)
|
|
*
|
|
**/
|
|
function showForm($ID, $options=array()) {
|
|
global $LANG, $CFG_GLPI;
|
|
|
|
if (!Session::haveRight("config", "w")) {
|
|
return false;
|
|
}
|
|
if (!$CFG_GLPI['use_mailing']) {
|
|
$options['colspan'] = 1;
|
|
}
|
|
|
|
$this->getFromDB($ID);
|
|
$this->showTabs($options);
|
|
$this->addDivForTabs();
|
|
return true;
|
|
}
|
|
|
|
|
|
function canCreate() {
|
|
return Session::haveRight('config', 'w');
|
|
}
|
|
|
|
|
|
function canView() {
|
|
return Session::haveRight('config', 'r');
|
|
}
|
|
|
|
|
|
//function showFormMailServerConfig() {
|
|
// global $LANG, $CFG_GLPI;
|
|
|
|
// echo "<form action='".Toolbox::getItemTypeFormURL(__CLASS__)."' method='post'>";
|
|
// echo "<div>";
|
|
// echo "<table class='tab_cadre_fixe'>";
|
|
// echo "<input type='hidden' name='id' value='1'>";
|
|
|
|
// echo "<tr class='tab_bg_1'><th colspan='4'>".$LANG['setup'][704]."</th></tr>";
|
|
|
|
// echo "<tr class='tab_bg_2'><td>" . $LANG['setup'][202] . " :</td><td>";
|
|
// Dropdown::showYesNo("use_mailing", $CFG_GLPI["use_mailing"]);
|
|
// echo "</td>";
|
|
|
|
// if ($CFG_GLPI['use_mailing']) {
|
|
|
|
// echo "<td >" . $LANG['setup'][227] . " :</td>";
|
|
// echo "<td><input type='text' name='url_base' size='40' value='".$CFG_GLPI["url_base"]."'>";
|
|
// echo "</td></tr>";
|
|
|
|
// echo "<tr class='tab_bg_2'>";
|
|
// echo "<td>" . $LANG['setup'][203] . " :</td>";
|
|
// echo "<td><input type='text' name='admin_email' size='40' value='".
|
|
// $CFG_GLPI["admin_email"]."'>";
|
|
// if (!NotificationMail::isUserAddressValid($CFG_GLPI["admin_email"])) {
|
|
// echo "<span class='red'> ".$LANG['mailing'][110]."</span>";
|
|
// }
|
|
// echo "</td>";
|
|
// echo "<td >" . $LANG['setup'][208] . " :</td>";
|
|
// echo "<td><input type='text' name='admin_email_name' size='40' value='" .
|
|
// $CFG_GLPI["admin_email_name"] . "'>";
|
|
// echo " </td></tr>";
|
|
|
|
// echo "<tr class='tab_bg_2'>";
|
|
// echo "<td >" . $LANG['setup'][207] . " :</td>";
|
|
// echo "<td><input type='text' name='admin_reply' size='40' value='" .
|
|
// $CFG_GLPI["admin_reply"] . "'>";
|
|
// if (!NotificationMail::isUserAddressValid($CFG_GLPI["admin_reply"])) {
|
|
// echo "<span class='red'> ".$LANG['mailing'][110]."</span>";
|
|
// }
|
|
// echo " </td>";
|
|
// echo "<td >" . $LANG['setup'][209] . " :</td>";
|
|
// echo "<td><input type='text' name='admin_reply_name' size='40' value='" .
|
|
// $CFG_GLPI["admin_reply_name"] . "'>";
|
|
// echo " </td></tr>";
|
|
// if (!function_exists('mail')) {
|
|
// echo "<tr class='tab_bg_2'><td class='center' colspan='2'>";
|
|
// echo "<span class='red'>" . $LANG['setup'][217] . " :</span>".
|
|
// $LANG['setup'][218] . "</td></tr>";
|
|
// }
|
|
|
|
// echo "<tr class='tab_bg_2'>";
|
|
// echo "<td>" . $LANG['setup'][204] . " :</td>";
|
|
// echo "<td colspan='3'><textarea cols='60' rows='3' name='mailing_signature'>".
|
|
// $CFG_GLPI["mailing_signature"]."</textarea></td></tr>";
|
|
|
|
// echo "<tr class='tab_bg_1'><th colspan='4'>".$LANG['setup'][660]."</th></tr>";
|
|
// echo "<tr class='tab_bg_2'><td>" . $LANG['setup'][231] . " :</td><td>";
|
|
// $mail_methods = array(MAIL_MAIL => $LANG['setup'][650],
|
|
// MAIL_SMTP => $LANG['setup'][651],
|
|
// MAIL_SMTPSSL => $LANG['setup'][652],
|
|
// MAIL_SMTPTLS => $LANG['setup'][653]);
|
|
// Dropdown::showFromArray("smtp_mode", $mail_methods,
|
|
// array('value' => $CFG_GLPI["smtp_mode"]));
|
|
// echo "</td><td colspan='2' class='center'> ";
|
|
// echo "</td></tr>";
|
|
|
|
// echo "<tr class='tab_bg_2'><td >" . $LANG['setup'][232] . " :</td>";
|
|
// echo "<td><input type='text' name='smtp_host' size='40' value='".$CFG_GLPI["smtp_host"]."'>";
|
|
// echo "</td>";
|
|
// echo "<td >" . $LANG['setup'][234] . " :</td>";
|
|
// echo "<td><input type='text' name='smtp_username' size='40' value='" .
|
|
// $CFG_GLPI["smtp_username"] . "'></td></tr>";
|
|
|
|
// echo "<tr class='tab_bg_2'><td >" . $LANG['setup'][175] . " :</td>";
|
|
// echo "<td><input type='text' name='smtp_port' size='5' value='".$CFG_GLPI["smtp_port"]."'>";
|
|
// echo "</td>";
|
|
// echo "<td >" . $LANG['setup'][235] . " :</td>";
|
|
// echo "<td><input type='password' name='smtp_passwd' size='40' value='' autocomplete='off'>";
|
|
// echo "<br><input type='checkbox' name='_blank_smtp_passwd'> ".$LANG['setup'][284];
|
|
|
|
// echo "</td></tr>";
|
|
|
|
// } else {
|
|
// echo "<td colspan='2'></td></tr>";
|
|
// }
|
|
// $options['candel'] = false;
|
|
// $options['addbuttons'] = array('test_smtp_send' => $LANG['setup'][229]);
|
|
// $this->showFormButtons($options);
|
|
//}
|
|
|
|
|
|
}
|
|
|
|
|
|
?>
|