Plugin Directory

Changeset 1565658


Ignore:
Timestamp:
01/01/2017 11:36:21 AM (9 years ago)
Author:
mtomic
Message:

Tag 5.1.3

Location:
smsify
Files:
1 deleted
6 edited
10 copied

Legend:

Unmodified
Added
Removed
  • smsify/tags/5.1.3/includes/functions.php

    r1565586 r1565658  
    66    global $current_user;
    77    $smsify_params = new stdClass();
    8     $smsify_params->appVersion = '5.1.2';
     8    $smsify_params->appVersion = '5.1.3';
    99    $smsify_params->api_key = get_site_option('smsify-api-key');
    1010    $smsify_params->apiprotocol = 'https';
  • smsify/tags/5.1.3/modules/importusers/import-users-from-csv.php

    r1444901 r1565658  
    22if (realpath (__FILE__) === realpath ($_SERVER["SCRIPT_FILENAME"]))
    33    exit ("Do not access this file directly.");
    4 
    5 add_action('plugins_loaded', array('SMSify_IS_IU_Import_Users', 'init'), 201);
    64
    75load_plugin_textdomain( 'import-users-from-csv', false, basename( dirname( __FILE__ ) ) . '/languages' );
     
    2523     **/
    2624    public function init() {
    27         add_action( 'admin_menu', array( __CLASS__, 'add_admin_pages' ) );
    28         add_action('init', array( __CLASS__, 'register_user_taxonomy'), 9);
    29         add_action( 'init', array( __CLASS__, 'process_csv' ) );
     25        add_action( 'admin_menu', array(&$this, 'add_admin_pages' ) );
     26        add_action('init', array(&$this, 'register_user_taxonomy'), 9);
     27        add_action( 'init', array(&$this, 'process_csv' ) );
    3028
    3129        $upload_dir = wp_upload_dir();
     
    4038     **/
    4139    public function add_admin_pages() {
    42         add_users_page( __( 'Import From CSV' , 'import-users-from-csv'), __( 'Import From CSV' , 'import-users-from-csv'), 'create_users', 'import-users-from-csv', array( __CLASS__, 'users_page' ) );
     40        add_users_page( __( 'Import From CSV' , 'import-users-from-csv'), __( 'Import From CSV' , 'import-users-from-csv'), 'create_users', 'import-users-from-csv', array( &$this, 'users_page' ) );
    4341    }
    4442
     
    377375}
    378376
    379 SMSify_IS_IU_Import_Users::init();
     377$SMSify_IS_IU_Import_Users = new SMSify_IS_IU_Import_Users();
     378
     379add_action('plugins_loaded', array(&$SMSify_IS_IU_Import_Users, 'init'), 201);
     380// SMSify_IS_IU_Import_Users::init();
  • smsify/tags/5.1.3/modules/usergroups/UserGroupsExtended.php

    r1444901 r1565658  
    44
    55require_once 'UserGroups.php';
    6 add_action('plugins_loaded', array('SMSify_User_Groups', 'load'), 200);
    76
    87class SMSify_User_Groups extends KWS_User_Groups {
    9     function load() {
    10         $SMSify_User_Groups = new SMSify_User_Groups();
    11     }
    12    
    13     function __construct() {
     8    function init() {
    149        add_action('admin_init', array(&$this, 'remove_add_form_actions'), 1001);
    1510        parent::__construct();
     
    4641}
    4742   
     43$SMSify_User_Groups = new SMSify_User_Groups();
     44
     45add_action('plugins_loaded', array(&$SMSify_User_Groups, 'init'), 200);
  • smsify/tags/5.1.3/readme.txt

    r1565586 r1565658  
    11=== SMSify ===
    22Contributors: mtomic
    3 Tags: sms, mobile, messaging, marketing
     3Tags: sms, smsgateway, smsapi, websms, mobile, messaging, sms marketing
    44Requires at least: 3.2
    55Tested up to: 4.7
    6 Stable tag: 5.1.2
     6Stable tag: 5.1.3
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
    99
    10 SMSify is a premium WordPress plugin that allows you to <strong>schedule personalised SMS messages</strong> to your subscribers. SMSify can also receive messages and display them in your WordPress dashboard.
     10SMSify is a 2-way SMS plugin that <strong>sends, receives and schedules SMS messages</strong>. It integrates with Contact Form 7 and just about everything else.
    1111
    1212== Description ==
    13 SMSify is a premium WordPress plugin that allows you to <strong>schedule personalised SMS messages</strong> to your subscribers. SMSify can also receive messages and display them in your WordPress dashboard.  This plugin has been built with performance in mind and it does not modify your database. This plugin allows you to <strong>import contacts</strong> from a csv file and <strong>schedule recurring SMS messages</strong>.  It features a native WordPress interface that is very simple to use. Screenshots available.
     13SMSify is a premium WordPress plugin that allows you to <strong>send or schedule personalised SMS messages</strong> to your WordPress Users. SMSify can also receive SMS and display them in your WordPress dashboard. This plugin allows you to <strong>import contacts</strong> from a csv file.  It features a native WordPress interface that is very simple to use. It integrates with Contact Form 7 and just about everything else. Screenshots available.
    1414
    1515Full list of features:
     
    3030
    3131== Requirements ==
    32 *   Modern web browser such as Google Chrome, Firefox, Safari or Internet Explorer 10+ recommended.
     32*   Modern web browser such as Google Chrome, Firefox and Safari.
    3333
    3434== Installation ==
     
    5151
    5252== Changelog ==
     53
     54= 5.1.3 =
     55* Optimised User import functionality
     56* Styling changes on the Integration page.
     57* Updated readme file.
    5358
    5459= 5.1.2 =
  • smsify/tags/5.1.3/smsify.php

    r1565586 r1565658  
    1212 *
    1313 * @package SMSify
    14  * @version 5.1.2
     14 * @version 5.1.3
    1515 */
    1616/*
     
    1919Description: <strong>SMSify</strong> is a premium SMS plugin that allows you to <strong>send and receive SMS</strong> within your own WordPress dashboard. SMSify allows you to <strong>import contacts</strong> from a csv file and <strong>schedule recurring SMS messages</strong>.  It features a native WordPress interface that is very simple to use. Screenshots available. 
    2020Author: SMSify
    21 Version: 5.1.2
     21Version: 5.1.3
    2222Author URI: http://www.smsify.com.au/
    2323*/
  • smsify/tags/5.1.3/views/smsify-integrations.php

    r1565586 r1565658  
    6060        <hr>
    6161        </p>
     62        <strong style="color: #d54e21;">IMPORTANT</strong>
     63        <p>This function assumes that you have entered a valid SMSify API Key on the SMSify setting page.</p>
    6264    <?php } ?>
    63     <strong style="color: #d54e21;">IMPORTANT</strong>
    64     <p>This function assumes that you have entered a valid SMSify API Key on the SMSify setting page.</p>
    6565</div>
  • smsify/trunk/includes/functions.php

    r1565586 r1565658  
    66    global $current_user;
    77    $smsify_params = new stdClass();
    8     $smsify_params->appVersion = '5.1.2';
     8    $smsify_params->appVersion = '5.1.3';
    99    $smsify_params->api_key = get_site_option('smsify-api-key');
    1010    $smsify_params->apiprotocol = 'https';
  • smsify/trunk/modules/importusers/import-users-from-csv.php

    r1444901 r1565658  
    22if (realpath (__FILE__) === realpath ($_SERVER["SCRIPT_FILENAME"]))
    33    exit ("Do not access this file directly.");
    4 
    5 add_action('plugins_loaded', array('SMSify_IS_IU_Import_Users', 'init'), 201);
    64
    75load_plugin_textdomain( 'import-users-from-csv', false, basename( dirname( __FILE__ ) ) . '/languages' );
     
    2523     **/
    2624    public function init() {
    27         add_action( 'admin_menu', array( __CLASS__, 'add_admin_pages' ) );
    28         add_action('init', array( __CLASS__, 'register_user_taxonomy'), 9);
    29         add_action( 'init', array( __CLASS__, 'process_csv' ) );
     25        add_action( 'admin_menu', array(&$this, 'add_admin_pages' ) );
     26        add_action('init', array(&$this, 'register_user_taxonomy'), 9);
     27        add_action( 'init', array(&$this, 'process_csv' ) );
    3028
    3129        $upload_dir = wp_upload_dir();
     
    4038     **/
    4139    public function add_admin_pages() {
    42         add_users_page( __( 'Import From CSV' , 'import-users-from-csv'), __( 'Import From CSV' , 'import-users-from-csv'), 'create_users', 'import-users-from-csv', array( __CLASS__, 'users_page' ) );
     40        add_users_page( __( 'Import From CSV' , 'import-users-from-csv'), __( 'Import From CSV' , 'import-users-from-csv'), 'create_users', 'import-users-from-csv', array( &$this, 'users_page' ) );
    4341    }
    4442
     
    377375}
    378376
    379 SMSify_IS_IU_Import_Users::init();
     377$SMSify_IS_IU_Import_Users = new SMSify_IS_IU_Import_Users();
     378
     379add_action('plugins_loaded', array(&$SMSify_IS_IU_Import_Users, 'init'), 201);
     380// SMSify_IS_IU_Import_Users::init();
  • smsify/trunk/modules/usergroups/UserGroupsExtended.php

    r1444901 r1565658  
    44
    55require_once 'UserGroups.php';
    6 add_action('plugins_loaded', array('SMSify_User_Groups', 'load'), 200);
    76
    87class SMSify_User_Groups extends KWS_User_Groups {
    9     function load() {
    10         $SMSify_User_Groups = new SMSify_User_Groups();
    11     }
    12    
    13     function __construct() {
     8    function init() {
    149        add_action('admin_init', array(&$this, 'remove_add_form_actions'), 1001);
    1510        parent::__construct();
     
    4641}
    4742   
     43$SMSify_User_Groups = new SMSify_User_Groups();
     44
     45add_action('plugins_loaded', array(&$SMSify_User_Groups, 'init'), 200);
  • smsify/trunk/readme.txt

    r1565586 r1565658  
    11=== SMSify ===
    22Contributors: mtomic
    3 Tags: sms, mobile, messaging, marketing
     3Tags: sms, smsgateway, smsapi, websms, mobile, messaging, sms marketing
    44Requires at least: 3.2
    55Tested up to: 4.7
    6 Stable tag: 5.1.2
     6Stable tag: 5.1.3
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
    99
    10 SMSify is a premium WordPress plugin that allows you to <strong>schedule personalised SMS messages</strong> to your subscribers. SMSify can also receive messages and display them in your WordPress dashboard.
     10SMSify is a 2-way SMS plugin that <strong>sends, receives and schedules SMS messages</strong>. It integrates with Contact Form 7 and just about everything else.
    1111
    1212== Description ==
    13 SMSify is a premium WordPress plugin that allows you to <strong>schedule personalised SMS messages</strong> to your subscribers. SMSify can also receive messages and display them in your WordPress dashboard.  This plugin has been built with performance in mind and it does not modify your database. This plugin allows you to <strong>import contacts</strong> from a csv file and <strong>schedule recurring SMS messages</strong>.  It features a native WordPress interface that is very simple to use. Screenshots available.
     13SMSify is a premium WordPress plugin that allows you to <strong>send or schedule personalised SMS messages</strong> to your WordPress Users. SMSify can also receive SMS and display them in your WordPress dashboard. This plugin allows you to <strong>import contacts</strong> from a csv file.  It features a native WordPress interface that is very simple to use. It integrates with Contact Form 7 and just about everything else. Screenshots available.
    1414
    1515Full list of features:
     
    3030
    3131== Requirements ==
    32 *   Modern web browser such as Google Chrome, Firefox, Safari or Internet Explorer 10+ recommended.
     32*   Modern web browser such as Google Chrome, Firefox and Safari.
    3333
    3434== Installation ==
     
    5151
    5252== Changelog ==
     53
     54= 5.1.3 =
     55* Optimised User import functionality
     56* Styling changes on the Integration page.
     57* Updated readme file.
    5358
    5459= 5.1.2 =
  • smsify/trunk/smsify.php

    r1565586 r1565658  
    1212 *
    1313 * @package SMSify
    14  * @version 5.1.2
     14 * @version 5.1.3
    1515 */
    1616/*
     
    1919Description: <strong>SMSify</strong> is a premium SMS plugin that allows you to <strong>send and receive SMS</strong> within your own WordPress dashboard. SMSify allows you to <strong>import contacts</strong> from a csv file and <strong>schedule recurring SMS messages</strong>.  It features a native WordPress interface that is very simple to use. Screenshots available. 
    2020Author: SMSify
    21 Version: 5.1.2
     21Version: 5.1.3
    2222Author URI: http://www.smsify.com.au/
    2323*/
  • smsify/trunk/views/smsify-integrations.php

    r1565586 r1565658  
    6060        <hr>
    6161        </p>
     62        <strong style="color: #d54e21;">IMPORTANT</strong>
     63        <p>This function assumes that you have entered a valid SMSify API Key on the SMSify setting page.</p>
    6264    <?php } ?>
    63     <strong style="color: #d54e21;">IMPORTANT</strong>
    64     <p>This function assumes that you have entered a valid SMSify API Key on the SMSify setting page.</p>
    6565</div>
Note: See TracChangeset for help on using the changeset viewer.