You appear to be a bot. Output may be restricted
Description
Format a link or links to the plugin
When formatting two links they appear as: plugin(notes)
Usage
bw_format_link( $name, $link, $plugininfo, $banner );
Parameters
- $name
- ( string ) required – the plugin name
- $link
- ( string ) required – link to the notes page URL
- $plugininfo
- ( object ) required – plugininfo object – which may also contain oik_server
- $banner
- ( mixed ) optional –
Returns
void
Source
File name: oik-bob-bing-wide/shortcodes/oik-plug.php
Lines:
1 to 15 of 15
function bw_format_link( $name, $link, $plugininfo, $banner=null ) { if ( $banner ) { sdiv( "bw_plug" ); bw_link_plugin_banner( $name, $plugininfo, $banner ); } else { span( "bw_plug" ); bw_link_plugin_download( $name, $plugininfo ); } bw_link_notes_page( $name, $link, "(", ")" ); if ( $banner ) { ediv(); } else { epan(); } }