Changeset 406742
- Timestamp:
- 07/08/2011 01:23:20 PM (15 years ago)
- Location:
- praybox
- Files:
-
- 2 deleted
- 2 edited
-
tags/1.0 (deleted)
-
tags/1.01 (deleted)
-
trunk/praybox.php (modified) (5 diffs)
-
trunk/readme.txt (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
praybox/trunk/praybox.php
r406559 r406742 4 4 Plugin URI: http://www.guilddev.com/wordpress-plugins/ 5 5 Description: This is a plugin that facilitates intercessory prayer by allowing visitors to post prayer requests and/or respond to prayer requests that have been posted by clicking on a button indicating that the prayer request has been prayed for. At the end of each day, visitors who have submitted prayer requests receive an email that tells them how many times they have been prayed for that day. 6 Version: 1.016 Version: 0.4 7 7 Author: Guild Development, LLC 8 8 Author URI: http://www.guilddev.com … … 24 24 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 25 25 */ 26 include("inc/functions.php");27 26 28 27 function pb_includeAdminCSS() { … … 37 36 include("inc/inc_install_func.php"); 38 37 include("inc/inc_pb_crons.php"); 39 include("inc/inc_update_func.php");40 38 41 39 register_activation_hook(__FILE__,'gd_pb_db_install'); 42 register_activation_hook(__FILE__,'setup_pb_crons'); 40 register_activation_hook(__FILE__,'gd_pb_crons'); 41 add_action('prayer_gap','do_gap_check'); 42 add_action('daily_emails','send_daily_emails'); 43 43 44 44 include("inc/inc_admin_menu_hooks.php"); … … 46 46 //ADMIN INCLUDES 47 47 include("inc/inc_pb_settings_page.php"); 48 include("inc/inc_pb_flagged_requests_page.php"); 48 49 include("inc/inc_pb_bannedips_page.php"); 49 include("inc/inc_pb_request_list_pending_page.php"); 50 include("inc/inc_pb_request_list_active_page.php"); 51 include("inc/inc_pb_request_list_flagged_page.php"); 52 include("inc/inc_pb_request_list_closed_page.php"); 53 include("inc/inc_pb_request_list_archived_page.php"); 50 include("inc/inc_pb_request_list_page.php"); 54 51 55 52 //SHORTCODE INCLUDES … … 60 57 add_shortcode('pb-forms','display_pb_forms'); 61 58 62 //DEACTIVATION63 register_deactivation_hook(__FILE__, 'deactivate_pb_crons'); -
praybox/trunk/readme.txt
r406559 r406742 4 4 Tags: church, pray, prayer, religion, ministry 5 5 Requires at least: 3.0 6 Tested up to: 3. 27 Stable tag: 1.016 Tested up to: 3.1 7 Stable tag: 0.4 8 8 9 9 Prayer request application that allows users to submit requests, or pray for existing requests … … 11 11 == Description == 12 12 13 Thank you for some generous donations that have helped us further develop this unique, important tool for Churches and organizations. Thanks to you we have been able to fix several bugs, and add many new features for our 1.0 release. Please help us continue to update and improve this and other ministry tools.14 15 13 Prayer request application that allows users to submit requests, or pray for existing requests. All requests can be moderated from the admin section and can be flagged by members as inappropriate requests. There is a IP ban system in place as well to reduce inappropriate behavior. 16 14 17 Every time a request is prayed for, and the user clicks the "I Prayed For You" button, the requester will rec eive a nightly email detailing how many prayers they received that day.15 Every time a request is prayed for, and the user clicks the "I Prayed For You" button, the requester will recieve a nightly email detailing how many prayers they received that day. 18 16 19 17 = Live Praybox = 20 21 Video on how to use the Praybox frontend: [Praybox for Wordpress Youtube Video](http://www.youtube.com/watch?v=vcRpZZ8lS98)22 18 23 19 View our working version of Praybox, post a prayer request or pray for others here: [Praybox - Online Prayer Requests](http://www.praybox.com/) … … 43 39 5. Make sure the appropriate shortcodes are placed on the appropriate pages. 44 40 5. Paste shortcodes accordingly: 45 * Paste this shortcode into the page you would like to use to display your listings: [pb-requests]46 * Paste this shortcode into the page you would like to use to display your submission form: [pb-forms]47 * IMPORTANT: Make sure you tell the plugin where you placed the [pb-forms] shortcode by selecting that page from the list beside "Prayer Request Form Page"41 * Paste this shortcode into the page you would like to use to display your listings: [pb-requests] 42 * Paste this shortcode into the page you would like to use to display your submission form: [pb-forms] 43 * IMPORTANT: Make sure you tell the plugin where you placed the [pb-forms] shortcode by selecting that page from the list beside "Prayer Request Form Page" 48 44 6. Have fun using this plugin and if you have any questions, requests, or positive feedback, we would love to hear from you at Guild Development, LLC (http://www.guilddev.com/wordpress-plugins/) 49 45 … … 65 61 = June 14, 2011 - 0.4 = 66 62 * Change text "Report This" to "Report Abuse" to be more clear 67 * Fixed bug where people not using the extension "wp_" in their DB were not able to post, and were banned from posting 68 69 = July 7, 2011 - 1.0 = 70 * Fixed daily "Prayed For" email notifications 71 * Fixed issue with single requests occasionally being posted multiple times 72 * Fixed issue where line spacing was translated to "rn" 73 * Cleaned up a lot of code/functions to make PrayBox run more efficiently 74 * Added the option for admins to moderate and edit posts before they are displayed 75 * Added the option for users to edit their own prayer requests 76 * Added the option for users to post praise reports and close their requests 77 * Added actual URLs for requests, so users can link directly to requests 78 * Added strategic countermeasures to enhance spam protection 79 * Added pagination to request list page for enhanced usability on sites with many requests 80 * Added an admin setting to set the number of requests to display per page 81 * Added the option for administrators to archive old requests 82 * Added granularity for administrators by separating requests based upon active status (Pending, Active, Flagged, Closed, Archived) 83 84 = July 7, 2011 - 1.01 = 85 * Committed missing files to SVN 63 * Fixed bug where people not using the extention "wp_" in their DB were not able to post, and were banned from posting
Note: See TracChangeset
for help on using the changeset viewer.