Changeset 606345
- Timestamp:
- 10/01/2012 01:56:53 AM (13 years ago)
- Location:
- wordpress-automation-suite
- Files:
-
- 24 added
- 4 edited
-
tags/2.9 (added)
-
tags/2.9/AutoMore.php (added)
-
tags/2.9/AutoPaging.php (added)
-
tags/2.9/AutoTagger.php (added)
-
tags/2.9/Menu.php (added)
-
tags/2.9/automation-suite.php (added)
-
tags/2.9/imgs (added)
-
tags/2.9/imgs/icon.png (added)
-
tags/2.9/js (added)
-
tags/2.9/js/automation-suite.js (added)
-
tags/2.9/pages (added)
-
tags/2.9/pages/MainOptions.php (added)
-
tags/2.9/pages/auto-more-update-all.php (added)
-
tags/2.9/pages/auto-more.php (added)
-
tags/2.9/pages/auto-paging-update-all.php (added)
-
tags/2.9/pages/auto-paging.php (added)
-
tags/2.9/pages/auto-tagger.php (added)
-
tags/2.9/pages/paypal.php (added)
-
tags/2.9/readme.txt (added)
-
tags/2.9/screenshot-1.png (added)
-
tags/2.9/screenshot-2.png (added)
-
tags/2.9/screenshot-3.png (added)
-
tags/2.9/screenshot-4.png (added)
-
tags/2.9/screenshot-5.png (added)
-
trunk/Menu.php (modified) (1 diff)
-
trunk/automation-suite.php (modified) (5 diffs)
-
trunk/pages/MainOptions.php (modified) (1 diff)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wordpress-automation-suite/trunk/Menu.php
r544313 r606345 34 34 $options['AutomationSuite_AutoPaging'] = get_option('AutomationSuite_AutoPaging', false); 35 35 $options['AutomationSuite_AutoTagger'] = get_option('AutomationSuite_AutoTagger', false); 36 $options['AutomationSuite_GiveCredit'] = get_option('AutomationSuite_GiveCredit', false);36 //$options['AutomationSuite_GiveCredit'] = get_option('AutomationSuite_GiveCredit', false); 37 37 break; 38 38 case 'auto-more': -
wordpress-automation-suite/trunk/automation-suite.php
r590278 r606345 6 6 Author URI: http://travisweston.com/ 7 7 Description: With the help of this automation suite you are able to forget about creating excerpts, you can forget about manually inserting new pages for your posts. With this suite, all of these actions can, and will, be automated for you! 8 Version: 2. 88 Version: 2.9 9 9 */ 10 10 if(!defined('WESTON_NETWORKS_AUTOMATION_SUITE')){ … … 19 19 20 20 private $_footers = array( 21 'Technology opinions by Travis Weston @ TravisWeston.com', 22 'PHP/MySql Code and Opinions', 23 'WordPress Automation Suite brought to you by Travis Weston', 24 'More WordPress plugins', 25 'Excellent technology blog, opinions and tutorials', 26 'WordPress Automation Suite © 2012 Travis Weston', 27 'This blog automated by WordPress Automation Suite' 21 //REMOVED 28 22 ); 29 23 … … 55 49 } 56 50 57 add_action('wp_footer', array($this, 'giveCredit'));51 //add_action('wp_footer', array($this, 'giveCredit')); 58 52 add_action('admin_notices', array($this, 'begForMoney')); 59 53 self::$_instance = $this; … … 85 79 public function giveCredit() { 86 80 87 if(get_option('AutomationSuite_GiveCredit', true) != true) 88 return; 89 90 echo '<div style="clear:both;text-align: center;"><a href="http://travisweston.com" target="_blank" style="font-size: 8pt;">'.$this->_footers[array_rand($this->_footers)].'</a></div>'; 91 81 // Removed 82 92 83 } 93 84 … … 99 90 return; 100 91 101 $length = (get_option('AutomationSuite_GiveCredit', true) != true) ? '+2 Weeks' :'+1 Month';92 $length = '+1 Month'; 102 93 103 94 update_option('AutomationSuite_AlertTime', strtotime($length, time())); -
wordpress-automation-suite/trunk/pages/MainOptions.php
r544701 r606345 31 31 </select> like to use the Auto Post Tagger Module. 32 32 </li> 33 <li>34 I <select name="AutomationSuite_GiveCredit">35 <option value="1" <?php echo (isset($options['AutomationSuite_GiveCredit']) && $options['AutomationSuite_GiveCredit'] == true) ? 'selected="SELECTED" ' : null;?>/>would36 <option value="0" <?php echo (!isset($options['AutomationSuite_GiveCredit']) || $options['AutomationSuite_GiveCredit'] != true) ? 'selected="SELECTED" ' : null;?>/>wouldn't37 </select> like to give credit to the creator.38 </li>39 33 </ul> 40 34 <p class="submit"> -
wordpress-automation-suite/trunk/readme.txt
r590278 r606345 8 8 Requires at least: 3.0 9 9 Tested up to: 3.3.2 10 Stable tag: 2. 810 Stable tag: 2.9 11 11 12 12 Makes your life easier by automating the mundane tasks of writing blog posts, so you can focus on the content. … … 87 87 88 88 == Changelog == 89 = 2.9 = 90 Removed the link-back credit feature. 91 89 92 = 2.8 = 90 93 Converted string functions over to multi-byte string functions to fix issues with non-ascii characters. … … 124 127 125 128 == Upgrade Notice == 129 = 2.9 = 130 Removed the link-back credit feature. 131 126 132 = 2.8 = 127 133 Converted string functions over to multi-byte string functions to fix issues with non-ascii characters.
Note: See TracChangeset
for help on using the changeset viewer.