Categories
English Wordpress

How add options to your WordPress 2.7 dashboard widgets

Well, in this article, I assume you have read the WP Engineer’s excellent post Add WordPress Dashboard Widgets, because his code will be our start point.

So, we have this code:


// Load up the localization file if we're using WordPress in a different language
// Place it in this plugin's folder and name it "MainFunction-[value in wp-config].mo"
load_plugin_textdomain( 'MainFunction', '/wp-content/plugins/MainFunction' );

/**
 * Content of Dashboard-Widget
 */
function MainFunction() {
	echo 'Test Add Dashboard-Widget';
}
 
/**
 * add Dashboard Widget via function wp_add_dashboard_widget()
 */
function MainFunction_Init() {
	wp_add_dashboard_widget( 'MainFunction', __( 'MainFunction Widget Title' ), 'MainFunction' );
}
 
/**
 * use hook, to integrate new widget
 */
add_action('wp_dashboard_setup', 'MainFunction_Init');

OK, now, remenber the wp_add_dashboard_widget function?

function wp_add_dashboard_widget( $widget_id, $widget_name, $callback, $control_callback = null )

The $control_callback parameter (obviously optional) is our main target. It gives the ‘Configure’ option to our spiffy widget.
So, we need to add a 4th parameter to wp_add_dashboard_widget:

wp_add_dashboard_widget( 'MainFunction', __( 'MainFunction Widget Title' ), 'MainFunction', 'MainFunction_Setup');

The MainFunction_Setup function handles two things: the options (set the default options, recolect new values, etc) and the option’s presentation (i.e. the HTML part)

So, here goes the code:


function MainFunction_Options() {
	$defaults = array( 'items' => 5, 'boolean' => 1);
	if ( ( !$options = get_option( 'MainFunction' ) ) || !is_array($options) )
		$options = array();
	return array_merge( $defaults, $options );
}

