mirror of
https://github.com/e107inc/e107.git
synced 2025-01-17 20:58:30 +01:00
425 lines
10 KiB
PHP
425 lines
10 KiB
PHP
<?php
|
|
/*
|
|
* e107 website system
|
|
*
|
|
* Copyright (C) 2008-2013 e107 Inc (e107.org)
|
|
* Released under the terms and conditions of the
|
|
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
|
|
*
|
|
*/
|
|
|
|
/**
|
|
* @package e107
|
|
* @subpackage admin
|
|
*
|
|
* 'Notify' admin page - selects action on various events
|
|
*/
|
|
|
|
require_once('../class2.php');
|
|
if (!getperms('O'))
|
|
{
|
|
header('location:'.e_BASE.'index.php');
|
|
exit;
|
|
}
|
|
|
|
include_lan(e_LANGUAGEDIR.e_LANGUAGE.'/admin/lan_'.e_PAGE);
|
|
|
|
$e_sub_cat = 'notify';
|
|
|
|
require_once('auth.php');
|
|
require_once(e_HANDLER.'userclass_class.php');
|
|
|
|
$frm = e107::getForm();
|
|
|
|
$nc = new notify_config;
|
|
|
|
$uc = new user_class;
|
|
$mes = e107::getMessage();
|
|
|
|
$uc->fixed_classes['email'] = 'Email Address =>';
|
|
$uc->text_class_link['email'] = 'email';
|
|
|
|
if (isset($_POST['update']))
|
|
{
|
|
if($nc -> update())
|
|
{
|
|
//$message = LAN_UPDATED;
|
|
//$style = E_MESSAGE_SUCCESS;
|
|
//$mes->addSuccess(LAN_UPDATED);
|
|
}
|
|
else
|
|
{
|
|
//$message = LAN_UPDATED_FAILED;
|
|
//$style = E_MESSAGE_FAILED;
|
|
$mes->addError(LAN_UPDATED_FAILED);
|
|
}
|
|
//$emessage->add($message, $style);
|
|
|
|
// $ns -> tablerender($message,"<div style='text-align:center'>".$message."</div>");
|
|
}
|
|
|
|
$nc -> config();
|
|
|
|
|
|
class notify_config
|
|
{
|
|
var $notify_prefs;
|
|
var $changeList = array();
|
|
var $pluginConfig = array();
|
|
|
|
function __construct()
|
|
{
|
|
global $sysprefs, $eArrayStorage;
|
|
$ns = e107::getRender();
|
|
$tp = e107::getParser();
|
|
$pref = e107::getPref();
|
|
$sql = e107::getDb();
|
|
|
|
// $this -> notify_prefs = $sysprefs -> get('notify_prefs');
|
|
// $this -> notify_prefs = $eArrayStorage -> ReadArray($this -> notify_prefs);
|
|
$this->notify_prefs = e107::getConfig('notify')->getPref();
|
|
|
|
$recalibrate = FALSE;
|
|
// load every e_notify.php file.
|
|
if($pref['e_notify_list'])
|
|
{
|
|
foreach($pref['e_notify_list'] as $val) // List of available e_notify.php files.
|
|
{
|
|
// if (!isset($this->notify_prefs['plugins'][$val]))
|
|
{
|
|
|
|
$this -> notify_prefs['plugins'][$val] = TRUE;
|
|
|
|
if (is_readable(e_PLUGIN.$val."/e_notify.php"))
|
|
{
|
|
require_once(e_PLUGIN.$val.'/e_notify.php');
|
|
|
|
if(class_exists($val."_notify")) // new v2.x
|
|
{
|
|
$legacy = 0; // Newe.
|
|
$config_events = array();
|
|
|
|
$data = e107::callMethod($val."_notify", 'config');
|
|
|
|
$config_category = str_replace("_menu","",ucfirst($val))." Events";
|
|
|
|
foreach($data as $v)
|
|
{
|
|
$func = $v['function'];
|
|
$config_events[$func] = $v['name'];
|
|
}
|
|
|
|
}
|
|
else
|
|
{
|
|
$legacy = 1; // Legacy Mode.
|
|
}
|
|
|
|
// foreach ($config_events as $event_id => $event_text)
|
|
// {
|
|
// $this -> notify_prefs['event'][$event_id] = array('class' => '255', 'email' => '', 'plugin'=> $val);
|
|
|
|
// }
|
|
$this->pluginConfig[$val] = array('category' => $config_category, 'events' => $config_events, 'legacy'=> $legacy);
|
|
$recalibrate = true;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// print_a($this->pluginConfig);
|
|
|
|
if ($recalibrate)
|
|
{
|
|
$s_prefs = $tp -> toDB($this -> notify_prefs);
|
|
$s_prefs = $eArrayStorage -> WriteArray($s_prefs);
|
|
// $sql -> db_Update("core", "e107_value='".$s_prefs."' WHERE e107_name='notify_prefs'");
|
|
}
|
|
}
|
|
|
|
|
|
|
|
function config()
|
|
{
|
|
//global $ns, $rs, $frm, $emessage;
|
|
$ns = e107::getRender();
|
|
$frm = e107::getForm();
|
|
$mes = e107::getMessage();
|
|
|
|
// <div>".NT_LAN_2.":</div>
|
|
|
|
$text = "
|
|
|
|
<form action='".e_SELF."?results' method='post' id='scanform'>
|
|
<ul class='nav nav-tabs'>
|
|
<li class='active'><a href='#core' data-toggle='tab'>Users</a></li>
|
|
<li><a href='#news' data-toggle='tab'>News</a></li>
|
|
<li><a href='#mail' data-toggle='tab'>Mail</a></li>
|
|
<li><a href='#files' data-toggle='tab'>Files</a></li>";
|
|
|
|
foreach ($this -> notify_prefs['plugins'] as $id => $var)
|
|
{
|
|
$text .= "<li><a href='#notify-".$id."' data-toggle='tab'>".ucfirst($id)."</a></li>";
|
|
}
|
|
|
|
$text .= "
|
|
</ul>
|
|
<div class='tab-content'>
|
|
<div class='tab-pane active' id='core'>
|
|
<fieldset id='core-notify-config'>
|
|
<legend>".NU_LAN_1."</legend>
|
|
<table class='table adminform'>
|
|
<colgroup>
|
|
<col class='col-label' />
|
|
<col class='col-control' />
|
|
</colgroup>
|
|
";
|
|
|
|
$text .= $this -> render_event('usersup', NU_LAN_2);
|
|
$text .= $this -> render_event('userveri', NU_LAN_3);
|
|
$text .= $this -> render_event('login', NU_LAN_4);
|
|
$text .= $this -> render_event('logout', NU_LAN_5);
|
|
|
|
$text .= "</table></fieldset>
|
|
<fieldset id='core-notify-2'>
|
|
<legend>".NS_LAN_1."</legend>
|
|
<table class='table adminform'>
|
|
<colgroup>
|
|
<col class='col-label' />
|
|
<col class='col-control' />
|
|
</colgroup>";
|
|
|
|
$text .= $this -> render_event('flood', NS_LAN_2);
|
|
|
|
|
|
$text .= "</table></fieldset>
|
|
</div>
|
|
|
|
|
|
<div class='tab-pane' id='news'>
|
|
<fieldset id='core-notify-3'>
|
|
<legend>".NN_LAN_1."</legend>
|
|
<table class='table adminform'>
|
|
<colgroup>
|
|
<col class='col-label' />
|
|
<col class='col-control' />
|
|
</colgroup>";
|
|
|
|
$text .= $this -> render_event('subnews', NN_LAN_2);
|
|
$text .= $this -> render_event('newspost', NN_LAN_3);
|
|
$text .= $this -> render_event('newsupd', NN_LAN_4);
|
|
$text .= $this -> render_event('newsdel', NN_LAN_5);
|
|
|
|
$text .= "</table></fieldset>
|
|
</div>
|
|
|
|
|
|
<div class='tab-pane' id='mail'>
|
|
<fieldset id='core-notify-4'>
|
|
<legend>".NM_LAN_1."</legend>
|
|
<table class='table adminform'>
|
|
<colgroup>
|
|
<col class='col-label' />
|
|
<col class='col-control' />
|
|
</colgroup>";
|
|
|
|
$text .= $this -> render_event('maildone', NM_LAN_2);
|
|
|
|
|
|
$text .= "</table></fieldset>
|
|
</div>
|
|
|
|
|
|
<div class='tab-pane' id='files'>
|
|
<fieldset id='core-notify-5'>
|
|
<legend>".NF_LAN_1."</legend>
|
|
<table class='table adminform'>
|
|
<colgroup>
|
|
<col class='col-label' />
|
|
<col class='col-control' />
|
|
</colgroup>";
|
|
|
|
$text .= $this -> render_event('fileupload', NF_LAN_2);
|
|
|
|
$text .= "</table>
|
|
</fieldset>
|
|
</div>";
|
|
|
|
foreach ($this->notify_prefs['plugins'] as $plugin_id => $plugin_settings)
|
|
{
|
|
if(is_readable(e_PLUGIN.$plugin_id.'/e_notify.php'))
|
|
{
|
|
$config_category = $this->pluginConfig[$plugin_id]['category'];
|
|
$legacy = $this->pluginConfig[$plugin_id]['legacy'];
|
|
|
|
// require(e_PLUGIN.$plugin_id.'/e_notify.php');
|
|
|
|
$text .= "<div class='tab-pane' id='notify-".$plugin_id."'>
|
|
<fieldset id='core-notify-".str_replace(" ","_",$config_category)."'>
|
|
<legend>".$config_category."</legend>
|
|
<table class='table adminform'>
|
|
<colgroup>
|
|
<col class='col-label' />
|
|
<col class='col-control' />
|
|
</colgroup>";
|
|
;
|
|
|
|
foreach ($this->pluginConfig[$plugin_id]['events'] as $event_id => $event_text)
|
|
{
|
|
$text .= $this->render_event($event_id, $event_text, $plugin_id, $legacy);
|
|
}
|
|
|
|
$text .= "</table>
|
|
</div>";
|
|
}
|
|
}
|
|
|
|
$text .= "
|
|
|
|
<div class='buttons-bar center'>";
|
|
$text .= $frm->admin_button('update', LAN_UPDATE,'update');
|
|
$text .= "
|
|
</div>
|
|
</fieldset>
|
|
</form>
|
|
";
|
|
|
|
$ns -> tablerender(NT_LAN_1, $mes->render() . $text);
|
|
}
|
|
|
|
|
|
function render_event($id, $description, $include='', $legacy = 0)
|
|
{
|
|
global $uc; // $rs
|
|
$tp = e107::getParser();
|
|
$frm = e107::getForm();
|
|
|
|
$text = "
|
|
<tr>
|
|
<td >".$description.": </td>
|
|
<td class='nowrap'>
|
|
".$uc->uc_dropdown('event['.$id.'][class]', varset($this->notify_prefs['event'][$id]['class'],255), "nobody,main,admin,member,classes,email","onchange=\"mail_field(this.value,'event_".$id."');\" ");
|
|
|
|
if($this -> notify_prefs['event'][$id]['class'] == 'email')
|
|
{
|
|
$disp='display:visible';
|
|
$value = $tp -> toForm($this -> notify_prefs['event'][$id]['email']);
|
|
}
|
|
else
|
|
{
|
|
$disp = "display:none";
|
|
$value= "";
|
|
}
|
|
|
|
$text .= "<input type='text' style='width:180px;$disp' class='tbox' id='event_".$id."' name='event[".$id."][email]' value=\"".$value."\" />\n";
|
|
|
|
$text .= $frm->hidden("event[".$id."][include]", $include);
|
|
$text .= $frm->hidden("event[".$id."][legacy]", $legacy); // function or method
|
|
|
|
$text .= "</td>
|
|
</tr>";
|
|
return $text;
|
|
}
|
|
|
|
|
|
function update()
|
|
{
|
|
global $sql, $pref, $eArrayStorage;
|
|
$this->changeList = array();
|
|
foreach ($_POST['event'] as $key => $value)
|
|
{
|
|
if ($this -> update_event($key))
|
|
{
|
|
$active = TRUE;
|
|
}
|
|
}
|
|
if ($active)
|
|
{
|
|
$pref['notify'] = TRUE;
|
|
}
|
|
else
|
|
{
|
|
$pref['notify'] = FALSE;
|
|
}
|
|
save_prefs();
|
|
|
|
// print_a($this->notify_prefs);
|
|
/*
|
|
$s_prefs = $tp -> toDB($this -> notify_prefs);
|
|
$s_prefs = $eArrayStorage -> WriteArray($s_prefs);
|
|
if($sql -> db_Update("core", "e107_value='".$s_prefs."' WHERE e107_name='notify_prefs'")!==FALSE)
|
|
*/
|
|
e107::getConfig('notify')->updatePref($this->notify_prefs);
|
|
if (e107::getConfig('notify')->save(FALSE))
|
|
{
|
|
// e107::getAdminLog()->logArrayAll('NOTIFY_01',$this->changeList);
|
|
return TRUE;
|
|
}
|
|
else
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
}
|
|
|
|
function update_event($id)
|
|
{
|
|
$changed = FALSE;
|
|
|
|
if ($this -> notify_prefs['event'][$id]['class'] != $_POST['event'][$id]['class'])
|
|
{
|
|
$this -> notify_prefs['event'][$id]['class'] = $_POST['event'][$id]['class'];
|
|
$changed = TRUE;
|
|
}
|
|
if ($this -> notify_prefs['event'][$id]['email'] != $_POST['event'][$id]['email'])
|
|
{
|
|
$this -> notify_prefs['event'][$id]['email'] = $_POST['event'][$id]['email'];
|
|
$changed = TRUE;
|
|
}
|
|
|
|
$this -> notify_prefs['event'][$id]['include'] = $_POST['event'][$id]['include'];
|
|
$this -> notify_prefs['event'][$id]['legacy'] = $_POST['event'][$id]['legacy'];
|
|
|
|
unset($this -> notify_prefs['event'][$id]['plugin']);
|
|
unset($this -> notify_prefs['event'][$id]['type']);
|
|
|
|
if ($changed)
|
|
{
|
|
$this->changeList[$id] = $this->notify_prefs['event'][$id]['class'].', '.$this->notify_prefs['event'][$id]['email'];
|
|
}
|
|
if ($this -> notify_prefs['event'][$id]['class'] != 255)
|
|
{
|
|
return TRUE;
|
|
}
|
|
else
|
|
{
|
|
return FALSE;
|
|
}
|
|
}
|
|
}
|
|
|
|
require_once(e_ADMIN.'footer.php');
|
|
function headerjs()
|
|
{
|
|
|
|
$js = "
|
|
<script type='text/javascript'>
|
|
|
|
function mail_field(val,id)
|
|
{
|
|
if(val == 'email')
|
|
{
|
|
document.getElementById(id).style.display ='';
|
|
}
|
|
else
|
|
{
|
|
document.getElementById(id).style.display ='none';
|
|
}
|
|
}
|
|
|
|
</script>";
|
|
|
|
return $js;
|
|
}
|
|
?>
|