-
-
Notifications
You must be signed in to change notification settings - Fork 274
/
Copy pathhome.php
175 lines (159 loc) · 6.88 KB
/
home.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
<?php
require_once dirname(__FILE__).'/accesscheck.php';
ob_end_flush();
$upgrade_required = 0;
$canUpgrade = checkAccess('upgrade');
if (Sql_Table_exists($tables['config'], 1)) {
$dbversion = getConfig('version');
if ($dbversion != VERSION && $canUpgrade) {
Error($GLOBALS['I18N']->get('Your database is out of date, please make sure to upgrade').'<br/>'.
$GLOBALS['I18N']->get('Your version').' : '.$dbversion.'<br/>'.
$GLOBALS['I18N']->get('phplist version').' : '.VERSION.
'<br/>'.PageLink2('upgrade', $GLOBALS['I18N']->get('Upgrade'))
);
$upgrade_required = 1;
}
} else {
$GLOBALS['firsttime'] = 1;
$_SESSION['firstinstall'] = 1;
Info($GLOBALS['I18N']->get('Database has not been initialised').'. '.
$GLOBALS['I18N']->get('go to').' '.
PageLink2('initialise&firstinstall=1', $GLOBALS['I18N']->get('Initialise Database')).' '.
$GLOBALS['I18N']->get('to continue'), 1);
return;
}
//# trigger this somewhere else?
refreshTlds();
$lastCampaignID = null;
if ($_SESSION['logindetails']['superuser']) {
$result = Sql_Query(sprintf(
'select id from %s where sent is not null order by entered desc limit 1',
$GLOBALS['tables']['message']
));
if ($result) {
$row = Sql_Fetch_Assoc($result);
$lastCampaignID = $row['id'];
$lastcampaign = Sql_Fetch_Assoc_Query(sprintf(
'select msg.id as messageid,count(um.viewed) as views, count(um.status) as total,
subject,date_format(sent,"%%e %%M %%Y") as sent,bouncecount as bounced
from %s um
join %s msg on msg.id = um.messageid
where msg.id = %d and um.status = "sent"',
$GLOBALS['tables']['usermessage'], $GLOBALS['tables']['message'], $lastCampaignID
));
}
} else {
$result = Sql_Query(sprintf(
'select msg.id from %s msg
join %s lm on lm.messageid = msg.id
join %s list on list.id = lm.listid
where sent is not null
and list.owner = %d
order by msg.entered desc limit 1',
$GLOBALS['tables']['message'],$GLOBALS['tables']['listmessage'],$GLOBALS['tables']['list'],$_SESSION['logindetails']['id']
));
if ($result) {
$row = Sql_Fetch_Assoc($result);
$lastCampaignID = $row['id'];
$lastcampaign = Sql_Fetch_Assoc_Query(sprintf(
'select msg.id as messageid,count(um.viewed) as views, count(um.status) as total,
subject,date_format(sent,"%%e %%b %%Y") as sent,bouncecount as bounced
from %s um
join %s msg on um.messageid = msg.id
join %s lm on lm.messageid = msg.id
join %s list on list.id = lm.listid
where msg.id = %d and um.status = "sent"
and list.owner = %d',
$GLOBALS['tables']['usermessage'],
$GLOBALS['tables']['message'],
$GLOBALS['tables']['listmessage'],
$GLOBALS['tables']['list'],
$lastCampaignID,
$_SESSION['logindetails']['id']
));
}
}
?>
<div class="row">
<div id="gettingstarted" class="col-sm-6 col-lg-4">
<h3><span class="glyphicon glyphicon-star"></span>Getting Started</h3>
<div class="well" style="height:100%">
<?php
if (!in_array('list', $GLOBALS['disallowpages'])) {
echo '
<a class="btn btn-primary" href="./?page=import">' . s('Import Subscribers') . '</a>
<br />';
}
if (!in_array('send', $GLOBALS['disallowpages'])) {
echo '<a class="btn btn-primary" href="./?page=send">' . s('Start or continue a campaign') . '</a>
<br />';
}
if (!in_array('statsoverview', $GLOBALS['disallowpages'])) { // are we allowed to view stats
if (!empty($lastCampaignID)) { // are there any
echo '<a class="btn btn-primary " href="./?page=statsoverview" title="View Campaign result statistics">' . s('View Statistics') . '</a>
<br />';
} else {
echo '<span style="display:inline-block" title="Send your first campaign to obtain useful statistics" data-toggle="tooltip">
<a class="btn btn-primary btn-sm disabled" href="./?page=statsoverview">' . s('View Statistics') . '</a>
</span>
<br />';
}
}
?>
</div>
</div><!-- /col -->
<div id="lastcampaign" class="col-sm-6 col-lg-4">
<h3><span class="glyphicon glyphicon-signal"></span>Last Campaign Results</h3>
<div id="lastcampaigncontent" class="well">
<?php if (empty($lastCampaignID)) {
print '<p>' . s('There are currently no statistics available') . '</p>';
} else {
?>
<p>
<span class="total">
Subject:
<a href="./?page=statsoverview&id=<?php echo $lastcampaign['messageid'] ?>" title="View campaign statistics">
<?php echo $lastcampaign['subject'] ?>
</a>
</span>
</p>
<p><span class="total"><?php echo number_format($lastcampaign['total']) ?></span> Messages sent on <span class="total"><?php echo $lastcampaign['sent'] ?></span>.</p>
<p>
<span class="total"><?php echo number_format($lastcampaign['views']) ?> </span> Viewed
(<?php
echo $lastcampaign['total'] > 0
? '<span class="total">' . sprintf('%0.2f', ($lastcampaign['views'] / ($lastcampaign['total'] - $lastcampaign['bounced']) * 100)) . '%</span>'
: 'N/A';
?>),
and <span class="total"><?php echo $lastcampaign['bounced'] ?></span> bounced
(<?php
echo $lastcampaign['total'] > 0
? '<span class="total">' . sprintf('%0.2f', ($lastcampaign['bounced'] / $lastcampaign['total'] * 100)) . '%</span>'
: 'N/A';
?>).
</p>
<?php
} ?>
</div>
</div><!-- /col -->
<div class="clearfix visible-md visible-sm"></div>
<div class="col-sm-6 col-lg-4">
<h3><span class="glyphicon glyphicon-question-sign"></span><?php echo s('Help') ?></h3>
<div class="well">
<ul>
<li>
<a href="https://www.phplist.org/manual/books/phplist-manual/page/composing-your-first-campaign" target="_blank">How to create a campaign</a>
</li>
<li>
<a href="https://www.phplist.org/manual/books/phplist-manual/page/basic-campaign-statistics" target="_blank">How to use statistics</a>
</li>
</ul>
<div class="row">
<div class="col-lg-12">
<p><a class="btn btn-primary" href="https://phplist.org/manual" target="_blank">View Manual</a></p>
</div>
</div>
</div><!-- /well -->
</div><!-- /col-lg-6-->
</div><!--/row-->
<div class="clearfix visible-lg"></div>