You appear to be a bot. Output may be restricted
Description
Display an "update" message
Usage
$string = OIK_Plugin_Update::show_update_message( $text );
Parameters
- $text
- ( string ) required – the message to display
Returns
string the generated HTMLSource
File name: oik/libs/class-oik-plugin-update.phpLines:
1 to 10 of 10
function show_update_message( $text ) { $message = '<tr class="plugin-update-tr">'; $message .= '<td colspan="3" class="plugin-update colspanchange">'; $message .= '<div class="update-message">'; $message .= $text; $message .= "</div>"; $message .= "</td>"; $message .= "</tr>"; echo $message; }View on GitHub View on Trac