You appear to be a bot. Output may be restricted
Description
Return the tooltip value for "me"The name displayed in the tooltips comes from "me=" parameter, oik (user) options contact or user display_name field
Usage
bw_get_me( $atts );
Parameters
- $atts
- ( mixed ) optional –
Returns
voidSource
File name: oik/includes/bobbcomp.phpLines:
1 to 13 of 13
function bw_get_me( $atts=null ) { $me = bw_array_get( $atts, "me", null ); if ( null === $me ) { $me = bw_get_option_arr( "contact", "bw_options", $atts ); if ( null === $me || "" === $me ) { $me = bw_get_option_arr( "display_name", null, $atts ); if ( null === $me ) { $me = __( "me", "oik" ); } } } return( $me ); }View on GitHub View on Trac