Plugin Directory

Changeset 363418


Ignore:
Timestamp:
03/22/2011 07:40:32 PM (15 years ago)
Author:
webternals
Message:

0.0.9.3.Alpha

Location:
admangler/trunk
Files:
3 added
3 edited

Legend:

Unmodified
Added
Removed
  • admangler/trunk/adMangler.class.php

    r293200 r363418  
    1414        function AdminMenu()
    1515        {
    16             add_menu_page('AdMangler Settings', 'Admangler', 9, __FILE__, array($this, 'CreateAdminPage'), '/'. PLUGINDIR . '/admangler/images/logo.gif');
     16            add_menu_page('AdMangler Settings', 'AdMangler', 9, __FILE__, array($this, 'CreateAdminPage'), '/'. PLUGINDIR . '/admangler/images/logo.gif');
    1717            //add_submenu_page(__FILE__, 'AdMangler Settings', 'Settings', 9, 'settings', array($this, 'CreateAdminPage'));
    1818            add_submenu_page(__FILE__, 'AdMangler Settings', 'Banners', 9, 'banners', array($this, 'CreateAdminPage'));
  • admangler/trunk/adMangler.php

    r293200 r363418  
    44        Plugin URI: http://www.webternals.com/projects/admangler/
    55        Description: Display, sell, and manage ad space on your Wordpress powered site with AdMangler.
    6         Version: 0.0.9.2.Alpha
     6        Version: 0.0.9.3.Alpha
    77        Author: Webternals, LLC - Allen Sanford
    88        Author URI: http://www.webternals.com/
     
    3535            add_filter('the_content', array($adMangler, 'FilterTheContent'));
    3636            add_shortcode('AdMangler', array($adMangler, 'ShortCodeHandler'));
     37            add_shortcode('admangler', array($adMangler, 'ShortCodeHandler'));
    3738        }
    3839        add_action('init', array('AdMangler', 'RegisterWidgets'), 1);
  • admangler/trunk/readme.txt

    r293200 r363418  
    44Tags: Ads
    55Requires at least: 2.8.2
    6 Tested up to: 3.0.1
    7 Stable Tag: 0.0.9.2.Alpha
     6Tested up to: 3.1.0
     7Stable Tag: 0.0.9.3.Alpha
    88
    99Display, sell, and manage ad space on your Wordpress powered site with AdMangler.
     
    4040</ul>
    4141
    42 Please remember we are still in the Alpha phase of this project not everything is as it seems.
    43 
    44 If you would like to contribute please contact webmaster at webternals dot com and tell us where you feel you can contribute.
     42If you would like to contribute please contact admangler@webternals.com and tell us where you feel you can contribute.
    4543
    4644More Information can be found at http://www.webternals.com/projects/admangler/
     
    50481. Upload `admangler.zip` or `admangler.tgz` to the `/wp-content/plugins/` directory and extract the contents.
    51491. Activate the plugin through the 'Plugins' menu in WordPress.
    52 1. Place `<?php global $adMangler; ?>` near the top of any template file you plan to use the $adMangler object.
    53 1. Place `<?php $adMangler->GetAd(array('width'=>486,'height'=>60,'return'=>false)); ?>` to call and add.
    54 1. Wordpess ShortCodes are supported like so [AdMangler width="468" height="60"]
     501. Template File Usage: <?php do_shortcode('[AdMangler width="468" height="60" position="1"]'); ?>
     511. Wordpess ShortCodes for pages and posts: [AdMangler width="468" height="60"]
    55521. (Not Yet Working) To display the AdMangler Front-end panel you will need to create an empty page and place the following tag in that page: [AdMangler type="Panel"]
    56 1. (Deprecated) Place `<?php $adMangler->GetAds(<width>, <height>, false); ?>` ex: `<?php $adMangler->GetAds(468, 60, false); ?>`.
     531. (Deprecated): Place `<?php global $adMangler; ?>` near the top of any template file you plan to use the $adMangler object.
     541. (Deprecated): Place `<?php $adMangler->GetAd(array('width'=>486,'height'=>60,'return'=>false)); ?>` to call an Ad.
     551. (Deprecated): Place `<?php $adMangler->GetAds(<width>, <height>, false); ?>` ex: `<?php $adMangler->GetAds(468, 60, false); ?>`.
    57561. (Deprecated): Alternativly you can place [AdMangler:`<width>`x`<height>`] ex: [AdMangler:468x60] inside any page or post where you wish your ad to show.
    58571. (Deprecated): To display the AdMangler Front-end panel you will need to create an empty page and place the following tag in that page: [AdMangler:Panel]
     
    6059== Frequently Asked Questions ==
    6160
    62 = When I try to use the $adMangler object to display ads it errors out, what is the deal? =
    63 
    64 You may need to explicitly tell PHP to use the global $adMangler object like so `<?php global $adMangler; ?>`
     61= (Deprecated): When I try to use the $adMangler object to display ads it errors out, what is the deal? =
     62(Deprecated): You may need to explicitly tell PHP to use the global $adMangler object like so `<?php global $adMangler; ?>`
    6563
    6664
    6765== Screenshots ==
    68 None Yet (Waiting to finish the Front-end before I take screenshots)
     661. Screenshot 1
     671. Screenshot 2
     681. Screenshot 3
    6969
    7070== Changelog ==
     71
     72= 0.0.9.3.Alpha =
     73* Improved Template File Usage capabilities
     74* Dirty code cleanup.
    7175
    7276= 0.0.9.2.Alpha =
Note: See TracChangeset for help on using the changeset viewer.