Changeset 1565658
- Timestamp:
- 01/01/2017 11:36:21 AM (9 years ago)
- Location:
- smsify
- Files:
-
- 1 deleted
- 6 edited
- 10 copied
-
tags/5.1.3 (copied) (copied from smsify/trunk)
-
tags/5.1.3/includes/functions.php (copied) (copied from smsify/trunk/includes/functions.php) (1 diff)
-
tags/5.1.3/js/sendsmscontroller.js (deleted)
-
tags/5.1.3/js/sendsmscontroller.min.js (copied) (copied from smsify/trunk/js/sendsmscontroller.min.js)
-
tags/5.1.3/modules/importusers/class-readcsv.php (copied) (copied from smsify/trunk/modules/importusers/class-readcsv.php)
-
tags/5.1.3/modules/importusers/import-users-from-csv.php (copied) (copied from smsify/trunk/modules/importusers/import-users-from-csv.php) (4 diffs)
-
tags/5.1.3/modules/usergroups/UserGroups.php (copied) (copied from smsify/trunk/modules/usergroups/UserGroups.php)
-
tags/5.1.3/modules/usergroups/UserGroupsExtended.php (copied) (copied from smsify/trunk/modules/usergroups/UserGroupsExtended.php) (2 diffs)
-
tags/5.1.3/readme.txt (copied) (copied from smsify/trunk/readme.txt) (3 diffs)
-
tags/5.1.3/smsify.php (copied) (copied from smsify/trunk/smsify.php) (2 diffs)
-
tags/5.1.3/views/smsify-integrations.php (copied) (copied from smsify/trunk/views/smsify-integrations.php) (1 diff)
-
trunk/includes/functions.php (modified) (1 diff)
-
trunk/modules/importusers/import-users-from-csv.php (modified) (4 diffs)
-
trunk/modules/usergroups/UserGroupsExtended.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/smsify.php (modified) (2 diffs)
-
trunk/views/smsify-integrations.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
smsify/tags/5.1.3/includes/functions.php
r1565586 r1565658 6 6 global $current_user; 7 7 $smsify_params = new stdClass(); 8 $smsify_params->appVersion = '5.1. 2';8 $smsify_params->appVersion = '5.1.3'; 9 9 $smsify_params->api_key = get_site_option('smsify-api-key'); 10 10 $smsify_params->apiprotocol = 'https'; -
smsify/tags/5.1.3/modules/importusers/import-users-from-csv.php
r1444901 r1565658 2 2 if (realpath (__FILE__) === realpath ($_SERVER["SCRIPT_FILENAME"])) 3 3 exit ("Do not access this file directly."); 4 5 add_action('plugins_loaded', array('SMSify_IS_IU_Import_Users', 'init'), 201);6 4 7 5 load_plugin_textdomain( 'import-users-from-csv', false, basename( dirname( __FILE__ ) ) . '/languages' ); … … 25 23 **/ 26 24 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' ) ); 30 28 31 29 $upload_dir = wp_upload_dir(); … … 40 38 **/ 41 39 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' ) ); 43 41 } 44 42 … … 377 375 } 378 376 379 SMSify_IS_IU_Import_Users::init(); 377 $SMSify_IS_IU_Import_Users = new SMSify_IS_IU_Import_Users(); 378 379 add_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 4 4 5 5 require_once 'UserGroups.php'; 6 add_action('plugins_loaded', array('SMSify_User_Groups', 'load'), 200);7 6 8 7 class 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() { 14 9 add_action('admin_init', array(&$this, 'remove_add_form_actions'), 1001); 15 10 parent::__construct(); … … 46 41 } 47 42 43 $SMSify_User_Groups = new SMSify_User_Groups(); 44 45 add_action('plugins_loaded', array(&$SMSify_User_Groups, 'init'), 200); -
smsify/tags/5.1.3/readme.txt
r1565586 r1565658 1 1 === SMSify === 2 2 Contributors: mtomic 3 Tags: sms, mobile, messaging,marketing3 Tags: sms, smsgateway, smsapi, websms, mobile, messaging, sms marketing 4 4 Requires at least: 3.2 5 5 Tested up to: 4.7 6 Stable tag: 5.1. 26 Stable tag: 5.1.3 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html 9 9 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.10 SMSify 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. 11 11 12 12 == Description == 13 SMSify is a premium WordPress plugin that allows you to <strong>s chedule 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.13 SMSify 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. 14 14 15 15 Full list of features: … … 30 30 31 31 == 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. 33 33 34 34 == Installation == … … 51 51 52 52 == Changelog == 53 54 = 5.1.3 = 55 * Optimised User import functionality 56 * Styling changes on the Integration page. 57 * Updated readme file. 53 58 54 59 = 5.1.2 = -
smsify/tags/5.1.3/smsify.php
r1565586 r1565658 12 12 * 13 13 * @package SMSify 14 * @version 5.1. 214 * @version 5.1.3 15 15 */ 16 16 /* … … 19 19 Description: <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. 20 20 Author: SMSify 21 Version: 5.1. 221 Version: 5.1.3 22 22 Author URI: http://www.smsify.com.au/ 23 23 */ -
smsify/tags/5.1.3/views/smsify-integrations.php
r1565586 r1565658 60 60 <hr> 61 61 </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> 62 64 <?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>65 65 </div> -
smsify/trunk/includes/functions.php
r1565586 r1565658 6 6 global $current_user; 7 7 $smsify_params = new stdClass(); 8 $smsify_params->appVersion = '5.1. 2';8 $smsify_params->appVersion = '5.1.3'; 9 9 $smsify_params->api_key = get_site_option('smsify-api-key'); 10 10 $smsify_params->apiprotocol = 'https'; -
smsify/trunk/modules/importusers/import-users-from-csv.php
r1444901 r1565658 2 2 if (realpath (__FILE__) === realpath ($_SERVER["SCRIPT_FILENAME"])) 3 3 exit ("Do not access this file directly."); 4 5 add_action('plugins_loaded', array('SMSify_IS_IU_Import_Users', 'init'), 201);6 4 7 5 load_plugin_textdomain( 'import-users-from-csv', false, basename( dirname( __FILE__ ) ) . '/languages' ); … … 25 23 **/ 26 24 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' ) ); 30 28 31 29 $upload_dir = wp_upload_dir(); … … 40 38 **/ 41 39 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' ) ); 43 41 } 44 42 … … 377 375 } 378 376 379 SMSify_IS_IU_Import_Users::init(); 377 $SMSify_IS_IU_Import_Users = new SMSify_IS_IU_Import_Users(); 378 379 add_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 4 4 5 5 require_once 'UserGroups.php'; 6 add_action('plugins_loaded', array('SMSify_User_Groups', 'load'), 200);7 6 8 7 class 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() { 14 9 add_action('admin_init', array(&$this, 'remove_add_form_actions'), 1001); 15 10 parent::__construct(); … … 46 41 } 47 42 43 $SMSify_User_Groups = new SMSify_User_Groups(); 44 45 add_action('plugins_loaded', array(&$SMSify_User_Groups, 'init'), 200); -
smsify/trunk/readme.txt
r1565586 r1565658 1 1 === SMSify === 2 2 Contributors: mtomic 3 Tags: sms, mobile, messaging,marketing3 Tags: sms, smsgateway, smsapi, websms, mobile, messaging, sms marketing 4 4 Requires at least: 3.2 5 5 Tested up to: 4.7 6 Stable tag: 5.1. 26 Stable tag: 5.1.3 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html 9 9 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.10 SMSify 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. 11 11 12 12 == Description == 13 SMSify is a premium WordPress plugin that allows you to <strong>s chedule 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.13 SMSify 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. 14 14 15 15 Full list of features: … … 30 30 31 31 == 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. 33 33 34 34 == Installation == … … 51 51 52 52 == Changelog == 53 54 = 5.1.3 = 55 * Optimised User import functionality 56 * Styling changes on the Integration page. 57 * Updated readme file. 53 58 54 59 = 5.1.2 = -
smsify/trunk/smsify.php
r1565586 r1565658 12 12 * 13 13 * @package SMSify 14 * @version 5.1. 214 * @version 5.1.3 15 15 */ 16 16 /* … … 19 19 Description: <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. 20 20 Author: SMSify 21 Version: 5.1. 221 Version: 5.1.3 22 22 Author URI: http://www.smsify.com.au/ 23 23 */ -
smsify/trunk/views/smsify-integrations.php
r1565586 r1565658 60 60 <hr> 61 61 </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> 62 64 <?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>65 65 </div>
Note: See TracChangeset
for help on using the changeset viewer.