gde_row_cb
The Google Doc Embedder gde row cb function.
Description
gde_row_cb( $pid );
Parameters (1)
- 0. $pid
- The pid.
Usage
if ( !function_exists( 'gde_row_cb' ) ) { require_once ABSPATH . PLUGINDIR . 'google-doc-embedder/options.php'; } // The pid. $pid = null; // NOTICE! Understand what this does before running. $result = gde_row_cb($pid);
Defined (1)
The function is defined in the following location(s).
- /options.php
- function gde_row_cb( $pid ) {
- // default profile
- if ( $pid == 1 ) {
- return " ";
- } else {
- return '<input type="checkbox" value="'.esc_attr($pid).'" name="delete_tags[]">';
- }
- }