View pdb-record-edit-log.php
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 Record Edit Log Tag | |
* Description: provides a custom email tag that shows which fields were updated | |
* Version: 1.0 | |
* | |
*/ | |
class PDb_Record_Edit_Log_Tag { | |
View pdb-custom-summary-tag.php
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 Custom Summary Tag | |
* Description: provides a custom tag to the "cars" log | |
*/ | |
add_filter( 'pdblog-summary_tags', 'xnau_add_custom_summary_tag', 10, 2 ); | |
/** | |
* adds a custom summary tag to the "cars" log |
View pdb-admin-show-heading.php
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 Show Heading Fields in Admin | |
* Description: enabled showing the heading type field on the admin edit participant page | |
*/ | |
add_filter( 'pdb-omit_backend_edit_form_element_type', 'xnau_enable_heading_field_display' ); | |
/** | |
* remove the heading field from the backend omit types array |
View pdb-custom-calc-field.php
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 Custom Calculated Field | |
* Description: demonstrates how to implement a custom calculation for a calculated field | |
*/ | |
add_filter( 'pdb-calculated_field_calc_value', 'pdb_calculate_value', 10, 3 ); | |
/** |
View pdb-list-multisearch-edit-link.php
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 | |
/** | |
* combo multisearch list template | |
* | |
* @version 2.2 | |
* | |
* @global \pdbcms\Plugin $PDb_Combo_Multi_Search | |
* | |
*/ | |
/** @var PDb_List $this */ |
View pdb-custom-dynamic-field.php
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 Custom Dynamic Field | |
* Description: demonstrates how to place a value from the shortcode into a dynamic hidden field | |
*/ | |
class PDb_Custom_Dynamic_Field { | |
/** |
View pdb-export-image-paths.php
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 Export Absolute Image Paths | |
* Description: Shows how to include the absolute path to image files in a CSV export | |
* | |
*/ | |
class PDb_Image_Paths_Export { | |
/** |
View pdb_alternate_id_field.php
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 Alternate ID Field | |
* Version: 0.1 | |
* Description: allows the use of a custom field for the general ID that is used to show a record | |
* Author: xnau webdesign | |
*/ | |
class PDb_alternate_id_field { | |
/** |
View pdb-custom_summary.php
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 Custom Summary | |
* Description: provides a customized sum value for the "Work Log" log | |
* Version: 1.0 | |
* | |
*/ | |
class pdb_work_log_summary { | |
NewerOlder