2004-03-25 08:05:52 +01:00
|
|
|
<?php
|
2008-09-27 11:55:32 +02:00
|
|
|
/**
|
|
|
|
* @package Hello_Dolly
|
2019-03-18 18:19:50 +01:00
|
|
|
* @version 1.7.2
|
2008-09-27 11:55:32 +02:00
|
|
|
*/
|
2004-03-25 08:05:52 +01:00
|
|
|
/*
|
|
|
|
Plugin Name: Hello Dolly
|
2013-05-22 23:08:40 +02:00
|
|
|
Plugin URI: http://wordpress.org/plugins/hello-dolly/
|
2005-08-07 12:30:53 +02:00
|
|
|
Description: This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong: Hello, Dolly. When activated you will randomly see a lyric from <cite>Hello, Dolly</cite> in the upper right of your admin screen on every page.
|
2004-03-25 08:05:52 +01:00
|
|
|
Author: Matt Mullenweg
|
2019-03-18 18:19:50 +01:00
|
|
|
Version: 1.7.2
|
2008-06-17 00:30:46 +02:00
|
|
|
Author URI: http://ma.tt/
|
2007-09-04 01:32:58 +02:00
|
|
|
*/
|
2004-03-25 08:05:52 +01:00
|
|
|
|
2008-11-14 18:52:38 +01:00
|
|
|
function hello_dolly_get_lyric() {
|
|
|
|
/** These are the lyrics to Hello Dolly */
|
|
|
|
$lyrics = "Hello, Dolly
|
2004-05-22 10:45:36 +02:00
|
|
|
Well, hello, Dolly
|
|
|
|
It's so nice to have you back where you belong
|
|
|
|
You're lookin' swell, Dolly
|
|
|
|
I can tell, Dolly
|
|
|
|
You're still glowin', you're still crowin'
|
|
|
|
You're still goin' strong
|
2018-03-17 21:23:32 +01:00
|
|
|
I feel the room swayin'
|
2004-05-22 10:45:36 +02:00
|
|
|
While the band's playin'
|
2018-03-17 21:23:32 +01:00
|
|
|
One of our old favorite songs from way back when
|
2004-05-22 10:45:36 +02:00
|
|
|
So, take her wrap, fellas
|
2019-03-18 18:19:50 +01:00
|
|
|
Dolly, never go away again
|
2004-05-22 10:45:36 +02:00
|
|
|
Hello, Dolly
|
|
|
|
Well, hello, Dolly
|
|
|
|
It's so nice to have you back where you belong
|
|
|
|
You're lookin' swell, Dolly
|
|
|
|
I can tell, Dolly
|
|
|
|
You're still glowin', you're still crowin'
|
|
|
|
You're still goin' strong
|
2018-03-17 21:23:32 +01:00
|
|
|
I feel the room swayin'
|
2004-05-22 10:45:36 +02:00
|
|
|
While the band's playin'
|
2018-03-17 21:23:32 +01:00
|
|
|
One of our old favorite songs from way back when
|
|
|
|
So, golly, gee, fellas
|
|
|
|
Have a little faith in me, fellas
|
|
|
|
Dolly, never go away
|
|
|
|
Promise, you'll never go away
|
2004-05-22 10:45:36 +02:00
|
|
|
Dolly'll never go away again";
|
|
|
|
|
2019-03-18 18:19:50 +01:00
|
|
|
// Here we split it into lines.
|
2010-11-10 13:43:04 +01:00
|
|
|
$lyrics = explode( "\n", $lyrics );
|
2008-11-14 18:52:38 +01:00
|
|
|
|
2019-03-18 18:19:50 +01:00
|
|
|
// And then randomly choose a line.
|
2010-11-10 13:43:04 +01:00
|
|
|
return wptexturize( $lyrics[ mt_rand( 0, count( $lyrics ) - 1 ) ] );
|
2008-11-14 18:52:38 +01:00
|
|
|
}
|
2004-05-22 10:45:36 +02:00
|
|
|
|
2019-03-18 18:19:50 +01:00
|
|
|
// This just echoes the chosen line, we'll position it later.
|
2004-03-25 08:05:52 +01:00
|
|
|
function hello_dolly() {
|
2008-11-14 18:52:38 +01:00
|
|
|
$chosen = hello_dolly_get_lyric();
|
2019-03-18 18:19:50 +01:00
|
|
|
$lang = '';
|
|
|
|
if ( 'en_' !== substr( get_user_locale(), 0, 3 ) ) {
|
|
|
|
$lang = ' lang="en"';
|
|
|
|
}
|
|
|
|
|
|
|
|
printf(
|
|
|
|
'<p id="dolly"><span class="screen-reader-text">%s </span><span dir="ltr"%s>%s</span></p>',
|
|
|
|
__( 'Quote from Hello Dolly song, by Jerry Herman:' ),
|
|
|
|
$lang,
|
|
|
|
$chosen
|
|
|
|
);
|
2004-03-25 08:05:52 +01:00
|
|
|
}
|
2004-05-22 10:45:36 +02:00
|
|
|
|
2019-03-18 18:19:50 +01:00
|
|
|
// Now we set that function up to execute when the admin_notices action is called.
|
2010-11-10 13:43:04 +01:00
|
|
|
add_action( 'admin_notices', 'hello_dolly' );
|
2004-05-22 10:45:36 +02:00
|
|
|
|
2019-03-18 18:19:50 +01:00
|
|
|
// We need some CSS to position the paragraph.
|
2004-05-22 10:45:36 +02:00
|
|
|
function dolly_css() {
|
|
|
|
echo "
|
|
|
|
<style type='text/css'>
|
|
|
|
#dolly {
|
2019-03-18 18:19:50 +01:00
|
|
|
float: right;
|
|
|
|
padding: 5px 10px;
|
2008-02-16 16:07:31 +01:00
|
|
|
margin: 0;
|
2019-03-18 18:19:50 +01:00
|
|
|
font-size: 12px;
|
|
|
|
line-height: 1.6666;
|
|
|
|
}
|
|
|
|
.rtl #dolly {
|
|
|
|
float: left;
|
2004-05-22 10:45:36 +02:00
|
|
|
}
|
2018-12-17 04:08:46 +01:00
|
|
|
.block-editor-page #dolly {
|
|
|
|
display: none;
|
|
|
|
}
|
2019-03-18 18:19:50 +01:00
|
|
|
@media screen and (max-width: 782px) {
|
|
|
|
#dolly,
|
|
|
|
.rtl #dolly {
|
|
|
|
float: none;
|
|
|
|
padding-left: 0;
|
|
|
|
padding-right: 0;
|
|
|
|
}
|
|
|
|
}
|
2004-05-22 10:45:36 +02:00
|
|
|
</style>
|
|
|
|
";
|
|
|
|
}
|
|
|
|
|
2010-11-10 13:43:04 +01:00
|
|
|
add_action( 'admin_head', 'dolly_css' );
|