Version: 5
🔥 Gravity PDF v5 end of life was 2023-04-28 and this version is no longer supported. This legacy documentation is kept for reference only.
gfpdf_settings_general
Description
This filter can be used to add new fields to the General tab of the Gravity PDF settings page. It's basically a Fields API and all validation, sanitising and saving is handled automatically for you.
Parameters
$fields | array
- An associative array that includes a breakdown of the field information. We go into more detail about what each field configuration setting does in our custom PDF configuration guide.
Usage
The following sample shows you how to add two new fields to the General tab of the Gravity PDF settings page:
add_filter( 'gfpdf_settings_general', function( $fields ) {
/**
* Ensure you prefix the array key and ID to prevent any conflicts
*/
/* Add a colour picker to the General Settings page */
$fields['prefix_border_colour'] = array(
'id' => 'prefix_border_colour',
'name' => __('Field Border Colour', 'prefix-text-domain' ),
'type' => 'color',
'desc' => __('Control the colour of the field border.', 'prefix-text-domain' ),
'std' => '#CCCCCC'
);
/* Add a Radio button to the General Settings page */
$fields['prefix_my_custom_radio'] = array(
'id' => 'prefix_my_custom_radio',
'name' => 'My Custom Radio',
'desc' => 'This is my field description',
'type' => 'radio',
'options' => array(
'Yes' => __( 'Yes', 'prefix-text-domain' ),
'No' => __( 'No', 'prefix-text-domain' ),
),
'std' => __( 'No', 'prefix-text-domain' ),
);
return $fields;
} );
The following snippet shows you how to change the label of an existing field:
add_filter( 'gfpdf_settings_general', function( $fields ) {
if ( isset( $fields['default_pdf_size'] ) ) {
$fields['default_pdf_size']['name'] = __( 'Global Paper Size', 'prefix-text-domain' );
}
return $fields;
} );
Source Code
This filter is located in the Helper_Options_Fields::get_registered_fields()
method of /src/helper/Helper_Options_Fields.php
.