Changeset 1378565
- Timestamp:
- 03/25/2016 07:56:16 AM (10 years ago)
- Location:
- push-notifications/trunk
- Files:
-
- 4 edited
-
html/pushwoosh.html (modified) (1 diff)
-
pushwoosh.php (modified) (4 diffs)
-
readme.txt (modified) (1 diff)
-
settings.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
push-notifications/trunk/html/pushwoosh.html
r1225048 r1378565 1 1 <div > 2 <b> Chrome/SafariTitle:</b>2 <b>Title:</b> 3 3 <br/> 4 4 <input id="pushwoosh_safari_title" maxlength="32" name="safari_title" value='%s' type="text" placeholder="%s" /> -
push-notifications/trunk/pushwoosh.php
r1229905 r1378565 3 3 /** 4 4 * @package Pushwoosh 5 * @version 2.3.1 85 * @version 2.3.19 6 6 */ 7 7 … … 12 12 * Author: Pushwoosh, Inc 13 13 * Author URI: https://www.pushwoosh.com/ 14 * Version: 2.3.1 814 * Version: 2.3.19 15 15 * 16 16 * Copyright 2014 Arello Mobile (email: support@arello-mobile.com) … … 100 100 $checkbox_label = sprintf('Send a push notification when the %s is published', htmlentities($post_type)); 101 101 $textArea_placeholder = 'Input text of the push here, otherwise, the post title will be used.'; 102 $safari_title_placeholder = ' Chrome/Safari title';102 $safari_title_placeholder = 'Title'; 103 103 $checkbox_checked = 'checked="checked"'; 104 104 $message_content = ''; … … 145 145 } 146 146 $options['chrome_title'] = $options['safari_title']; 147 $options['firefox_title'] = $options['safari_title']; 147 148 $chrome_icon = $chrome_icon['text_string']; 148 if ($chrome_icon) 149 if ($chrome_icon) { 149 150 $options['chrome_icon'] = $chrome_icon; 151 $options['firefox_icon'] = $chrome_icon; 152 } 150 153 151 154 $pushwoosh = new Pushwoosh(array('auth' => $api_token['text_string'])); -
push-notifications/trunk/readme.txt
r1229905 r1378565 79 79 * Fix bug: do not send push on every post editing 80 80 81 = 2.3.19 = 82 * Firefox icon and title support 83 81 84 == Installation == 82 85 1. Download the Pushwoosh plugin. -
push-notifications/trunk/settings.php
r1225048 r1378565 27 27 ), 28 28 'chrome_default_icon' => array( 29 'label' => 'Chrome Icon',29 'label' => 'Chrome/Firefox Icon', 30 30 'description' => 'Full URL to icon', 31 31 ), 32 32 'safari_title' => array( 33 'label' => ' Chrome/SafariTitle',34 'description' => 'If you do not wish to manually input Chrome/ Safari Title every time, you can specify35 the default title here. If you publish a post with a blank Chrome/ Safari Title field,33 'label' => 'Title', 34 'description' => 'If you do not wish to manually input Chrome/Firefox/Safari Title every time, you can specify 35 the default title here. If you publish a post with a blank Chrome/Firefox/Safari Title field, 36 36 the URL of your website is used as default title.' 37 37 ),
Note: See TracChangeset
for help on using the changeset viewer.