Plugin Directory

Changeset 606345


Ignore:
Timestamp:
10/01/2012 01:56:53 AM (13 years ago)
Author:
anubisthejackle
Message:

Removed the credit link

Location:
wordpress-automation-suite
Files:
24 added
4 edited

Legend:

Unmodified
Added
Removed
  • wordpress-automation-suite/trunk/Menu.php

    r544313 r606345  
    3434                $options['AutomationSuite_AutoPaging'] = get_option('AutomationSuite_AutoPaging', false);
    3535                $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);
    3737                break;
    3838            case 'auto-more':
  • wordpress-automation-suite/trunk/automation-suite.php

    r590278 r606345  
    66Author URI: http://travisweston.com/
    77Description: 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.8
     8Version: 2.9
    99*/
    1010if(!defined('WESTON_NETWORKS_AUTOMATION_SUITE')){
     
    1919
    2020        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
    2822                );
    2923
     
    5549            }
    5650           
    57             add_action('wp_footer', array($this, 'giveCredit'));
     51            //add_action('wp_footer', array($this, 'giveCredit'));
    5852            add_action('admin_notices', array($this, 'begForMoney'));
    5953            self::$_instance = $this;
     
    8579        public function giveCredit() {
    8680           
    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       
    9283        }
    9384       
     
    9990                return;
    10091           
    101             $length = (get_option('AutomationSuite_GiveCredit', true) != true) ? '+2 Weeks' : '+1 Month';
     92            $length = '+1 Month';
    10293           
    10394            update_option('AutomationSuite_AlertTime', strtotime($length, time()));
  • wordpress-automation-suite/trunk/pages/MainOptions.php

    r544701 r606345  
    3131                </select> like to use the Auto Post Tagger Module.
    3232            </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;?>/>would
    36                     <option value="0" <?php echo (!isset($options['AutomationSuite_GiveCredit']) || $options['AutomationSuite_GiveCredit'] != true) ? 'selected="SELECTED" ' : null;?>/>wouldn't
    37                   </select> like to give credit to the creator.
    38             </li>
    3933        </ul>
    4034        <p class="submit">
  • wordpress-automation-suite/trunk/readme.txt

    r590278 r606345  
    88Requires at least: 3.0
    99Tested up to: 3.3.2
    10 Stable tag: 2.8
     10Stable tag: 2.9
    1111
    1212Makes your life easier by automating the mundane tasks of writing blog posts, so you can focus on the content.
     
    8787
    8888== Changelog ==
     89= 2.9 =
     90Removed the link-back credit feature.
     91
    8992= 2.8 =
    9093Converted string functions over to multi-byte string functions to fix issues with non-ascii characters.
     
    124127
    125128== Upgrade Notice ==
     129= 2.9 =
     130Removed the link-back credit feature.
     131
    126132= 2.8 =
    127133Converted 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.