function MainFunction_Setup() {

	$options = MainFunction_Options();


	if ( 'post' == strtolower($_SERVER['REQUEST_METHOD']) && isset( $_POST['widget_id'] ) && 'MainFunction' == $_POST['widget_id'] ) {
		foreach ( array( 'items', 'boolean' ) as $key )
				$options[$key] = $_POST[$key];
		update_option( 'MainFunction', $options );
	}
		
?>
	

As you can see, MainFunction_Options puts the default values (if necessary, of course) and MainFunction_Setup show the current values and let change them. You can merge this two, of course...

Now, we have to get the options and use them in our MainFunction function. Change MainFunction like that:

/**
 * Content of Dashboard-Widget
 */
function MainFunction() {

        $widget_options = MainFunction_Options();

	echo 'Test Add Dashboard-Widget
'; echo "You have selected $widget_options['items'] items
"; echo "boolean is $widget_options['boolean']
"; }

The complete code here:

';
	echo "You have selected $widget_options['items'] items
"; echo "boolean is $widget_options['boolean']
"; } /** * add Dashboard Widget via function wp_add_dashboard_widget() */ function MainFunction_Init() { wp_add_dashboard_widget( 'MainFunction', __( 'MainFunction Widget Title' ), 'MainFunction' , 'MainFunction_Setup' ); } function MainFunction_Options() { $defaults = array( 'items' => 5, 'boolean' => 1); if ( ( !$options = get_option( 'MainFunction' ) ) || !is_array($options) ) $options = array(); return array_merge( $defaults, $options ); } function MainFunction_Setup() { $options = MainFunction_Options(); if ( 'post' == strtolower($_SERVER['REQUEST_METHOD']) && isset( $_POST['widget_id'] ) && 'MainFunction' == $_POST['widget_id'] ) { foreach ( array( 'items', 'boolean' ) as $key ) $options[$key] = $_POST[$key]; update_option( 'MainFunction', $options ); } ?>

You can view a PHPS version (without PHP crippled tags) here.

536 replies on “How add options to your WordPress 2.7 dashboard widgets”

I was extremely pleased to find this website. I wanted to thank you for ones
time for this wonderful read!! I definitely appreciated every part of it and
i also have you saved to fav to look at new stuff in your site.

Hello, i read your blog from time to time and i own a similar one and i was just
curious if you get a lot of spam responses? If so how do you protect against it,
any plugin or anything you can advise? I get so much lately it’s driving me insane so any help is very much
appreciated.

Here is my page :: store.enviotech.com.bd

You are so cool! I don’t think I have read through anything like
that before. So nice to discover someone with a few genuine thoughts on this topic.
Seriously.. thanks for starting this up.
This site is something that’s needed on the internet,
someone with a bit of originality!

With havin so much content and articles do you
ever run into any problems of plagorism or copyright infringement?
My site has a lot of unique content I’ve either created myself or outsourced but it looks like a lot of it is popping it up all over the
internet without my authorization. Do you know any techniques to help
reduce content from being ripped off? I’d really appreciate it.

I’m not sure why but this blog is loading incredibly slow
for me. Is anyone else having this problem or is it a problem on my end?
I’ll check back later and see if the problem still
exists.

My web-site royaltooba.com

I always used to read piece of writing in news papers but now as I am a user of web therefore from now I am using net for content, thanks to web.

Look at my web site :: Lurlene

Thanks a ton for being my instructor on this area. My partner and i enjoyed your
own article a lot and most of all preferred how you really handled the aspect
I regarded as being controversial. You’re always really kind to
readers much like me and assist me in my existence.
Thank you.

Feel free to surf to my web page http://www.avianoslist.com

A lot of thanks for your whole efforts on this website.
My niece really loves managing investigations and it’s really easy to understand why.
Most of us learn all about the dynamic way you give invaluable
suggestions via this web blog and even foster response from other people on the content so our own child is becoming educated so much.
Enjoy the rest of the year. You are carrying out a splendid job.

My web page – forum.nobletronics.com

I visited multiple websites however the audio quality for audio songs present at this web page is genuinely wonderful.

Hey there! I know this is somewhat off topic but I was
wondering if you knew where I could find a captcha
plugin for my comment form? I’m using the same blog platform as yours and I’m
having trouble finding one? Thanks a lot!

Also visit my site mlmfamily.com

My programmer is trying to convince me to move to
.net from PHP. I have always disliked the
idea because of the expenses. But he’s tryiong none the less.
I’ve been using Movable-type on various websites for about a year and
am worried about switching to another platform.
I have heard excellent things about blogengine.net.
Is there a way I can import all my wordpress content into
it? Any help would be really appreciated!

Feel free to visit my webpage … http://www.fivedollarclassifieds.com

My programmer is trying to convince me to move
to .net from PHP. I have always disliked the idea because of the
costs. But he’s tryiong none the less. I’ve been using WordPress on a variety of
websites for about a year and am anxious about switching to another platform.
I have heard great things about blogengine.net.
Is there a way I can import all my wordpress posts into it?

Any help would be really appreciated!

my webpage … http://www.theezentrepreneur.com

Thanks for sharing superb informations. Your web-site is so cool.
I’m impressed by the details that you’ve on this web site.

It reveals how nicely you understand this subject.
Bookmarked this website page, will come back for more articles.
You, my friend, ROCK! I found simply the information I already searched all over the
place and just could not come across. What a great web-site.

Here is my web-site – Florencia

First off I want to say awesome blog! I had a quick question which
I’d like to ask if you don’t mind. I was interested to find
out how you center yourself and clear your head prior to writing.
I’ve had a difficult time clearing my mind in getting my thoughts out.
I do take pleasure in writing however it just seems like the first 10 to
15 minutes are usually wasted just trying to figure out how to begin. Any ideas or hints?
Cheers!

my web page – http://www.viralclassifiedads.com/

Hiya, I’m really glad I’ve found this information. Today bloggers publish just about gossips and internet and this is really irritating.
A good site with exciting content, that’s what I need. Thanks for keeping this
web site, I will be visiting it. Do you do newsletters?
Can’t find it.

Also visit my web-site kebe.top

I have been exploring for a little for any high-quality articles or blog posts in this
kind of house . Exploring in Yahoo I ultimately stumbled upon this website.
Reading this info So i am happy to convey that I’ve an incredibly just right
uncanny feeling I came upon just what I needed.
I so much surely will make sure to do not put out of
your mind this site and provides it a look on a relentless basis.

Here is my website riyapola.com

Comments are closed.