mirror of
https://github.com/e107inc/e107.git
synced 2025-04-20 04:32:01 +02:00
Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
f88f3f5494
@ -980,7 +980,7 @@ if(varset($pref['force_userupdate']) && USER && !isset($_E107['no_forceuserupdat
|
||||
$sql->db_Mark_Time('Start: Signup/splash/admin');
|
||||
|
||||
|
||||
if(($pref['membersonly_enabled'] && !isset($_E107['allow_guest'])) || $pref['maintainance_flag'])
|
||||
if(($pref['membersonly_enabled'] && !isset($_E107['allow_guest'])) || ($pref['maintainance_flag'] && empty($_E107['cli'])))
|
||||
{
|
||||
//XXX move force_userupdate() also?
|
||||
e107::getRedirect()->checkMaintenance();
|
||||
|
24
cron.php
24
cron.php
@ -4,35 +4,32 @@
|
||||
+ ----------------------------------------------------------------------------+
|
||||
|| e107 website system
|
||||
|
|
||||
| Copyright (C) 2008-2009 e107 Inc
|
||||
| Copyright (C) 2008-2014 e107 Inc
|
||||
| http://e107.org
|
||||
|
|
||||
|
|
||||
| Released under the terms and conditions of the
|
||||
| GNU General Public License (http://gnu.org).
|
||||
|
|
||||
| $Source: /cvs_backup/e107_0.8/cron.php,v $
|
||||
| $Revision$
|
||||
| $Date$
|
||||
| $Author$
|
||||
+----------------------------------------------------------------------------+
|
||||
*/
|
||||
|
||||
// Usage: [full path to this script]cron.php --u=admin --p=password // use your admin login.
|
||||
// test
|
||||
|
||||
$_E107['cli'] = TRUE;
|
||||
$_E107['cli'] = true;
|
||||
$_E107['debug'] = false;
|
||||
$_E107['no_online'] = TRUE;
|
||||
$_E107['no_forceuserupdate'] = TRUE;
|
||||
$_E107['no_menus'] = TRUE;
|
||||
$_E107['no_online'] = true;
|
||||
$_E107['no_forceuserupdate'] = true;
|
||||
$_E107['no_menus'] = true;
|
||||
$_E107['allow_guest'] = true; // allow crons to run while in members-only mode.
|
||||
|
||||
// we allow theme init as cron jobs might need to access current theme templates (e.g. custom email templates)
|
||||
|
||||
require_once(realpath(dirname(__FILE__)."/class2.php"));
|
||||
|
||||
$pwd = ($_E107['debug'] && $_SERVER['QUERY_STRING']) ? $_SERVER['QUERY_STRING'] : trim($_SERVER['argv'][1]);
|
||||
|
||||
if(empty($pwd) && !empty($_GET['token']))
|
||||
if(!empty($_GET['token']))
|
||||
{
|
||||
$pwd = $_GET['token'];
|
||||
}
|
||||
@ -48,9 +45,12 @@ require_once(realpath(dirname(__FILE__)."/class2.php"));
|
||||
You should regenerate the cron command in admin and enter it again in your server configuration.
|
||||
";
|
||||
|
||||
$message .= "<h4>Debug Info</h4>";
|
||||
$message .= "<h2>Debug Info</h2>";
|
||||
$message .= "<h3>_SERVER</h3>";
|
||||
$message .= print_a($_SERVER,true);
|
||||
$message .= "<h3>_ENV</h3>";
|
||||
$message .= print_a($_ENV,true);
|
||||
$message .= "<h3>_GET</h3>";
|
||||
$message .= print_a($_GET,true);
|
||||
|
||||
sendemail($pref['siteadminemail'], "e107 - Cron Schedule Misconfigured.", $message, $pref['siteadmin'],$pref['siteadminemail'], $pref['siteadmin']);
|
||||
|
@ -848,6 +848,28 @@ class mailout_main_ui extends e_admin_ui
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>".LAN_MAILOUT_77."</td>
|
||||
<td> ";
|
||||
|
||||
$mail_enable = explode(',',vartrue($pref['mailout_enabled'],'core'));
|
||||
|
||||
$coreCheck = (in_array('core',$mail_enable)) ? "checked='checked'" : "";
|
||||
$text .= $frm->checkbox('mail_mailer_enabled[]','core', $coreCheck, 'users');
|
||||
|
||||
if(!empty($pref['e_mailout_list']))
|
||||
{
|
||||
foreach ($pref['e_mailout_list'] as $mailer => $v)
|
||||
{
|
||||
$check = (in_array($mailer,$mail_enable)) ? "checked='checked'" : "";
|
||||
$text .= $frm->checkbox('mail_mailer_enabled[]',$mailer,$check,$mailer);
|
||||
// $text .= " <input type='checkbox' name='mail_mailer_enabled[]' value='{$mailer}' {$check} /> {$mailer}<br />";
|
||||
}
|
||||
}
|
||||
|
||||
$text .= "</td></tr>
|
||||
|
||||
|
||||
<tr>
|
||||
<td style='vertical-align:top'>".LAN_MAILOUT_115."<br /></td>
|
||||
<td>
|
||||
@ -965,29 +987,10 @@ class mailout_main_ui extends e_admin_ui
|
||||
<td>".LAN_MAILOUT_156."</td>
|
||||
<td>".$frm->number('mail_workpertick',varset($pref['mail_workpertick'],5))."<span class='field-help'>".LAN_MAILOUT_157."</span>
|
||||
</td>
|
||||
</tr>\n";
|
||||
</tr>
|
||||
|
||||
if (isset($pref['e_mailout_list'])) // Allow selection of email address sources
|
||||
{
|
||||
$text .= "
|
||||
<tr>
|
||||
<td>".LAN_MAILOUT_77."</td>
|
||||
<td> ";
|
||||
|
||||
$mail_enable = explode(',',$pref['mailout_enabled']);
|
||||
|
||||
$coreCheck = (in_array('core',$mail_enable)) ? "checked='checked'" : "";
|
||||
$text .= $frm->checkbox('mail_mailer_enabled[]','core', $coreCheck, 'users');
|
||||
|
||||
foreach ($pref['e_mailout_list'] as $mailer => $v)
|
||||
{
|
||||
$check = (in_array($mailer,$mail_enable)) ? "checked='checked'" : "";
|
||||
$text .= $frm->checkbox('mail_mailer_enabled[]',$mailer,$check,$mailer);
|
||||
// $text .= " <input type='checkbox' name='mail_mailer_enabled[]' value='{$mailer}' {$check} /> {$mailer}<br />";
|
||||
}
|
||||
|
||||
$text .= "</td></tr>\n";
|
||||
}
|
||||
|
||||
";
|
||||
|
||||
list($mail_log_option,$mail_log_email) = explode(',',varset($pref['mail_log_options'],'0,0'));
|
||||
|
||||
|
@ -2318,9 +2318,17 @@ TEMPLATE;
|
||||
|
||||
switch ($type)
|
||||
{
|
||||
case 'date':
|
||||
case 'datetime':
|
||||
$array = array(
|
||||
'text' => "Text Box",
|
||||
"hidden" => "Hidden"
|
||||
);
|
||||
break;
|
||||
|
||||
case 'int':
|
||||
case 'tinyint':
|
||||
case 'bigint':
|
||||
case 'smallint':
|
||||
$array = array(
|
||||
"boolean" => "True/False",
|
||||
@ -2399,10 +2407,14 @@ TEMPLATE;
|
||||
{
|
||||
$name = $tmp[2];
|
||||
}
|
||||
else // Link_description
|
||||
elseif(count($tmp) == 2) // Link_description
|
||||
{
|
||||
$name = $tmp[1];
|
||||
}
|
||||
elseif(count($tmp) === 1)
|
||||
{
|
||||
$name = $data;
|
||||
}
|
||||
|
||||
$ret['title'] = ucfirst($name);
|
||||
$ret['width'] = 'auto';
|
||||
|
@ -3822,7 +3822,7 @@ class e_admin_controller_ui extends e_admin_controller
|
||||
}
|
||||
|
||||
// Debug Filter Query.
|
||||
e107::getMessage()->addDebug('QRY='.$qry);
|
||||
e107::getMessage()->addDebug('QRY='.str_replace('#', MPREFIX, $qry));
|
||||
// echo $qry.'<br />';
|
||||
// print_a($this->fields);
|
||||
// print_a($_GET);
|
||||
|
@ -224,7 +224,7 @@ class e_chart
|
||||
* @param array $data
|
||||
* @param string $id of canvas element
|
||||
*/
|
||||
public function setData($data,$id)
|
||||
public function setData($data)
|
||||
{
|
||||
$this->id = $id;
|
||||
if($data == 'demo')
|
||||
|
@ -1449,8 +1449,13 @@ class e107
|
||||
* @return string
|
||||
*/
|
||||
public static function serialize($ArrayData, $AddSlashes = false)
|
||||
{
|
||||
return self::getArrayStorage()->serialize($ArrayData, $AddSlashes);
|
||||
{
|
||||
if(empty($ArrayData))
|
||||
{
|
||||
return array();
|
||||
}
|
||||
|
||||
return self::getArrayStorage()->serialize($ArrayData, $AddSlashes);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -1460,8 +1465,13 @@ class e107
|
||||
* @return array stored data
|
||||
*/
|
||||
public static function unserialize($ArrayData)
|
||||
{
|
||||
return self::getArrayStorage()->unserialize($ArrayData);
|
||||
{
|
||||
if(empty($ArrayData))
|
||||
{
|
||||
return array();
|
||||
}
|
||||
|
||||
return self::getArrayStorage()->unserialize($ArrayData);
|
||||
}
|
||||
|
||||
|
||||
|
@ -1618,7 +1618,7 @@ class e_parse extends e_parser
|
||||
// Convert URL's to clickable links, unless modifiers or prefs override
|
||||
if ($opts['link_click'])
|
||||
{
|
||||
if ($opts['link_replace'])
|
||||
if ($opts['link_replace'] && ADMIN_AREA !== true)
|
||||
{
|
||||
$_ext = ($pref['links_new_window'] ? " rel=\"external\"" : "");
|
||||
$link_text = $pref['link_text'];
|
||||
|
@ -3290,6 +3290,19 @@ class e_form
|
||||
case 'bool':
|
||||
case 'boolean':
|
||||
$false = vartrue($parms['trueonly']) ? "" : ADMIN_FALSE_ICON;
|
||||
|
||||
if(!vartrue($attributes['noedit']) && vartrue($parms['editable']) && !vartrue($parms['link'])) // avoid bad markup, better solution coming up
|
||||
{
|
||||
|
||||
$false = ($value === '') ? "□" : "✗";
|
||||
|
||||
$value = intval($value);
|
||||
|
||||
$wparms = (vartrue($parms['reverse'])) ? array(0=>'✓', 1=>$false) : array(0=>$false, 1=>'✓'); //TODO LAN
|
||||
$dispValue = $wparms[$value];
|
||||
|
||||
return $this->renderInline($field, $id, $attributes['title'], $value, $dispValue, 'select', $wparms);
|
||||
}
|
||||
|
||||
if(vartrue($parms['reverse']))
|
||||
{
|
||||
@ -3298,7 +3311,8 @@ class e_form
|
||||
else
|
||||
{
|
||||
$value = $value ? ADMIN_TRUE_ICON : $false;
|
||||
}
|
||||
}
|
||||
|
||||
break;
|
||||
|
||||
case 'url':
|
||||
@ -3377,8 +3391,24 @@ class e_form
|
||||
case 'hidden':
|
||||
return (vartrue($parms['show']) ? ($value ? $value : vartrue($parms['empty'])) : '');
|
||||
break;
|
||||
|
||||
case 'language': // All Known Languages.
|
||||
|
||||
if(!empty($value))
|
||||
{
|
||||
if(strlen($value) === 2)
|
||||
{
|
||||
return e107::getLanguage()->convert($value);
|
||||
}
|
||||
else
|
||||
{
|
||||
return $value;
|
||||
}
|
||||
}
|
||||
|
||||
break;
|
||||
|
||||
case 'lanlist':
|
||||
case 'lanlist': // installed languages.
|
||||
$options = e107::getLanguage()->getLanSelectArray();
|
||||
|
||||
if($options) // FIXME - add support for multi-level arrays (option groups)
|
||||
@ -3773,9 +3803,10 @@ class e_form
|
||||
$ret = $ret.$this->hidden($key, $value);
|
||||
break;
|
||||
|
||||
case 'lanlist':
|
||||
case 'language':
|
||||
$options = e107::getLanguage()->getLanSelectArray();
|
||||
case 'lanlist': // installed languages
|
||||
case 'language': // all languages
|
||||
|
||||
$options = ($attributes['type'] === 'language') ? e107::getLanguage()->getList() : e107::getLanguage()->getLanSelectArray();
|
||||
|
||||
$eloptions = vartrue($parms['__options'], array());
|
||||
if(!is_array($eloptions)) parse_str($eloptions, $eloptions);
|
||||
|
@ -616,4 +616,13 @@ class language{
|
||||
}
|
||||
return $this->_select_array;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return an array of all language types.
|
||||
*/
|
||||
public function getList()
|
||||
{
|
||||
return $this->list;
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -218,6 +218,18 @@ class e107MailManager
|
||||
{
|
||||
$this->e107 = e107::getInstance();
|
||||
$this->mailOverrides = $overrides;
|
||||
|
||||
if(deftrue('e_DEBUG'))
|
||||
{
|
||||
$this->debugMode = true;
|
||||
}
|
||||
|
||||
if($this->debugMode === true)
|
||||
{
|
||||
e107::getMessage()->addWarning('Debug Mode is active. Emailing will only be simulated!');
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -712,6 +724,29 @@ class e107MailManager
|
||||
|
||||
// return; // ************************************************** Temporarily stop DB being updated when line active *****************************
|
||||
|
||||
$addons = array_keys($email['mail_selectors']); // trigger e_mailout.php addons. 'sent' method.
|
||||
|
||||
foreach($addons as $plug)
|
||||
{
|
||||
if($plug === 'core')
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
if($cls = e107::getAddon($plug,'e_mailout'))
|
||||
{
|
||||
$email['status'] = $result;
|
||||
|
||||
if(e107::callMethod($cls, 'sent', $email) === false)
|
||||
{
|
||||
e107::getAdminLog()->add($plug.' sent process failed', $email, E_LOG_FATAL, 'SENT');
|
||||
}
|
||||
}
|
||||
}
|
||||
// --------------------------
|
||||
|
||||
|
||||
|
||||
$this->checkDB(2); // Make sure DB object created
|
||||
|
||||
// Now update email status in DB. We just create new arrays of changed data
|
||||
|
@ -556,6 +556,12 @@ class mailoutAdminClass extends e107MailManager
|
||||
$ret++;
|
||||
}
|
||||
|
||||
if(empty($pref['e_mailout_list']))
|
||||
{
|
||||
return $ret;
|
||||
}
|
||||
|
||||
|
||||
// Load additional configured handlers e_mailout.php from plugins.
|
||||
foreach($pref['e_mailout_list'] as $mailer => $v)
|
||||
{
|
||||
|
@ -87,7 +87,7 @@ define("LAN_MAILOUT_73", "No logging");
|
||||
define("LAN_MAILOUT_74", "Logging only (no send)");
|
||||
define("LAN_MAILOUT_75", "Log and send");
|
||||
define("LAN_MAILOUT_76", "Include email info in log");
|
||||
define("LAN_MAILOUT_77", "Supplementary email address sources");
|
||||
define("LAN_MAILOUT_77", "Email address sources");
|
||||
define("LAN_MAILOUT_78", "Mailshot Status");
|
||||
define("LAN_MAILOUT_79", "No mailshots to display");
|
||||
define("LAN_MAILOUT_80", "Date");
|
||||
|
@ -237,6 +237,23 @@ class newsletter_mailout
|
||||
{
|
||||
e107::getLog()->add('Newsletter Bounce', $data, E_LOG_INFORMATIVE, 'BOUNCE');
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Manage Sent.
|
||||
*/
|
||||
public function sent($data) // trigerred when email sent from queue.
|
||||
{
|
||||
if($data['status'] == 1) // Successfully sent
|
||||
{
|
||||
// e107::getLog()->add('Newsletter Sent', $data, E_LOG_INFORMATIVE, 'SENT');
|
||||
}
|
||||
else // Failed
|
||||
{
|
||||
// e107::getLog()->add('Newsletter Sent', $data, E_LOG_FATAL, 'SENT');
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user