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 Log Running Total | |
* Description: keeps a running total for each record | |
* Version: 2.1 | |
*/ | |
/* | |
* this plugin keeps a cumulative total for each record by subtracting or adding |
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 Multi-Relational Literal Relations Field | |
* Description: Maintains a field in the database with a list of the record's relations | |
* Version: 0.1 | |
*/ | |
/* | |
* this is designed to maintain a field in the record that can be used for simple filtering |
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 Multi-Relational Utility Class | |
* Description: Provides a utility class for showing a record's relations | |
* Version: 0.1 | |
*/ | |
class pdbmrdb_record { | |
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 | |
/** | |
* list of records based on the user's data | |
* | |
* the name of the user's group is in a field named group_membership | |
* when they open the page, the list shortcode is filtered to only show members of the same group | |
* | |
*/ | |
if ( is_user_logged_in() ) : |
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 SQLite Fix | |
* Description: Fixes certain syntax issues with plugin db queries | |
* Author: Roland Barker, xnau webdesign | |
* Version: 1.1 | |
* Author URI: https://xnau.com | |
* License: GPL3 | |
*/ |
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 | |
/** | |
* template that demonstrates how to use a placeholder field to show an enumeration column | |
* | |
*/ | |
$enum_field = 'rank'; // name of the placeholder field | |
$records_per_page = $this->pagination->size; | |
$numeration = 1; |
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; | |
} ); |
NewerOlder