I'm learning OOP and found the magic constants, but while reviewing some example code I've found instances of the '__' that don't make sense and I can't find it in the documentation. Here's some examples taken from different classes:
$_POST['notice'] = __('Settings Saved', 'regplus');
$title = __('Categories');
if ( !current_user_can('manage_categories') )
wp_die(__('Cheatin’ uh?'));
wp_mail($user_email, sprintf(__('[%s] Verify Account Link', 'regplus'), get_option('blogname')), $message);
If this code is part of the construct() or destruct(), then I'm afraid I don't understand it. Would someone please provide an explanation or a link to the PHP5 documentation to which this applies?
Thanks