This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: PDB Age Detail Format Tag | |
* Description: shows how to add a custom formatting tag for use in a Participants Database calculated field | |
* Version: 1.0 | |
* | |
*/ | |
class PDb_age_detail_format_tag |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: PDB Admin Exclusive Options | |
* Description: enables exclusive options in the admin record editor | |
* Version: 1.1 | |
*/ | |
class pdb_admin_exclusive_options { | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
* Plugin Name: Participants Database Session initializer | |
* Plugin URI: https://wordpress.org/plugins/participants-database/ | |
* Description: Attempts to initate a php session before headers are sent | |
* Author: xnau webdesign | |
* Version: 0.1 | |
* Author URI: http://xnau.com | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: PDB Don't Minify JS | |
* Description: overrides the use of built-in minified javascript in Participants Database | |
*/ | |
add_filter( 'pdb-use_minified_assets', function($enabled){ | |
return false; | |
} ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* participants database list template that shows special content for logged-in users | |
*/ | |
if ( is_user_logged_in() ) | |
{ | |
do_shortcode( '[pdb_list search=true template="edit-link"]' ); | |
} | |
else | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: PDB Dynamic Field Cron Updater Version 2 | |
* Description: updates a dynamic field automatically on a WP cron | |
* Version: 2.0 | |
*/ | |
class PDb_Dynamicfield_Cron_Updater2 | |
{ | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: PDB Dynamic Field Cron Updater | |
* Description: updates dynamic fields automatically on a WP cron | |
* Version: 1.0 | |
*/ | |
class PDb_Dynamicfield_Cron_Updater | |
{ | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: PDB Dynamic Field Updater | |
* Description: updates dynamic fields automatically after a signup submission | |
* Version: 1.0 | |
*/ | |
class PDb_Dynamicfield_Update | |
{ | |
/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: PDB Auto Search Mode | |
* Description: switches the "strict user search" mode off if there is a wildcard in the search term | |
* Author: xnau webdesign | |
* Version: 1.2 | |
*/ | |
class pdb_auto_search_mode { | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: PDB Return to Results Shortcode | |
* Description: adds a shortcode that displays a ling to return to the previous search result | |
* Author: xnau webdesign | |
* Version: 1.3 | |
*/ | |
class PDb_Search_Return_Link { | |
NewerOlder