gde_show_tab
Display tabs.
Description
gde_show_tab( (string) $name );
Parameters (1)
- 0. $name (string)
- The name.
Usage
if ( !function_exists( 'gde_show_tab' ) ) { require_once ABSPATH . PLUGINDIR . 'google-doc-embedder/functions-admin.php'; } // The name. $name = ''; // NOTICE! Understand what this does before running. $result = gde_show_tab($name);
Defined (1)
The function is defined in the following location(s).
- /functions-admin.php
- function gde_show_tab( $name ) {
- $tabfile = GDE_PLUGIN_DIR . "libs/tab-$name.php";
- if ( file_exists( $tabfile ) ) {
- include_once( $tabfile );
- }
- }