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: 395: 396: 397: 398: 399: 400: 401: 402: 403: 404: 405: 406: 407: 408: 409: 410: 411: 412: 413: 414: 415: 416: 417: 418: 419: 420: 421: 422: 423: 424: 425: 426: 427: 428: 429: 430: 431: 432: 433: 434: 435: 436: 437: 438: 439: 440: 441: 442: 443: 444: 445: 446: 447: 448: 449: 450: 451: 452: 453: 454: 455: 456: 457: 458: 459: 460: 461: 462: 463: 464: 465: 466: 467: 468: 469: 470: 471: 472: 473: 474: 475: 476: 477: 478: 479: 480: 481: 482: 483: 484: 485: 486: 487: 488: 489: 490: 491: 492: 493: 494: 495: 496: 497: 498:
<?php
class Inbound_Funnel_Reporting {
static $events;
static $selected_range;
static $selected_event;
static $secondary_grouping_field;
public function __construct(){
self::load_hooks();
}
public static function load_hooks(){
add_action( 'admin_enqueue_scripts' , array( __CLASS__ , 'enqueue_scripts' ) );
add_action( 'admin_menu' , array( __CLASS__ , 'listen_display') , 30);
}
public static function enqueue_scripts() {
$screen = get_current_screen();
if (isset($screen) && $screen->base == 'inbound-pro_page_inbound-reporting') {
wp_enqueue_style('inbound-reporting-funnels', INBOUND_PRO_URLPATH . 'assets/css/admin/reporting.funnel.css');
wp_enqueue_style('fontawesome', INBOUNDNOW_SHARED_URLPATH . 'assets/fonts/fontawesome/css/font-awesome.min.css');
wp_enqueue_script('jquery');
wp_enqueue_style('thickbox');
wp_enqueue_script('thickbox');
}
if (isset($screen) && $screen->base == 'admin_page_inbound-view-funnel-path') {
wp_enqueue_style('inbound-reporting-funnels', INBOUND_PRO_URLPATH . 'assets/css/admin/reporting.funnel.css');
wp_enqueue_style('inbound-reporting-funnels-view', INBOUND_PRO_URLPATH . 'assets/css/admin/reporting.funnel.view.css');
wp_enqueue_style('fontawesome', INBOUNDNOW_SHARED_URLPATH . 'assets/fonts/fontawesome/css/font-awesome.min.css');
}
}
public static function listen_display() {
add_submenu_page(
null,
__( 'View Funnel', 'inbound-pro' ),
__( 'View Funnel', 'inbound-pro' ),
'manage_options',
'inbound-view-funnel-path',
array( __CLASS__ , 'display_funnel' )
);
}
public static function load_ui() {
self::load_defaults();
self::load_event_select();
self::print_page_header();
self::print_dates_menu();
self::print_events_menu();
self::print_advanced_settings_menu();
self::print_table();
}
public static function load_defaults() {
self::$selected_event = (isset($_GET['event_name'])) ? sanitize_text_field($_GET['event_name']) : 'inbound_form_submission';
self::$selected_range = (isset($_GET['range']) ) ? sanitize_text_field($_GET['range']) : 'all';
switch(self::$selected_event) {
case 'inbound_form_submission':
self::$secondary_grouping_field = 'form_id';
break;
case 'inbound_cta_click':
self::$secondary_grouping_field = 'cta_id';
break;
case 'inbound_content_click':
self::$secondary_grouping_field = 'inbound_content_click';
break;
default:
self::$secondary_grouping_field = 'page_id';
break;
}
}
public static function load_event_select() {
self::$events = Inbound_Events::get_event_names();
$blacklist = array('mute','inbound_mute','inbound_unsubscribe','inbound_email_click','click','inbound_page_view');
foreach (self::$events as $key => $event) {
if (strstr($event['event_name'],'sparkpost_')) {
unset(self::$events[$key]);
continue;
}
if (in_array($event['event_name'], $blacklist)) {
unset(self::$events[$key]);
continue;
}
self::$events[$key]['count'] = Inbound_Events::get_events_count($event['event_name']);
}
self::$events = array_values(self::$events);
return self::$events;
}
public static function print_page_header() {
?>
<h1><?php _e( 'Funnel Tracking' , 'inbound-pro' ); ?></h1>
<?php
}
public static function print_dates_menu() {
$choices = array(
'all' => __('All' , 'inbound-pro'),
'7' => __('7 days' , 'inbound-pro'),
'30' => __('30 days' , 'inbound-pro'),
'90' => __('90 days' , 'inbound-pro'),
'365' => __('355 days' , 'inbound-pro'),
);
$count = count($choices);
?>
<ul class="subsubsub ul-dates" style="width:100%">
<?php
$i = 0;
foreach ($choices as $period => $label) {
$i++;
echo '<li class="'.$period.'"><a href="admin.php?page=inbound-reporting&event_name='. self::$selected_event .'&range='. $period .'" '. (self::$selected_range == $period ? 'class="current"' : '' ) .'> '.$label.' </a> '. ( $i==$count ? '' : '|' ).'</li>';
}
?>
</ul>
<br>
<?php
}
public static function print_events_menu() {
?>
<ul class="subsubsub ul-events" style="width:100%">
<?php
foreach (self::$events as $key => $event) {
$next = $key + 1;
echo '<li class="'.$event['event_name'].'"><a href="admin.php?page=inbound-reporting&preiod='.self::$selected_range.'&event_name='.$event['event_name'].'" '. (self::$selected_event == $event['event_name'] ? 'class="current"' : '' ) .'> '.$event['event_name'].' <span class="count">('.$event['count'].')</span></a> '. ( isset(self::$events[$next]) ? '|' : '' ).'</li>';
}
?>
</ul>
<?php
}
public static function print_advanced_settings_menu() {
$inbound_forms = Inbound_Forms::get_inbound_forms();
$ctas = CTA_Post_Type::get_ctas_as_array();
?>
<br>
<span class="button button-primary" id="funnels-advanced-settings-button"><?php _e( 'Advanced Settings' , 'inbound-pro'); ?></span>
<div class="funnels-advanced-settings-container">
<table>
<tr data-event="inbound_form_submission">
<td class="label">
<?php _e( 'Narrow by form id:' , 'inbound-pro' ); ?>
</td>
<td class="setting">
<select id="form_id">
<option value="0"><?php _e('All Forms','inbound-pro'); ?></option>
<?php
foreach($inbound_forms as $id => $label) {
echo '<option value="'.$id.'">'.$label.'</option>';
}
?>
</select>
</td>
</tr>
<tr data-event="inbound_form_submission">
<td class="label">
<?php _e( 'Narrow by call to action id:' , 'inbound-pro' ); ?>
</td>
<td class="setting">
<select id="form_id">
<option value="0"><?php _e('All Calls to Action','inbound-pro'); ?></option>
<?php
foreach($ctas as $id => $label) {
echo '<option value="'.$id.'">'.$label.'</option>';
}
?>
</select>
</td>
</tr>
</table>
</div>
<?php
}
public static function print_table() {
$funnels = self::get_funnels_by_event( self::$selected_event , self::$selected_range , self::$secondary_grouping_field);
?>
<table class="funnel-report">
<tr>
<th>
<?php _e('Event Count' , 'inbound-pro') ?>
</th>
<th>
<?php _e('Pages in Funnel' , 'inbound-pro') ?>
</th>
<th>
<?php _e('Event Name' , 'inbound-pro') ?>
</th>
<th>
<?php _e('Capture Page' , 'inbound-pro') ?>
</th>
<th>
<?php _e('Capture Item' , 'inbound-pro') ?>
</th>
<th>
<?php _e('Details') ?>
</th>
</tr>
<?php
foreach ($funnels as $key => $funnel) {
?>
<tr>
<td class="funnel-count">
<?php echo $funnel['count'] ?>
</td>
<td class="funnel-pages-count">
<?php
$funnel_count = json_decode($funnel['funnel'],true);
echo count($funnel_count);
?>
</td>
<td class="funnel-event-name">
<?php echo $funnel['event_name'] ?>
</td>
<td class="funnel-capture-page">
<?php
$preview_permalink = get_permalink($funnel['page_id']);
$edit_permalink = get_edit_post_link($funnel['page_id']);
$title = get_the_title($funnel['page_id']);
if ($edit_permalink) {
echo '<a href="' . $edit_permalink . '" target="_blank"><i class="fa fa-pencil-square-o" aria-hidden="true"></i></a>';
echo '<a href="' . $preview_permalink . '" target="_blank"><i class="fa fa-eye" aria-hidden="true"></i></a>';
echo '<span title="'.$preview_permalink.'">' . $title . '</span>';
} else {
echo $funnel['page_id'] .' '. __('not found' , 'inbound-pro');
}
?>
</td>
<td class="funnel-capture-item">
<?php
$preview_permalink = get_permalink($funnel[self::$secondary_grouping_field]);
$edit_permalink = get_edit_post_link($funnel[self::$secondary_grouping_field]);
$title = get_the_title($funnel[self::$secondary_grouping_field]);
if ($edit_permalink) {
echo '<a href="' . $edit_permalink . '" target="_blank"><i class="fa fa-pencil-square-o" aria-hidden="true"></i></a>';
echo '<a href="' . $preview_permalink . '" target="_blank"><i class="fa fa-eye" aria-hidden="true"></i></a>';
echo '<span title="'.$preview_permalink.'">' . $title . '</span>';
}else {
echo $funnel['page_id'] .' '. __('not found' , 'inbound-pro');
}
?>
</td>
<td class="funnel-details">
<a title='<?php _e('View Funnel Path' , 'inbound-pro'); ?>' class='thickbox' href='admin.php?page=inbound-view-funnel-path&inbound_popup_preview=on&range=<?php echo self::$selected_range; ?>&capture_page=<?php echo $event['page_id']; ?>&event_name=<?php echo $funnel['event_name']; ?>&funnel=<?php echo $funnel['funnel']; ?>&source=<?php echo $funnel['source']; ?>&TB_iframe=true&width=640&height=703' target='_blank'><?php _e('View Funnel','inbound-pro'); ?></a>
</td>
</tr>
<?php
}
?>
</table>
<?php
}
public static function get_funnels_by_event( $event_name , $range, $group_col_2 ) {
global $wpdb;
$table_name = $wpdb->prefix . "inbound_events";
$wordpress_date_time = date_i18n('Y-m-d G:i:s');
if ($range == 'all') {
$range = 365*5;
}
$start_date = date( 'Y-m-d G:i:s' , strtotime("-" . $range ." days" , strtotime($wordpress_date_time )));
$end_date = $wordpress_date_time;
$query = 'SELECT *, count(*) as count FROM '.$table_name.' WHERE datetime between "'.$start_date.'" AND "'.$end_date.'" AND event_name = "'.$event_name.'" AND CHAR_LENGTH(funnel) > 4 AND page_id!="0" GROUP BY concat( funnel, '.$group_col_2.') ORDER BY count DESC';
$results = $wpdb->get_results( $query , ARRAY_A );
return $results;
}
public static function get_funnel_sources( $funnel , $event_name, $range ) {
global $wpdb;
$table_name = $wpdb->prefix . "inbound_events";
$wordpress_date_time = date_i18n('Y-m-d G:i:s');
if ($range == 'all') {
$range = 365*5;
}
$start_date = date( 'Y-m-d G:i:s' , strtotime("-" . $range ." days" , strtotime($wordpress_date_time )));
$end_date = $wordpress_date_time;
$query = 'SELECT * FROM '.$table_name.' WHERE datetime between "'.$start_date.'" AND "'.$end_date.'" AND event_name = "'.$event_name.'" AND funnel = "'.$funnel.'" AND funnel = "'.$funnel.'" ORDER BY source DESC';
$results = $wpdb->get_results( $query , ARRAY_A );
return $results;
}
public static function display_funnel() {
$funnel = json_decode(stripslashes($_GET['funnel']), true);
$event_name = sanitize_text_field($_GET['event_name']);
$range = sanitize_text_field($_GET['range']);
$capture_page = sanitize_text_field($_GET['capture_page']);
?>
<!--<header>
<p>Worked on all modern browers</p>
<h1>High Performer</h1>
</header>-->
<ul class="timeline">
<?php
$i = 0;
foreach( $funnel as $page_id ) {
$i++;
if (!isset($funnel[$i])) {
if ($page_id != $capture_page) {
$funnel[] = $capture_page;
}
}
if (is_numeric($page_id)) {
$post = get_post($page_id);
$link = get_permalink($page_id);
$title = $post->title;
$excerpt = $post->post_excerpt;
$type = $post->post_type;
}
if (strstr($page_id , 'cat_')) {
$cat_id = str_replace('cat_' , '' , $page_id );
$title = get_cat_name($cat_id);
$$link = get_category_link($cat_id);
$excerpt = "";
$type = __('Category','inbound-pro');
}
if (strstr($page_id , 'tag_')) {
$tag_id = str_replace('tag_' , '' , $page_id );
$tag = get_tag($tag_id);
$title = $tag->name;
$link = get_tag_link($tag_id);
$excerpt = "";
$type = __('Tag','inbound-pro');
}
if (!$post) {
?>
<li >
<div class="direction-l" >
<div class="flag-wrapper" >
<span class="hexa" ></span >
</div >
<div class="desc" ><?php _e( 'Post or Page Not Found' , 'inbound-pro'); ?></div >
</div >
</li >
<?php
continue;
}
?>
<!--Item -->
<li >
<div class="direction-l" >
<div class="flag-wrapper" >
<span class="hexa" ></span >
<span class="flag" > <?php echo $title; ?></span >
<span class="time-wrapper" ><span class="time" > <?php echo $post_type; ?> </span ></span >
</div >
<div class="desc" > <?php echo $excerpt; ?>.</div >
</div >
</li >
<?php
}
?>
</ul>
<div>
<header>
<h1><?php _e('Sources' , 'inbound-pro' ); ?></h1>
</header>
</div>
<?php
$events = self::get_funnel_sources( $_GET['funnel'] , $event_name, $range);
echo '<ul>';
?>
<table class="funnel-report">
<tr>
<th>
<?php _e('Datetime' , 'inbound-pro') ?>
</th>
<th>
<?php _e('Source' , 'inbound-pro') ?>
</th>
<th>
<?php _e('Lead' , 'inbound-pro') ?>
</th>
</tr>
<?php
foreach ($events as $key => $event) {
?>
<tr>
<td class="funnel-count">
<?php echo $event['datetime'] ?>
</td>
<td class="funnel-event-name">
<a href="<?php echo $event['source']; ?>" target="_blank">
<?php echo $event['source'] ?>
</a>
</td>
<td class="funnel-event-name">
<a href="<?php echo get_edit_post_link($event['lead_id']); ?>" target="_blank">
<?php echo $event['lead_id'] ?>
</a>
</td>
</tr>
<?php
}
?>
</table>
<?php
echo '</ul>';
}
}
new Inbound_Funnel_Reporting;