Plugin Directory

Changeset 464479


Ignore:
Timestamp:
11/18/2011 04:23:24 AM (14 years ago)
Author:
markpdxt
Message:

initial

Location:
sync-facebook-events/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • sync-facebook-events/trunk/readme.txt

    r464388 r464479  
    22Contributors: markpdxt
    33Donate link: http://pdxt.com/
    4 Tags: facebook, events
     4Tags: facebook, events, synchronize, calendar
    55Requires at least: 3.0
    66Tested up to: 3.0
     
    18182. Upload the sync-facebook-events folder to your /wp-content/plugins/ directory
    19193. Go to the plugins page and click 'Activate' for Sync FB Events
     204. Navigate to the Settings section within Wordpress and enter your Facebook App ID, App Secret & UID.
     215. Ensure The Events Calendar plugin is installed and configured - http://wordpress.org/extend/plugins/the-events-calendar/
     225. Press 'Update' to synchronize your current Facebook events for display within The Events Calendar.
    2023
    2124== Frequently Asked Questions ==
    2225
    23 This is a simple plugin that is designed to be used with The Events Calendar plugin.
     26Q: What is the Facebook App ID and App Secret, and why are they required?
     27A: The Facebook App ID and App Secret are required by Facebook to access data via the Facebook graph API. To signup for a developer account or learn more see - http://developers.facebook.com/docs/guides/canvas/
     28
     29Q: Do my Facebook events get updated on a schedule?
     30A: Currently, your Facebook events are updated only when you press the 'Update' button from the Sync FB Events section within settings.
    2431
    2532== Upgrade Notice ==
     33
     34Upgrade Notice
    2635
    2736== Screenshots ==
  • sync-facebook-events/trunk/sync-facebook-events.php

    r464394 r464479  
    142142            if (array_key_exists($event['eid'], $eids)) {
    143143                tribe_update_event($args);
    144                 $action = "Updating Post: ".$eids[$event['eid']];
     144                $action = "Updating: ".$eids[$event['eid']];
    145145            } else {
    146146                $post_id = tribe_create_event($args);
    147                 $action = "Inserting Post: ".$post_id;
     147                $action = "Inserting: ".$post_id;
    148148            }
    149149            reset($eids);
    150150           
    151             //print $action."<br />";
     151            print $action;
    152152        }
    153153        fclose($fp);
     154        print "<br />";
    154155    ?>
    155     <span style="color:red;">Events Calendar update finished.</span><br /><br />
     156    <span style="color:red;">Events Calendar updated with current Facebook events.</span><br /><br />
    156157    </div>
    157158<? } ?>
Note: See TracChangeset for help on using the changeset viewer.