Plugin Directory

Changeset 956725


Ignore:
Timestamp:
07/29/2014 03:37:22 PM (12 years ago)
Author:
bulini
Message:

smtpimprovements and gerenal fixes

Location:
sendit/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • sendit/trunk/libs/admin/admin-core.php

    r953435 r956725  
    767767    add_submenu_page(__FILE__, __('Main settings', 'sendit'), __('Main settings', 'sendit'), 8, 'sendit_general_settings', 'senditpanel_admin');
    768768
     769    if (is_plugin_active('sendit-splitter/sendit-splitter.php')) { 
     770        add_submenu_page(__FILE__, __('Manage Segments', 'sendit'), __('Lists Segmentation', 'sendit'), 8, 'segments', 'Sublists');
     771    }
     772   
     773
     774
    769775    /*2.0 export addon*/
    770776    if (function_exists('sendit_morefields'))
     
    787793    add_submenu_page(__FILE__, __('email import', 'sendit'), __('Import emails from WP Users', 'sendit'), 8, 'import', 'ImportWpUsers');
    788794
     795
     796    if (is_plugin_active('sendit-woocommerce-import/sendit-woocommerce-import.php')) {
     797        add_submenu_page(__FILE__, __('Woocommerce import', 'sendit'), __('Import email from Woocommerce', 'sendit'), 8, 'import-woocommerce-customers', 'ImportWoocommerceCustomers');
     798    }
    789799 
    790800    if ($wpdb->get_var("show tables like 'bb_press'") != '') :
  • sendit/trunk/libs/constants.php

    r953435 r956725  
    44define('SENDIT_EMAIL_TABLE', $wpdb->prefix . "nl_email");
    55define('SENDIT_LIST_TABLE', $wpdb->prefix . "nl_liste");
    6 define('SENDIT_VERSION', '2.3.3');
    7 define('SENDIT_DB_VERSION', '2.3.3');
     6define('SENDIT_VERSION', '2.3.4');
     7define('SENDIT_DB_VERSION', '2.3.4');
    88?>
  • sendit/trunk/libs/install-core.php

    r489440 r956725  
    5353                  `header` mediumtext NULL,
    5454                  `footer` mediumtext NULL,
     55                  `list_parent` int(11) default '0',                 
    5556                   PRIMARY KEY  (`id_lista`)
    5657                 );";
     58
     59   //splitter
     60   $sql_parent="ALTER TABLE ". SENDIT_LIST_TABLE ." add column list_parent int(11) default '0'";
    5761
    5862   $sql_alter="ALTER TABLE ". SENDIT_EMAIL_TABLE ." add column subscriber_info text default NULL";
     
    6266   dbDelta($sql_email);
    6367   dbDelta($sql_liste);   
     68   dbDelta($sql_parent);   
    6469   dbDelta($sql_alter);   
    6570   
  • sendit/trunk/readme.txt

    r953435 r956725  
    44Tags: newsletter, mailing list, mailinglist, subscription form
    55Requires at least: 3.0.1
    6 Tested up to: 3.8.1
    7 Stable tag: 2.3.3
     6Tested up to: 3.9.1
     7Stable tag: 2.3.4
    88
    99Sendit is a friendly and easy newsletter and mailing lists plugin for Wordpress, born to make newsletter delivery management a great experience.
     
    2929* Sendit Pro Csv Export
    3030* Sendit Pro Google analytics campaign tracker
     31* Sendit Splitter - Lists segmentation tool (new)
    3132
    3233= Changelog =
  • sendit/trunk/sendit.php

    r953435 r956725  
    44Plugin URI: http://www.giuseppesurace.com/sendit-wp-newsletter-mailing-list/
    55Description: Wordpress newsletter plugin. Sendit is a friendly and easy newsletter and mailing lists plugin for WordPress, born to make newsletter delivery management a great experience.
    6 Version: 2.3.3
     6Version: 2.3.4
    77Author: Giuseppe Surace
    88Author URI: http://sendit.wordpressplanet.org
Note: See TracChangeset for help on using the changeset viewer.