Warning: Array to string conversion in /mnt/data/home/502433.cloudwaysapps.com/rhbymdevka/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 808
Warning: foreach() argument must be of type array|object, string given in /mnt/data/home/502433.cloudwaysapps.com/rhbymdevka/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 813
Warning: Array to string conversion in /mnt/data/home/502433.cloudwaysapps.com/rhbymdevka/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 808
PUM_Abstract_Upgrade_Settings::get_message( string $code )
Retrieves a message for the given code.
Description Description
Warning: Array to string conversion in /mnt/data/home/502433.cloudwaysapps.com/rhbymdevka/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 808
Warning: foreach() argument must be of type array|object, string given in /mnt/data/home/502433.cloudwaysapps.com/rhbymdevka/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 813
Warning: Array to string conversion in /mnt/data/home/502433.cloudwaysapps.com/rhbymdevka/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 808
Parameters Parameters
- $code
-
(Required) Message code.
Return Return
(string) Message.
Source Source
File: classes/Abstract/Upgrade/Settings.php
public function get_message( $code ) { switch ( $code ) { case 'start': $message = sprintf( __( 'Updating settings for v%s compatibility.', 'popup-maker' ), '1.7' ); break; case 'done': $message = __( 'Settings updated successfully.', 'popup-maker' ); break; default: $message = ''; break; } return $message; }
Expand full source code Collapse full source code View on Trac