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: 499: 500: 501: 502: 503: 504: 505: 506: 507: 508: 509: 510: 511: 512: 513: 514: 515: 516: 517: 518: 519: 520: 521: 522: 523: 524: 525: 526: 527: 528: 529: 530: 531: 532: 533: 534: 535: 536: 537: 538: 539: 540: 541: 542: 543: 544: 545: 546: 547: 548: 549: 550: 551: 552: 553: 554: 555: 556: 557: 558: 559: 560: 561: 562: 563: 564: 565: 566: 567: 568: 569: 570: 571: 572: 573: 574: 575: 576: 577: 578: 579: 580: 581: 582: 583: 584: 585: 586: 587: 588: 589: 590: 591: 592: 593: 594: 595: 596: 597: 598: 599: 600: 601: 602: 603: 604: 605: 606: 607: 608: 609: 610: 611: 612: 613: 614: 615: 616: 617: 618: 619: 620: 621: 622: 623: 624: 625: 626: 627: 628: 629: 630: 631: 632: 633: 634: 635: 636: 637: 638: 639: 640: 641: 642: 643: 644: 645: 646: 647: 648: 649: 650: 651: 652: 653: 654: 655: 656: 657: 658: 659: 660: 661: 662: 663: 664: 665: 666: 667: 668: 669: 670: 671: 672: 673: 674: 675: 676: 677: 678: 679: 680: 681: 682: 683: 684: 685: 686: 687: 688: 689: 690: 691: 692: 693: 694: 695: 696: 697: 698: 699: 700: 701: 702: 703: 704: 705: 706: 707: 708: 709: 710: 711: 712: 713: 714: 715: 716: 717: 718: 719: 720: 721: 722: 723: 724: 725: 726: 727: 728: 729: 730: 731: 732: 733: 734: 735: 736: 737: 738: 739: 740: 741: 742: 743: 744: 745: 746: 747: 748: 749: 750: 751: 752: 753: 754: 755: 756: 757: 758: 759: 760: 761: 762: 763: 764: 765: 766: 767: 768: 769: 770: 771: 772: 773: 774: 775: 776: 777: 778: 779: 780: 781: 782: 783: 784: 785: 786: 787: 788: 789: 790: 791:
<?php
class Inbound_Leads {
function __construct() {
self::load_hooks();
}
private function load_hooks() {
add_action( 'init', array(__CLASS__, 'register_post_type' ));
add_action( 'admin_init' , array( __CLASS__ , 'register_role_capabilities' ) ,999);
add_action( 'init', array(__CLASS__, 'register_taxonomies' ));
add_filter( 'manage_edit-wplead_list_category_columns', array(__CLASS__, 'register_lead_list_columns' ));
add_filter( 'manage_wplead_list_category_custom_column', array(__CLASS__, 'support_lead_list_columns' ), 10, 3);
if (is_admin()) {
add_action( 'edit_form_after_title', array(__CLASS__, 'install_leads_prompt' ) );
}
add_action('inbound_shared_activate' , array(__CLASS__ , 'create_double_optin_list') );
add_action('inbound_shared_activate' , array(__CLASS__ , 'create_double_optin_page') );
}
public static function register_post_type() {
$lead_active = ( defined('WPL_CURRENT_VERSION') ) ? true : false ;
$labels = array(
'name' => _x('Leads', 'post type general name'),
'singular_name' => _x('Lead', 'post type singular name'),
'add_new' => _x('Add New', 'Lead'),
'add_new_item' => __('Add New Lead'),
'edit_item' => __('Edit Lead'),
'new_item' => __('New Leads'),
'view_item' => __('View Leads'),
'search_items' => __('Search Leads'),
'not_found' => __('Nothing found'),
'not_found_in_trash' => __('Nothing found in Trash'),
'parent_item_colon' => ''
);
$args = array(
'labels' => $labels,
'public' => false,
'publicly_queryable' => false,
'show_ui' => true,
'query_var' => true,
'menu_icon' => INBOUNDNOW_SHARED_URLPATH . 'assets/images/global/leads.png',
'capability_type' => array('lead','leads'),
'map_meta_cap' => true,
'hierarchical' => false,
'menu_position' => 31,
'supports' => array('custom-fields','thumbnail')
);
$args['show_in_menu'] = ($lead_active) ? true : false;
register_post_type( 'wp-lead', $args );
}
public static function register_role_capabilities() {
$roles = array('inbound_marketer','editor','administrator');
foreach($roles as $the_role) {
$role = get_role($the_role);
if (!$role) {
continue;
}
$role->add_cap( 'read' );
$role->add_cap( 'read_lead');
$role->add_cap( 'read_private_leads' );
$role->add_cap( 'edit_lead' );
$role->add_cap( 'edit_leads' );
$role->add_cap( 'edit_others_leads' );
$role->add_cap( 'edit_published_leads' );
$role->add_cap( 'publish_leads' );
$role->add_cap( 'delete_leads' );
$role->add_cap( 'delete_others_leads' );
$role->add_cap( 'delete_private_leads' );
$role->add_cap( 'delete_published_leads' );
}
}
public static function register_taxonomies() {
if (taxonomy_exists('wplead_list_category')) {
return;
}
$list_labels = array(
'name' => __( 'Lists', 'inbound-pro' ),
'singular_name' => __( 'Lead List', 'inbound-pro' ),
'search_items' => __( 'Search Lead Lists', 'inbound-pro' ),
'popular_items' => __( 'Popular Lead Lists', 'inbound-pro' ),
'all_items' => __( 'All Lead Lists', 'inbound-pro' ),
'parent_item' => null,
'parent_item_colon' => null,
'edit_item' => __( 'Edit Lead List', 'inbound-pro' ),
'update_item' => __( 'Update Lead List', 'inbound-pro' ),
'add_new_item' => __( 'Add New Lead List', 'inbound-pro' ),
'new_item_name' => __( 'New Lead List', 'inbound-pro' ),
'separate_items_with_commas' => __( 'Separate Lead Lists with commas', 'inbound-pro' ),
'add_or_remove_items' => __( 'Add or remove Lead Lists', 'inbound-pro' ),
'choose_from_most_used' => __( 'Choose from the most used lead List', 'inbound-pro' ),
'not_found' => __( 'No Lead Lists found.', 'inbound-pro' ),
'menu_name' => __( 'Lead Lists', 'inbound-pro' ),
);
$list_args = array(
'hierarchical' => true,
'labels' => $list_labels,
'singular_label' => __( 'List Management', 'inbound-pro' ),
'show_ui' => true,
'show_in_menu' => true,
'show_in_nav_menus' => false,
'show_admin_column' => true,
'query_var' => true,
'rewrite' => false,
);
register_taxonomy('wplead_list_category','wp-lead', $list_args );
$labels = array(
'name' => __( 'Tags', 'inbound-pro' ),
'singular_name' => __( 'Lead Tag', 'inbound-pro' ),
'search_items' => __( 'Search Lead Tags' , 'inbound-pro' ),
'popular_items' => __( 'Popular Lead Tags' , 'inbound-pro'),
'all_items' => __( 'All Lead Tags' , 'inbound-pro' ),
'parent_item' => null,
'parent_item_colon' => null,
'edit_item' => __( 'Edit Lead Tag' , 'inbound-pro' ),
'update_item' => __( 'Update Lead Tag' , 'inbound-pro' ),
'add_new_item' => __( 'Add New Lead Tag' , 'inbound-pro' ),
'new_item_name' => __( 'New Lead Tag' , 'inbound-pro' ),
'separate_items_with_commas'=> __( 'Separate Lead Tags with commas' , 'inbound-pro' ),
'add_or_remove_items' => __( 'Add or remove Lead Tags' , 'inbound-pro'),
'choose_from_most_used' => __( 'Choose from the most used lead tags', 'inbound-pro' ),
'not_found' => __( 'No lead tags found.' , 'inbound-pro'),
'menu_name' => __( 'Lead Tags', 'inbound-pro' ),
);
$args = array(
'hierarchical' => false,
'labels' => $labels,
'show_ui' => true,
'show_admin_column' => true,
'show_in_menus' => false,
'show_in_nav_menus' => false,
'update_count_callback' => '_update_post_term_count',
'query_var' => true,
'rewrite' => false
);
register_taxonomy( 'lead-tags', 'wp-lead', $args );
}
public static function register_lead_list_columns( $cols ) {
$new_columns = array(
'cb' => '<input type="checkbox" />',
'lead_id' => __('ID', 'inbound-pro' ),
'double_optin' => __('Double Opt In', 'inbound-pro'),
'name' => __('Name', 'inbound-pro' ),
'description' => __('Description', 'inbound-pro' ),
'slug' => __('Slug', 'inbound-pro' ),
'posts' => __('Posts', 'inbound-pro' )
);
return $new_columns;
}
public static function support_lead_list_columns( $out, $column_name, $term_id ) {
global $inbound_settings;
switch($column_name){
case 'lead_id':
echo $term_id;
break;
case 'double_optin':
if(!defined('INBOUND_PRO_CURRENT_VERSION')){
$double_optin_list_id = get_option('list-double-optin-list-id', '');
}else{
$double_optin_list_id = $inbound_settings['leads']['list-double-optin-list-id'];
}
if($term_id != $double_optin_list_id){
$settings = get_term_meta($term_id, 'wplead_lead_list_meta_settings');
if(!empty($settings[0]['double_optin']) && $settings[0]['double_optin'] == 1){
echo '<span>' . __('on', 'inbound-pro') . '</span>';
}else{
echo '<span>' . __('off', 'inbound-pro') . '</span>';
}
}
break;
}
}
public static function intval_list_ids( $lists ) {
if (is_array($lists)) {
foreach ($lists as $key => $id) {
$lists[ $key ] = intval($id);
}
} else {
$lists = intval($lists);
}
return $lists;
}
public static function add_lead_to_list( $lead_id, $list_id ) {
$list_id = Inbound_Leads::intval_list_ids( $list_id );
wp_set_object_terms( $lead_id, $list_id, 'wplead_list_category', true );
do_action('add_lead_to_lead_list', $lead_id, $list_id );
}
public static function remove_lead_from_list( $lead_id, $list_id ) {
$list_id = Inbound_Leads::intval_list_ids( $list_id );
wp_remove_object_terms( $lead_id, $list_id, 'wplead_list_category', true );
do_action('remove_lead_from_list', $lead_id, $list_id );
}
public static function get_lead_lists_by_lead_id( $lead_id ) {
$args = array(
'hide_empty' => false
);
$terms = get_the_terms( $lead_id, 'wplead_list_category' );
if (!$terms) {
return array();
}
foreach ( $terms as $term ) {
$array[$term->term_id] = $term->name;
}
return $array;
}
public static function create_lead_list( $args ) {
$params = array();
if ( !isset( $args['name'] )) {
return null;
}
if (isset( $args['description'] )) {
$params['description'] = $args['description'];
}
if (isset( $args['parent'] )) {
$params['parent'] = $args['parent'];
} else {
$params['parent'] = 0;
}
$term = term_exists( $args['name'], 'wplead_list_category', $params['parent'] );
if ( !$term ) {
$term = wp_insert_term( $args['name'], 'wplead_list_category', $params );
}
if ( is_array($term) && isset( $term['term_id'] ) ) {
return array( 'id' => $term['term_id'] );
} else if ( is_numeric($term) ) {
return array( 'id' => $term );
} else {
return $term;
}
}
public static function update_lead_list( $args ) {
if (!isset($args['id'])) {
return null;
}
if (isset( $args['name'] )) {
$params['name'] = $args['name'];
}
if (isset( $args['description'] )) {
$params['description'] = $args['description'];
}
if (isset( $args['parent'] )) {
$params['parent'] = $args['parent'];
}
$term = get_term_by( 'id', $args['id'], 'wplead_list_category', ARRAY_A );
if ( $term ) {
$term = wp_update_term( $args['id'], 'wplead_list_category', $params );
}
if ( is_array($term) && isset( $term['term_id'] ) ) {
return array( 'list_id' => $term['term_id'] );
} else if ( is_numeric($term) ) {
return array( 'list_id' => $term );
} else {
return $term;
}
}
public static function delete_lead_list( $id = null ) {
if (!isset($id)) {
return array( 'error' => __( 'must include an id parameter', 'inbound-pro' ) );
}
wp_delete_term( $id, 'wplead_list_category' );
return array( 'message' => __( 'lead list deleted', 'inbound-pro' ) );
}
public static function get_lead_lists_as_array() {
self::register_taxonomies();
$array = array();
$args = array(
'hide_empty' => false,
);
$terms = get_terms('wplead_list_category', $args);
foreach ( $terms as $term ) {
$array[$term->term_id] = $term->name;
}
return $array;
}
public static function get_lead_tags_as_array() {
self::register_taxonomies();
$array = array();
$args = array(
'hide_empty' => false,
);
$terms = get_terms('lead-tags', $args);
foreach ( $terms as $term ) {
$array[$term->term_id] = $term->name;
}
return $array;
}
static function get_lead_id_by_email($email){
global $wpdb;
$query = $wpdb->prepare(
'SELECT ID FROM ' . $wpdb->posts . '
WHERE post_title = %s
AND post_type = \'wp-lead\'',
$email
);
$wpdb->query( $query );
if ( $wpdb->num_rows ) {
$lead_id = $wpdb->get_var( $query );
return $lead_id;
} else {
return false;
}
}
public static function get_lead_list_by( $search, $list_id ) {
return get_term_by( $search, $list_id, 'wplead_list_category', ARRAY_A);
}
public static function get_lead_status( $lead_id ) {
$status = get_post_meta( $lead_id , 'wp_lead_status' , true );
return ($status) ? $status : 'new';
}
public static function get_lead_statuses( ) {
$default = array(
'new' => array(
'priority' => 1,
'key' => 'new',
'label' => __('New Lead' , 'inbound-pro'),
'color' => '#f0ad4e',
'nature' => 'core'
),
'read' => array(
'priority' => 2,
'key' => 'read',
'label' => __('Read' , 'inbound-pro'),
'color' => '#27ae60',
'nature' => 'core'
),
'needs-attention' => array(
'priority' => 3,
'key' => 'needs-attention',
'label' => __('Needs Attention' , 'inbound-pro'),
'color' => '#ffcc33',
'nature' => 'core'
),
'lost' => array(
'priority' => 4,
'key' => 'lost',
'label' => __('Lost' , 'inbound-pro'),
'color' => '#05022E',
'nature' => 'core'
),
'active' => array(
'priority' => 5,
'key' => 'active',
'label' => __('Active' , 'inbound-pro'),
'color' => '#FE984E',
'nature' => 'core'
),
'customer' => array(
'priority' => 6,
'key' => 'customer',
'label' => __('Customer' , 'inbound-pro'),
'color' => '#48F7A1',
'nature' => 'core'
),
'archive' => array(
'priority' => 7,
'key' => 'archive',
'label' => __('Archive' , 'inbound-pro'),
'color' => '#7A3068',
'nature' => 'core'
),
'double-optin' => array(
'priority' => 7,
'key' => 'double-optin',
'label' => __('Unconfirmed' , 'inbound-pro'),
'color' => '#6495ED',
'nature' => 'core'
),
);
return apply_filters('leads/statuses' , $default );
}
public static function get_status_lead_count( $status ) {
$args = array(
'post_type' => 'wp-lead',
'meta_key' => 'wp_lead_status',
'meta_value' => $status,
'meta_compare' => '=',
'posts_per_page' => -1
);
$query = new WP_Query( $args );
return $query->post_count;
}
public static function add_tag_to_lead( $lead_id, $tag , $append = true ) {
wp_set_object_terms( $lead_id, $tag, 'lead-tags', $append );
}
public static function remove_tag_from_lead( $lead_id, $list_id ) {
wp_remove_object_terms( $lead_id, $list_id, 'lead-tags', true );
}
public static function install_leads_prompt() {
global $post;
if ( empty ( $post ) || 'wp-lead' !== get_post_type( $GLOBALS['post'] ) ) {
return;
}
if (!defined('WPL_CURRENT_VERSION')) {
_e( 'WordPress Leads is not currently installed/activated to view and manage leads please turn it on.', 'inbound-pro' );
}
}
public static function get_leads_count_in_list( $list_id ) {
$query = new WP_Query( array(
'post_type' => 'wp-lead',
'tax_query' => array (
'relation' => 'AND',
array (
'taxonomy' => 'wplead_list_category' ,
'field' => 'id' ,
'terms' => array( $list_id )
)
),
'posts_per_page' => -1
) );
$count = $query->post_count;
return sprintf( __( '%d leads', 'inbound-pro' ), $count );
}
public static function get_user_by_lead_id( $lead_id ) {
$email_address = get_post_meta($lead_id ,'wpleads_email_address' , true );
$user = self::get_user_by_lead_email( $email_address );
return $user;
}
public static function get_user_by_lead_email( $email_address ) {
return get_user_by('email' , $email_address );
}
public static function create_double_optin_page(){
$title = __( 'Confirm Subscription' , 'inbound-pro' );
$double_optin_page_id = self::get_double_optin_page_id();
if(empty($double_optin_page_id)) {
if(null == get_page_by_title( $title )){
$page_id = wp_insert_post(array(
'comment_status' => 'closed',
'ping_status' => 'closed',
'post_title' => $title,
'post_status' => 'publish',
'post_type' => 'page',
'post_content' => __('Thank you!' , 'inbound-pro')
));
}else{
$page_id = get_page_by_title( $title );
}
self::save_double_optin_page_id($page_id);
}
}
public static function create_double_optin_list() {
global $inbound_settings;
if (!defined('INBOUND_PRO_CURRENT_VERSION')) {
$double_optin_list_id = get_option('list-double-optin-list-id', '');
} else {
$settings = Inbound_Options_API::get_option('inbound-pro', 'settings', array());
$inbound_settings['leads'] = (isset($inbound_settings['leads'])) ? $inbound_settings['leads'] : array();
$double_optin_list_id = $inbound_settings['leads']['list-double-optin-list-id'];
}
if (false == get_term_by('id', $double_optin_list_id, 'wplead_list_category')) {
$parent = self::create_lead_list( array(
'name' => __( 'Maintenance' , 'inbound-pro' )
));
$term = self::create_lead_list( array(
'name' => __( 'Unconfirmed' , 'inbound-pro' ),
'parent' =>$parent['id']
));
if (!defined('INBOUND_PRO_CURRENT_VERSION')) {
update_option('list-double-optin-list-id', $term['id']);
} else {
$inbound_settings['leads']['list-double-optin-list-id'] = $term['id'];
Inbound_Options_API::update_option('inbound-pro', 'settings', $inbound_settings);
}
}
}
public static function get_double_optin_page_id() {
global $inbound_settings;
if(!defined('INBOUND_PRO_CURRENT_VERSION')){
$double_optin_page_id = get_option('list-double-optin-page-id', '');
}else{
$double_optin_page_id = (isset($inbound_settings['leads']['list-double-optin-page-id'])) ? $inbound_settings['leads']['list-double-optin-page-id'] : '';
}
return $double_optin_page_id;
}
public static function save_double_optin_page_id( $page_id ) {
global $inbound_settings;
if(!defined('INBOUND_PRO_CURRENT_VERSION')) {
update_option('list-double-optin-page-id', $page_id);
} else {
$inbound_settings['leads']['list-double-optin-page-id'] = $page_id;
Inbound_Options_API::update_option('inbound-pro', 'settings', $inbound_settings);
}
}
}
new Inbound_Leads();