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:
<?php
if ( !class_exists('CTA_Post_Type') ) {
class CTA_Post_Type {
static $cta_impressions;
static $cta_conversions;
static $cta_conversion_rate;
function __construct() {
self::load_hooks();
}
private function load_hooks() {
add_action('admin_init', array(__CLASS__, 'rebuild_permalinks'));
add_action('init', array(__CLASS__, 'register_post_type'));
add_action('init', array(__CLASS__, 'register_category_taxonomy'));
if (is_admin()) {
add_action( 'admin_init' , array( __CLASS__ , 'register_role_capabilities' ) ,999);
add_filter( 'manage_wp-call-to-action_posts_columns', array(__CLASS__, 'register_columns'));
add_action( "manage_posts_custom_column", array(__CLASS__, 'prepare_column_data'), 10, 2 );
add_filter( 'manage_edit_wp-call-to-action_sortable_columns', array(__CLASS__, 'define_sortable_columns'));
add_filter( 'post_row_actions', array(__CLASS__, 'filter_row_actions'), 10, 2 );
add_action( 'restrict_manage_posts', array( __CLASS__ ,'add_category_taxonomy_filter'));
add_filter( 'parse_query' , array(__CLASS__, 'convert_id_to_slug'));
add_action( 'admin_init', array(__CLASS__, 'change_excerpt_to_summary'));
}
}
public static function rebuild_permalinks() {
$activation_check = get_option('wp_cta_activate_rewrite_check',0);
if ($activation_check) {
global $wp_rewrite;
$wp_rewrite->flush_rules();
update_option( 'wp_cta_activate_rewrite_check', '0');
}
}
public static function register_post_type() {
$slug = get_option( 'wp-cta-main-wp-call-to-action-permalink-prefix', 'cta' );
$labels = array(
'name' => __('Calls to Action', 'inbound-pro' ),
'singular_name' => __('Calls to Action', 'inbound-pro' ),
'add_new' => __('Add New', 'inbound-pro' ),
'add_new_item' => __('Add New Call to Action', 'inbound-pro' ),
'edit_item' => __('Edit Call to Action', 'inbound-pro' ),
'new_item' => __('New Call to Action', 'inbound-pro' ),
'view_item' => __('View Call to Action', 'inbound-pro' ),
'search_items' => __('Search Call to Action', 'inbound-pro' ),
'not_found' => __('Nothing found', 'inbound-pro' ),
'not_found_in_trash' => __('Nothing found in Trash', 'inbound-pro' ),
'parent_item_colon' => ''
);
$args = array(
'labels' => $labels,
'public' => true,
'publicly_queryable' => true,
'show_ui' => true,
'query_var' => true,
'menu_icon' => '',
'rewrite' => array("slug" => "$slug"),
'capability_type' => array('cta','ctas'),
'map_meta_cap' => true,
'hierarchical' => false,
'menu_position' => 33,
'show_in_nav_menus' => false,
'supports' => array('title', 'editor')
);
register_post_type( 'wp-call-to-action', $args );
}
public static function register_role_capabilities() {
$roles = array('inbound_marketer','administrator');
foreach($roles as $the_role) {
$role = get_role($the_role);
if (!$role) {
continue;
}
$role->add_cap( 'read' );
$role->add_cap( 'read_cta');
$role->add_cap( 'read_private_ctas' );
$role->add_cap( 'edit_cta' );
$role->add_cap( 'edit_ctas' );
$role->add_cap( 'edit_others_ctas' );
$role->add_cap( 'edit_published_ctas' );
$role->add_cap( 'publish_ctas' );
$role->add_cap( 'delete_others_ctas' );
$role->add_cap( 'delete_private_ctas' );
$role->add_cap( 'delete_published_ctas' );
}
}
public static function register_category_taxonomy() {
register_taxonomy('wp_call_to_action_category','wp-call-to-action', array(
'hierarchical' => true,
'label' => __( 'Categories', 'inbound-pro' ),
'singular_label' => __( 'Call to Action Category', 'inbound-pro' ),
'show_ui' => true,
'show_in_nav_menus' => false,
'query_var' => true,
"rewrite" => true
));
}
public static function register_columns( $cols ) {
$cols = array(
"cb" => "<input type=\"checkbox\" />",
"thumbnail-cta" => __( 'Preview', 'inbound-pro' ),
"title" => __( 'Call to Action Title', 'inbound-pro' ),
"cta_stats" => __( 'Split Testing Results', 'inbound-pro' ),
"cta_impressions" => __( 'Overall<br>Impressions', 'inbound-pro' ),
"cta_actions" => __( 'Oversall<br>Conversions', 'inbound-pro' ),
"cta_cr" => __( 'Overall<br>Conversion Rate', 'inbound-pro' )
);
return $cols;
}
public static function prepare_column_data( $column, $post_id ) {
global $post;
if ($post->post_type !='wp-call-to-action') {
return $column;
}
if ("ID" == $column){
echo $post->ID;
} else if ("title" == $column) {
} else if ("author" == $column) {
} else if ("date" == $column) {
} else if ("thumbnail-cta" == $column) {
$permalink = get_permalink($post->ID);
$local = array('127.0.0.1', "::1");
if(!in_array($_SERVER['REMOTE_ADDR'], $local)){
$thumbnail = 'http://s.wordpress.com/mshots/v1/' . urlencode(esc_url($permalink)) . '?w=140';
} else {
$template = CTA_Variations::get_current_template($post->ID);
$thumbnail = CTA_Variations::get_template_thumbnail($template);
}
echo "<a title='". __('Click to Preview', 'inbound-pro' ) ."' class='thickbox' href='".$permalink."&inbound_popup_preview=on&post_id=".$post->ID."&TB_iframe=true&width=640&height=703' target='_blank'><img src='".$thumbnail."' style='width:150px;height:110px;' title='Click to Preview'></a>";
} elseif ("cta_stats" == $column) {
self::show_stats_data();
} elseif ("cta_impressions" == $column) {
if (class_exists('Inbound_Analytics')) {
self::$cta_impressions = Inbound_Events::get_page_views_count_by('cta_id' , array('cta_id'=> $post_id) );
?>
<a href='<?php echo admin_url('index.php?action=inbound_generate_report&obj_key=cta_id&cta_id='.$post_id.'&class=Inbound_Impressions_Report&range=1000&tb_hide_nav=true&TB_iframe=true&width=900&height=600'); ?>' class='thickbox inbound-thickbox'>
<?php echo self::$cta_impressions; ?>
</a>
<?php
} else {
echo self::show_aggregated_stats("cta_impressions");
}
} elseif ("cta_actions" == $column) {
if (class_exists('Inbound_Analytics')) {
self::$cta_conversions = Inbound_Events::get_cta_conversions('cta_id' , array('cta_id'=> $post_id) );
?>
<a href='<?php echo admin_url('index.php?action=inbound_generate_report&obj_key=cta_id&cta_id='.$post_id.'&class=Inbound_Events_Report&range=1000&exclude_events=inbound_list_add,inbound_list_remove,inbound_content_click&tb_hide_nav=true&TB_iframe=true&width=900&height=600'); ?>' class='thickbox inbound-thickbox'>
<?php echo count(self::$cta_conversions); ?>
</a>
<?php
} else {
echo self::show_aggregated_stats("cta_actions");
}
} elseif ("cta_cr" == $column) {
if (class_exists('Inbound_Analytics')) {
if (count(self::$cta_impressions) != 0) {
self::$cta_conversion_rate = count(self::$cta_conversions) / count(self::$cta_impressions);
} else {
self::$cta_conversion_rate = 0;
}
self::$cta_conversion_rate = round(self::$cta_conversion_rate,2) * 100;
?>
<a href='<?php echo admin_url('index.php?action=inbound_generate_report&cta_id='.$post_id.'&class=Inbound_Events_Report&range=1000&tb_hide_nav=true&TB_iframe=true&width=900&height=600'); ?>' class='thickbox inbound-thickbox'>
<?php echo self::$cta_conversion_rate.'%' ?>
</a>
<?php
} else {
echo self::show_aggregated_stats("cta_cr") . "%";
}
} elseif ("template" == $column) {
$template_used = get_post_meta($post->ID, 'wp-cta-selected-template', true);
echo $template_used;
}
}
public static function define_sortable_columns($columns) {
return array(
'title' => 'title',
'impressions' => 'impressions',
'actions' => 'actions',
'cr' => 'cr'
);
}
public static function filter_row_actions( $actions, $post ) {
if ($post->post_type=='wp-call-to-action') {
$actions['clear'] = '<a href="#clear-stats" id="wp_cta_clear_'.$post->ID.'" class="clear_stats" title="'
. __( 'Clear impression and conversion records', 'inbound-pro' )
. '" >' . __( 'Clear All Stats', 'cta') . '</a>';
$actions['clear'] .= '<br><span style="color:#000;">' . __( 'Shortcode:', 'inbound-pro' ) .'</span> <input type="text" style="width: 60%; text-align: center; margin-top:10px;" class="regular-text code short-shortcode-input" readonly="readonly" id="shortcode" name="shortcode" value="[cta id=\''.$post->ID.'\']">';
}
return $actions;
}
public static function add_category_taxonomy_filter() {
global $post_type;
if ($post_type === "wp-call-to-action") {
$post_types = get_post_types( array( '_builtin' => false ));
if ( in_array( $post_type, $post_types ) ) {
$filters = get_object_taxonomies( $post_type );
foreach ( $filters as $tax_slug ) {
$tax_obj = get_taxonomy( $tax_slug );
(isset($_GET[$tax_slug])) ? $current = sanitize_text_field($_GET[$tax_slug]) : $current = 0;
wp_dropdown_categories( array(
'show_option_all' => __('Show All '.$tax_obj->label ),
'taxonomy' => $tax_slug,
'name' => $tax_obj->name,
'orderby' => 'name',
'selected' => $current,
'hierarchical' => $tax_obj->hierarchical,
'show_count' => false,
'hide_empty' => true
));
}
}
}
}
public static function convert_id_to_slug($query) {
global $pagenow;
$qv = &$query->query_vars;
if( $pagenow=='edit.php' && isset($qv['wp_call_to_action_category']) && is_numeric($qv['wp_call_to_action_category']) ) {
$term = get_term_by('id',$qv['wp_call_to_action_category'],'wp_call_to_action_category');
$qv['wp_call_to_action_category'] = $term->slug;
}
}
public static function change_excerpt_to_summary() {
$post_type = "wp-call-to-action";
if ( post_type_supports($post_type, 'excerpt') ) {
add_meta_box('postexcerpt', __( 'Short Description', 'inbound-pro' ), 'post_excerpt_meta_box', $post_type, 'normal', 'core');
}
}
public static function show_stats_data() {
global $post, $CTA_Variations;
$permalink = get_permalink($post->ID);
$variations = $CTA_Variations->get_variations( $post->ID );
$admin_url = admin_url();
$admin_url = str_replace('?frontend=false','',$admin_url);
if ($variations) {
echo "<span class='show-stats button'>". __( 'Show Variation Stats', 'inbound-pro' ) ."</span>";
echo "<ul class='wp-cta-varation-stat-ul'>";
$first_status = get_post_meta($post->ID,'wp_cta_ab_variation_status', true);
$first_notes = get_post_meta($post->ID,'wp-cta-variation-notes', true);
$cr_array = array();
$i = 0;
$impressions = 0;
$conversions = 0;
foreach ($variations as $vid => $variation)
{
$letter = $CTA_Variations->vid_to_letter( $post->ID, $vid );
$vid_impressions = get_post_meta($post->ID,'wp-cta-ab-variation-impressions-'.$vid, true);
$vid_conversions = get_post_meta($post->ID,'wp-cta-ab-variation-conversions-'.$vid, true);
$vid_conversions = ($vid_conversions) ? $vid_conversions : 0;
$v_status = get_post_meta($post->ID,'cta_ab_variation_status_'.$vid, true);
if ($i === 0) { $v_status = $first_status; }
$v_status = (($v_status === "")) ? "1" : $v_status;
$each_notes = get_post_meta($post->ID,'wp-cta-variation-notes-'.$vid, true);
if ($i === 0) { $each_notes = $first_notes; }
$impressions += get_post_meta($post->ID,'wp-cta-ab-variation-impressions-'.$vid, true);
$conversions += $vid_conversions;
if ($vid_impressions != 0) {
$conversion_rate = $vid_conversions / $vid_impressions;
} else {
$conversion_rate = 0;
}
$conversion_rate = round($conversion_rate,2) * 100;
$cr_array[] = $conversion_rate;
if ($v_status === "0") {
$final_status = __( '(Paused)', 'inbound-pro' );
} else {
$final_status = "";
}
$c_text = (($vid_conversions === "1")) ? 'conversion' : "conversions";
$i_text = (($vid_impressions === "1")) ? 'view' : "views";
$each_notes = (($each_notes === "")) ? 'No notes' : $each_notes;
$data_letter = "data-letter=\"".$letter."\"";
$popup = "data-notes=\"<span class='wp-cta-pop-description'>".$each_notes."</span><span class='wp-cta-pop-controls'><span class='wp-cta-pop-edit button-primary'><a href='".$admin_url."post.php?post=".$post->ID."&wp-cta-variation-id=".$vid."&action=edit'>Edit This Varaition</a></span><span class='wp-cta-pop-preview button'><a title='Click to Preview this variation' class='thickbox' href='".$permalink."&inbound_popup_preview=on&post_id=".$post->ID."&TB_iframe=true&width=640&height=703' target='_blank'>Preview This Varaition</a></span><span class='wp-cta-bottom-controls'><span class='wp-cta-delete-var-stats' data-letter='".$letter."' data-vid='".$vid."' rel='".$post->ID."'>Clear These Stats</span></span></span>\"";
echo "<li rel='".$final_status."' data-postid='".$post->ID."' data-letter='".$letter."' data-wp-cta='' class='wp-cta-stat-row-".$vid." ".$post->ID. '-'. $conversion_rate ." status-".$v_status. "'><a ".$popup." ".$data_letter." class='wp-cta-letter' title='click to edit this variation' href='".$admin_url."/wp-admin/post.php?post=".$post->ID."&wp-cta-variation-id=".$vid."&action=edit'>" . $letter . "</a><span class='wp-cta-numbers'> <span class='wp-cta-visits'><span class='visit-text'>".$i_text." </span><span class='wp-cta-impress-num'>" . $vid_impressions . "</span></span> <span class='wp-cta-converstions'><span class='conversion_txt'>".$c_text."</span><span class='wp-cta-con-num'>". $vid_conversions . "</span> </span> </span><a ".$popup." ".$data_letter." class='cr-number cr-empty-".$conversion_rate."' href='/wp-admin/post.php?post=".$post->ID."&wp-cta-variation-id=".$vid."&action=edit'>". $conversion_rate . "%</a></li>";
$i++;
}
echo "</ul>";
$winning_cr = max($cr_array);
if ($winning_cr != 0) {
echo "<span class='variation-winner-is'>".$post->ID. "-".$winning_cr."</span>";
}
} else {
$notes = get_post_meta($post->ID,'wp-cta-variation-notes', true);
$cr = self::show_aggregated_stats("cta_cr");
(($notes === "")) ? $notes = 'No notes' : $notes = $notes;
$popup = "data-notes=\"<span class='wp-cta-pop-description'>".$notes."</span><span class='wp-cta-pop-controls'><span class='wp-cta-pop-edit button-primary'><a href='".$admin_url."post.php?post=".$post->ID."&wp-cta-variation-id=0&action=edit'>Edit This Varaition</a></span><span class='wp-cta-pop-preview button'><a title='Click to Preview this variation' class='thickbox' href='".$permalink."?wp-cta-variation-id=0&inbound_popup_preview=on&post_id=".$post->ID."&TB_iframe=true&width=640&height=703' target='_blank'>Preview This Varaition</a></span><span class='wp-cta-bottom-controls'><span class='wp-cta-delete-var-stats' data-letter='A' data-vid='0' rel='".$post->ID."'>Clear These Stats</span></span></span>\"";
echo "<ul class='wp-cta-varation-stat-ul'><li rel='' data-postid='".$post->ID."' data-letter='A' data-wp-cta=''><a ".$popup." data-letter=\"A\" class='wp-cta-letter' title='click to edit this variation' href='".$admin_url."post.php?post=".$post->ID."&wp-cta-variation-id=0&action=edit'>A</a><span class='wp-cta-numbers'> <span class='wp-cta-impress-num'>" . self::show_aggregated_stats("cta_impressions") . "</span><span class='visit-text'>visits</span><span class='wp-cta-con-num'>". self::show_aggregated_stats("cta_actions") . "</span> conversions</span><a class='cr-number cr-empty-".$cr."' href='".$admin_url."post.php?post=".$post->ID."&wp-cta-variation-id=0&action=edit'>". $cr . "%</a></li></ul>";
echo "<div class='no-stats-yet'>". __( 'No A/B Tests running for this landing page.', 'inbound-pro' ) ." <a href='/wp-admin/post.php?post=".$post->ID."&wp-cta-variation-id=1&action=edit&new-variation=1&wp-cta-message=go'>Start one</a></div>";
}
}
public static function show_aggregated_stats($type_of_stat) {
global $post, $CTA_Variations;
$variations = $CTA_Variations->get_variations($post->ID);
$impressions = 0;
$conversions = 0;
foreach ($variations as $vid => $variation) {
$impressions += $CTA_Variations->get_impressions( $post->ID, $vid );
$conversions += $CTA_Variations->get_conversions( $post->ID, $vid );
}
if ($type_of_stat === "cta_actions") {
return $conversions;
}
if ($type_of_stat === "cta_impressions") {
return $impressions;
}
if ($type_of_stat === "cta_cr") {
if ($impressions != 0) {
$conversion_rate = $conversions / $impressions;
} else {
$conversion_rate = 0;
}
$conversion_rate = round($conversion_rate,2) * 100;
return $conversion_rate;
}
}
public static function get_ctas_as_array() {
$ctas = get_posts( array(
'post_type' => 'wp-call-to-action',
'posts_per_page' => -1
));
$ctas = array();
foreach ($ctas as $cta) {
$ctas[$cta->ID] = $cta->post_title;
}
return $ctas;
}
}
new CTA_Post_Type();
}