Changeset 546247
- Timestamp:
- 05/19/2012 05:36:10 PM (14 years ago)
- Location:
- rainmakermoxie/trunk
- Files:
-
- 1 added
- 2 edited
-
images/disqus.png (added)
-
rainmakermoxie.php (modified) (7 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
rainmakermoxie/trunk/rainmakermoxie.php
r546235 r546247 5 5 Plugin URI: http://wordpress.org/extend/plugins/rainmakermoxie/ 6 6 Description: Enter an email address and the RainmakerMoxie Plugin retrieves contact information from <a href="http://fullcontact.com">FullContact</a> and displays it in the sidebar. <strong>After activation:</strong> <a href="options-general.php?page=rainmakermoxie/rainmakermoxie.php">click here to configure the Plugin</a>. 7 Version: 1.1. 87 Version: 1.1.9 8 8 Author: Neil Simon 9 9 Author URI: http://solidcode.com/ … … 32 32 { 33 33 // Internal plugin constants 34 define ('RAINMAKER_MOXIE_PLUGIN_VERSION', '1.1. 8');34 define ('RAINMAKER_MOXIE_PLUGIN_VERSION', '1.1.9'); 35 35 define ('RAINMAKER_MOXIE_PLUGIN_VERSION_FOR_HIDDEN_DIV', 'RainmakerMoxie-' . RAINMAKER_MOXIE_PLUGIN_VERSION); 36 36 define ('RAINMAKER_MOXIE_SETTINGS_OPTIONS', 'rainmakerMoxieOptions'); … … 532 532 if (($socialProfile->url != "") && ($socialProfile->username != "")) 533 533 { 534 if (substr ($socialProfile->url, -7) == "content") 535 { 536 // skip: this url (as received from FullContact) will not resolve 537 } 538 else 539 { 540 $socialLinks [$socialProfile->type] = array ("type" => $socialProfile->type, 541 "url" => $socialProfile->url); 542 } 543 } 544 } 545 546 else 547 { 548 if (substr ($socialProfile->url, -7) == "content") 549 { 550 // skip: this url (as received from FullContact) will not resolve 551 } 552 else 553 { 554 // Add social link 534 555 $socialLinks [$socialProfile->type] = array ("type" => $socialProfile->type, 535 556 "url" => $socialProfile->url); 536 557 } 537 558 } 538 539 else540 {541 // Add social link542 $socialLinks [$socialProfile->type] = array ("type" => $socialProfile->type,543 "url" => $socialProfile->url);544 }545 559 } 546 560 … … 569 583 // Lookup table for rendering photo avatars 570 584 $chicklets = array ("about.me" => array ("png" => $imageFolder . "/aboutme.png", "textToDisplay" => "About Me"), 585 "aboutme" => array ("png" => $imageFolder . "/aboutme.png", "textToDisplay" => "About Me"), 571 586 "aim" => array ("png" => $imageFolder . "/aim.png", "textToDisplay" => "Aim"), 572 587 "amazon" => array ("png" => $imageFolder . "/amazon.png", "textToDisplay" => "Amazon"), … … 575 590 "delicious" => array ("png" => $imageFolder . "/delicious.png", "textToDisplay" => "Delicious"), 576 591 "digg" => array ("png" => $imageFolder . "/digg.png", "textToDisplay" => "Digg"), 592 "disqus" => array ("png" => $imageFolder . "/disqus.png", "textToDisplay" => "Disqus"), 577 593 "dopplr" => array ("png" => $imageFolder . "/dopplr.png", "textToDisplay" => "Dopplr"), 578 594 "dribbble" => array ("png" => $imageFolder . "/dribbble.png", "textToDisplay" => "Dribbble"), … … 595 611 "google reader" => array ("png" => $imageFolder . "/googlereader.png", "textToDisplay" => "Google Reader"), 596 612 "google profile" => array ("png" => $imageFolder . "/google-profile.png", "textToDisplay" => "Google Profile"), 613 "googleprofile" => array ("png" => $imageFolder . "/google-profile.png", "textToDisplay" => "Google Profile"), 597 614 "googleplus" => array ("png" => $imageFolder . "/googleplus.png", "textToDisplay" => "Google+"), 598 615 "gowalla" => array ("png" => $imageFolder . "/gowalla.png", "textToDisplay" => "Gowalla"), … … 607 624 "lanyrd" => array ("png" => $imageFolder . "/lanyrd.png", "textToDisplay" => "Lanyrd"), 608 625 "last.fm" => array ("png" => $imageFolder . "/lastfm.png", "textToDisplay" => "Last.fm"), 626 "lastfm" => array ("png" => $imageFolder . "/lastfm.png", "textToDisplay" => "Last.fm"), 609 627 "linkedin" => array ("png" => $imageFolder . "/linkedin.png", "textToDisplay" => "LinkedIn"), 610 628 "livejournal" => array ("png" => $imageFolder . "/livejournal.png", "textToDisplay" => "LiveJournal"), -
rainmakermoxie/trunk/readme.txt
r546235 r546247 74 74 == Changelog == 75 75 76 = 1.1.9 : 2012-05-19 = 77 * Fixed social URLs ending in "/content" to not be displayed. 78 * Added social chicklet: disqus. 79 76 80 = 1.1.8 : 2012-05-19 = 77 81 * Updated API endpoint to support new verion of the FullContact API. … … 79 83 80 84 = 1.1.7 : 2011-08-29 = 81 * Update registration link to go to new landing page. 85 * Update registration link to go to new landing page. 82 86 * Added social chicklets: fullcontact, peerindex. 83 87
Note: See TracChangeset
for help on using the changeset viewer.