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: 176: 177: 178: 179: 180: 181: 182: 183: 184: 185: 186: 187: 188: 189: 190: 191: 192: 193: 194: 195: 196: 197: 198: 199: 200: 201: 202: 203: 204: 205: 206: 207: 208: 209: 210: 211: 212: 213: 214: 215: 216: 217: 218: 219: 220: 221: 222: 223: 224: 225: 226: 227: 228: 229: 230: 231: 232: 233: 234: 235: 236: 237: 238: 239: 240: 241: 242: 243: 244: 245: 246: 247: 248: 249: 250: 251: 252: 253: 254: 255: 256: 257: 258: 259: 260: 261: 262: 263: 264: 265: 266: 267: 268: 269: 270: 271: 272: 273: 274: 275: 276: 277: 278: 279: 280: 281: 282: 283: 284: 285: 286: 287: 288: 289: 290: 291: 292: 293: 294: 295: 296: 297: 298: 299: 300: 301: 302: 303: 304: 305: 306: 307: 308: 309: 310: 311: 312: 313: 314: 315: 316: 317: 318: 319: 320: 321: 322: 323: 324: 325: 326: 327: 328: 329: 330: 331: 332: 333: 334: 335: 336: 337: 338: 339: 340: 341: 342: 343: 344: 345: 346: 347: 348: 349: 350: 351: 352: 353: 354: 355: 356: 357: 358: 359: 360: 361: 362: 363: 364: 365: 366: 367: 368: 369: 370: 371: 372: 373: 374: 375: 376: 377: 378: 379: 380: 381: 382: 383: 384: 385: 386: 387: 388: 389: 390: 391: 392: 393: 394:
<?php
class Inbound_Reporting_Templates {
static $prompt_upgrade;
public function __construct() {
add_action('admin_init' , array( __CLASS__ , 'display_template' ) );
}
public static function display_template() {
if ( !isset( $_REQUEST['action'] ) || $_REQUEST['action'] != 'inbound_generate_report' ) {
return;
}
if ( INBOUND_ACCESS_LEVEL === 0 || INBOUND_ACCESS_LEVEL === 9) {
$class = 'Inbound_Upgrade_For_More_Reports';
} else {
$class = $_REQUEST['class'];
}
call_user_func(array( $class , 'load_template'));
}
public static function prepare_range( $range = 90 ) {
global $post;
$today = new DateTime(date_i18n('Y-m-d G:i:s'));
$dates['end_date'] = $today->format('Y-m-d G:i:s T');
$today->modify('-'.$range.' days');
$dates['start_date'] = $today->format('Y-m-d G:i:s T');
$today->modify('-'.$range.' days');
$dates['past_start_date'] = $today->format('Y-m-d G:i:s T');
$dates['past_end_date'] = $dates['start_date'];
return $dates;
}
public static function get_days_from_range( $start_time , $end_time ){
$aryRange = array();
$iDateFrom = mktime(1, 0, 0, substr($start_time,5,2), substr($start_time,8,2), substr($start_time,0,4));
$iDateTo = mktime(1, 0, 0, substr($end_time,5,2), substr($end_time,8,2), substr($end_time,0,4));
if ($iDateTo >= $iDateFrom)
{
array_push($aryRange,date('Y-m-d',$iDateFrom));
while ($iDateFrom<$iDateTo)
{
$iDateFrom+=86400;
array_push($aryRange,date('Y-m-d',$iDateFrom));
}
}
return $aryRange;
}
public static function display_filters() {
?>
<div class="report-filters">
<?php
if (isset($_REQUEST['range'])) {
?>
<div class="tag tag-range">
<?php echo intval($_REQUEST['range']) .' '. __( 'days' , 'inbound-pro'); ?> <i class="fa fa-calendar" aria-hidden="true"></i>
</div>
<?php
}
if (isset($_REQUEST['page_id'])) {
?>
<div class="tag"><span><?php _e('Page Id' , 'inbound-pro'); ?></span>
<?php echo sanitize_text_field($_REQUEST['page_id']); ?> <i class="fa fa-tag" aria-hidden="true"></i>
</div>
<?php
}
if (isset($_REQUEST['lead_id']) && $_REQUEST['lead_id'] ) {
?>
<div class="tag"><span><?php _e('Lead Id' , 'inbound-pro'); ?></span>
<?php echo intval($_REQUEST['lead_id']); ?> <i class="fa fa-tag" aria-hidden="true"></i>
</div>
<?php
}
if (isset($_REQUEST['lead_uid'])) {
?>
<div class="tag"><span><?php _e('Lead UID' , 'inbound-pro'); ?></span>
<?php echo sanitize_text_field($_REQUEST['lead_uid']); ?> <i class="fa fa-tag" aria-hidden="true"></i>
</div>
<?php
}
if (isset($_REQUEST['source'])) {
?>
<div class="tag"><span><?php _e('Source' , 'inbound-pro'); ?></span>
<?php echo sanitize_text_field($_REQUEST['source']); ?> <i class="fa fa-tag" aria-hidden="true"></i>
</div>
<?php
}
if (isset($_REQUEST['event_name'])) {
?>
<div class="tag"><span><?php _e('Event' , 'inbound-pro'); ?></span>
<?php echo Inbound_Events::get_event_label(sanitize_text_field($_REQUEST['event_name']), false); ?> <i class="fa fa-tag" aria-hidden="true"></i>
</div>
<?php
}
if (isset($_REQUEST['list_id'])) {
?>
<div class="tag"><span><?php _e('List Id' , 'inbound-pro'); ?></span>
<?php echo intval($_REQUEST['list_id']); ?> <i class="fa fa-tag" aria-hidden="true"></i>
</div>
<?php
}
if (isset($_REQUEST['job_id']) && $_REQUEST['job_id'] ) {
?>
<div class="tag"><span><?php _e('Job Id' , 'inbound-pro'); ?></span>
<?php echo intval($_REQUEST['job_id']); ?> <i class="fa fa-tag" aria-hidden="true"></i>
</div>
<?php
}
?>
</div>
<style type="text/css">
.tag {
height:12px;
background: none repeat scroll 0 0 skyblue;
border-radius: 2px;
color: white;
cursor: default;
display: inline-block;
position: relative;
white-space: nowrap;
padding: 6px 7px 4px 0;
margin: 5px 10px 0 0;
font-size:10px
}
.tag-range {
background-color:darkgray !important;
}
.tag span {
background: none repeat scroll 0 0 gainsboro;
border-radius: 2px 0 0 2px;
margin-right: 5px;
padding: 6px 10px 5px;
}
.fa-tag {
margin-left:4px;
}
.report-filters {
margin-left:10px;
margin-right:10px;
}
</style>
<?php
}
public static function js_lead_table_sort(){
?>
<script type="text/javascript" src="<?php echo includes_url('/js/jquery/jquery.js'); ?>"></script>
<script type="text/javascript">
jQuery(document).ready(function(){
var lastAction = 'report-date-header';
jQuery('.sort-lead-report-by').on('click', function(){
var action = jQuery(this).attr('sort-by');
var sortHeader = jQuery('.sort-lead-report-by[sort-by="' + action + '"]');
var sortOrder = jQuery(this).attr('sort-order');
var rows = jQuery('.lead-table-data-report-row');
jQuery('.sort-lead-report-by').find('.lead-report-sort-indicater').remove();
if(sortOrder % 2){
jQuery(sortHeader).append('<i class="fa fa-caret-up lead-report-sort-indicater" aria-hidden="true" style="padding-left:4px"></i>');
}else{
jQuery(sortHeader).append('<i class="fa fa-caret-down lead-report-sort-indicater" aria-hidden="true" style="padding-left:4px"></i>');
}
if(action === 'report-name-field-header'){
if(lastAction == action){
var reversedRows = rows.get().reverse();
jQuery(sortHeader).attr('sort-order', (parseInt(sortOrder) + 1));
jQuery('.lead-table-data-report-row').remove();
jQuery('#the-list').append(reversedRows);
return;
}else{
rows.sort(function(a, b){
var nameA = a.getAttribute('data-name-field').toLowerCase();
var nameB = b.getAttribute('data-name-field').toLowerCase();
if(nameA > nameB){
return 1;
}
if(nameA < nameB){
return -1;
}
if(nameA == nameB){
var num1 = a.getAttribute('data-date-number');
var num2 = b.getAttribute('data-date-number');
return num1 - num2;
}
});
}
}
if(action === 'report-email-variation-header'){
var variationIds = [];
for(var j = 0; j < 25; j++){
if(jQuery('.lead-table-data-report-row[data-email-variation=' + j + ']').length > 0){
variationIds.push(j);
}
}
if(lastAction == action){
if(sortOrder % 2){
variationIds = variationIds.reverse();
}
jQuery(sortHeader).attr('sort-order', (parseInt(sortOrder) + 1));
var tempRows = [];
for(var i in variationIds){
var shortRows = jQuery('.lead-table-data-report-row[data-email-variation=' + variationIds[i] + ']');
shortRows.sort(function(a, b){
return a.getAttribute('data-date-number') - b.getAttribute('data-date-number');
});
tempRows = tempRows.concat(shortRows.get());
}
rows = tempRows;
jQuery('.lead-table-data-report-row').remove();
jQuery('#the-list').append(rows);
return;
}else{
var tempRows = [];
for(var i in variationIds){
var shortRows = jQuery('.lead-table-data-report-row[data-email-variation=' + variationIds[i] + ']');
shortRows.sort(function(a, b){
return a.getAttribute('data-date-number') - b.getAttribute('data-date-number');
});
tempRows = tempRows.concat(shortRows.get());
}
rows = tempRows;
}
}
if(action === 'report-date-header'){
if(lastAction == action){
var reversedRows = rows.get().reverse();
jQuery(sortHeader).attr('sort-order', (parseInt(sortOrder) + 1));
jQuery('.lead-table-data-report-row').remove();
jQuery('#the-list').append(reversedRows);
return;
}else{
rows.sort(function(a, b){
return a.getAttribute('data-date-number') - b.getAttribute('data-date-number');
});
}
}
if(action === 'report-lead-id-header'){
if(lastAction == action){
var reversedRows = rows.get().reverse();
jQuery(sortHeader).attr('sort-order', (parseInt(sortOrder) + 1));
jQuery('.lead-table-data-report-row').remove();
jQuery('#the-list').append(reversedRows);
return;
}else{
rows.sort(function(a, b){
return a.getAttribute('data-lead-id') - b.getAttribute('data-lead-id');
});
}
}
if(action === 'report-impressions-header'){
if(lastAction == action){
var reversedRows = rows.get().reverse();
jQuery(sortHeader).attr('sort-order', (parseInt(sortOrder) + 1));
jQuery('.lead-table-data-report-row').remove();
jQuery('#the-list').append(reversedRows);
return;
}else{
rows.sort(function(a, b){
return a.getAttribute('data-impressions') - b.getAttribute('data-impressions');
});
}
}
jQuery('.sort-lead-report-by').attr('sort-order', 0);
jQuery(jQuery('.sort-lead-report-by[sort-by="' + action + '"]')).attr('sort-order', 1);
jQuery('.lead-table-data-report-row').remove();
jQuery('#the-list').append(rows);
lastAction = action;
});
});
</script>
<?php
}
}
new Inbound_Reporting_Templates;