View Single Post
  #5  
Old 12-07-2012, 09:29 AM
  totaltec's Avatar 
totaltec totaltec is offline
 

X-Guru
  
Join Date: Jan 2007
Location: Louisville, KY USA
Posts: 5,823
 

Default Re: Admin Sales Totals

Photo, that was the thread I had in mind. I thought it applied.

John, it looks relatively simple to do. Take a look at /admin/main.php

See line 57:
Code:
$start_dates[] = $previous_login_date; // Since last login $start_dates[] = func_prepare_search_date($curtime) - $config['Appearance']['timezone_offset']; // Today $start_week = $curtime - date('w', $curtime) * 24 * 3600; // Week starts since Sunday $start_dates[] = func_prepare_search_date($start_week) - $config['Appearance']['timezone_offset']; // Current week $start_dates[] = mktime(0, 0, 0, date('m', $curtime), 1, date('Y', $curtime)) - $config['Appearance']['timezone_offset']; // Current month
These examples should give you what you need to setup your own searches. Just subtract from $curtime the number of seconds that you want to back.

Also take a look at the foreach statement
Code:
foreach($start_dates as $start_date) {
To see how the $start_dates array is treated, to better understand what is happening here.
__________________
Mike White - Now Accepting new clients and projects! Work with the best, get a US based development team for just $125 an hour. Call 1-502-773-6454, email mike at babymonkeystudios.com, or skype b8bym0nkey

XcartGuru
X-cart Tutorials | X-cart 5 Tutorials

Check out the responsive template for X-cart.
Reply With Quote