recent type

This commit is contained in:
CHIEFSOFT\ameye
2023-09-25 16:50:44 -04:00
parent 049758f572
commit ca243d7cb6
2 changed files with 9 additions and 0 deletions
+8
View File
@@ -79,6 +79,14 @@ class Bkoreport extends Bko_Controller {
$this->renderbkoreportpage($data);
}
public function recent() {
$data["title"] = "Recent Signup Report";
//$mysql = "SElECT added::date,username,firstname||' '||lastname AS Name,loc,last_login::date FROM members ORDER BY id DESC LIMIT 7000";
$mysql = "SElECT added::date,username,firstname||' '||lastname AS Name,loc,country,last_login::date FROM members WHERE account_type='FULL' ORDER BY id DESC LIMIT 50";
$data['mysql'] = $mysql;
$this->renderbkoreportpage($data);
}
public function pendsignup() {
$data["page_title"] = "Pending Signup Report";
@@ -78,6 +78,7 @@
<div class="heading-elements">
<div class="heading-btn-group">
<a href="/bkoreport/recent" class="btn btn-link btn-float text-size-small has-text"><i class="icon-bars-alt text-indigo-400"></i><span>Recent Signup</span></a>
<a href="/marketing/" class="btn btn-link btn-float text-size-small has-text"><i class="icon-bars-alt text-indigo-400"></i><span>Marketing</span></a>
<a href="/blog/" class="btn btn-link btn-float text-size-small has-text"><i class="icon-bars-alt text-indigo-400"></i><span>Blog</span></a>
<a href="/bkoreport/signup" class="btn btn-link btn-float text-size-small has-text"><i class="icon-bars-alt text-indigo-400"></i><span>Sign up</span></a>