Use the coupon code WORDPRESS and save 30% OFF! Buy Now

Extending the Socials Ignited plugin – part 2

Last Updated On
Extending the Socials Ignited plugin – part 2 WordPress template

Following the first part of the tutorial, you should now have added a new service and a round dark icon for it. Depending on the icon you have created, your list should look something like this:

I’m not famous for my icon design skills, but hey, it serves its purpose for this tutorial…

Note that AnastisBook originally appeared on the bottom of the screen, but I rearranged it by drag-and-drop. Here is a screenshot of the widget in action (featuring our latest theme, Mozzy):

Yeah, that’s it. I made the icons darker so that readers would know which ones I’ve added. Sounds legit ;)

Adding new icon sets

Adding new sets of icons is quire easy really. The process is more or less the same, as with adding any other additional icons, just a few lines of code more. There are some issues that you need to consider (that also apply when adding individual icons) which I will mention at the end of the tutorial, but as long as you have consistent icons sets, you’ll be fine.

Anyway, I decided to create a textual icon set for this tutorial, in color (default) and in greyscale, each available in one size, 32×32. The first step, is to create the folder structure that the icons will be stored. Inside the my-socials-ignited/images/ folder, I created a folder named text. Inside the text folder, I created a folder named default and another one named greyscale. Inside each of those two folders, I created a folder named 32 and within these folders I placed the icons I prepared.

What the Textual icons structure looks like

You might have noticed that I’m including an icon for the imaginary AnastisBook social website (service), as I’m still extending code from the previous part of the tutorial. If you don’t need custom services, you can just skip the my_icons_add_services() function, hooked on the cisiw_services filter.

The first thing you absolutely need, is let Socials Ignited know of any new paths to look for icons. We did this previously with the my_icons_lookup_paths() functions hooked on the cisiw_lookup_paths filter, so make sure you have that in your code.

The icon set information array

Then, we need to let the plugin know of our new icon set. We need to pass a structured array containing information about our set, by hooking onto the cisiw_icon_sets filter. Let’s take a look on how the array should be formed:

$my_sets = array(
// First level is the set's name.
'text' => array(
// Second level are the available variations
'default' => array(
// Third level are the available sizes for the specific variation.
// If we had more sizes, the next line would be like
// '32', '48', '64'
'32'
),
'greyscale' => array( '32' )
)
);

Not really complicated, right? If you did kept your promise to have an understanding of PHP’s arrays, then the above shouldn’t make you sweat. $my_sets is just an array of key-value pairs. The key is the icon set’s slug, i.e. the same name as the folder inside the /images/ folder, and the value is an array of variations. If needed, you can have multiple sets defined in the $my_sets array by just adding more key-value pairs.

Now, the set’s value as mentioned before, is an array of variations. It’s a key-value array itself as well, where the key is the variation’s slug, and the value is an array of sizes. The variation’s key must (once again) match the folder name within the icon set’s folder, i.e. default and greyscale.

Finally, the sizes array is a simple array of strings, that (again) match the folder names of the available sizes.

Now, we need to merge the $my_sets array with the Socials Igniter array that holds all registered icon sets. This can be done by hooking onto the cisiw_icon_sets filter, which passes us the registration array.

add_filter('cisiw_icon_sets', 'my_icons_sets');

function my_icons_sets($sets) {
$my_sets = array(
// First level is the set's name.
'text' => array(
// Second level are the available variations
'default' => array(
// Third level are the available sizes for the specific variation.
// If we had more sizes, the next line would be like
// '32', '48', '64'
'32'
),
'greyscale' => array( '32' )
)
);

$sets = array_merge($sets, $my_sets);
return $sets;
}

Here, $sets holds the registered icon sets. We could have added our set’s info directly to the $sets array, and we could also unset() some sets if we wanted to. In essense, $my_sets is a subset of $sets and the indirect merging of the two is what I consider best practice. You can do it in any way you want, as long as you return a well formed array (structured like $my_sets above).

The labels array

The structured information array we added above is the most critical and complex piece of information that Socials Igniter need in order to know what icons we have available to show. It’s not the only piece of information though.

If you were in hurry to try out your new set, you should probably saw something like this:

Screenshot of what your screen will look like if you are not patient enough

That’s because you need to let Socials Ignited know of a label for your icon set. I mean, text might suggest something, but Textual would be a better word for the set, don’t you agree? Plus, what about your Bulgarian users? You should take care of translating it to текст, right?

So, how do you provide a label for your set? Easy peasy. Like everything, there is a filter for that. It’s named cisiw_icon_set_names and it passes a key-value array, where the key is the icon set’s slug and the value is the actual label. You’ve seen the pattern before, so I’ll just let the code talk for itself.

add_filter('cisiw_icon_set_names', 'my_icons_set_names');

function my_icons_set_names($names) {
$my_names = array(
'text' => 'Textual'
);

$names = array_merge($names, $my_names);
return $names;
}

And a translatable version of it:

add_filter('cisiw_icon_set_names', 'my_icons_set_names');

function my_icons_set_names($names) {
$my_names = array(
'text' => _x('Textual', 'icons set name', 'plugin_domain')
);

$names = array_merge($names, $my_names);
return $names;
}

Of course, you could have added more entries if you had more sets, or even change the label of a set but manipulating the $names array before the merge. For example, to rename the round set’s label from Round to Circle:

$names['round'] = _x('Circle', 'icons set name', 'plugin_domain');

That should be it. If you refresh your Socials Ignited settings page and/or the widget, you should see the icon set available for your use, without any warnings. Note that on the screenshot I rearranged the social networks.

That’s what you should see if you did things right

See that # that I’ve entered on some of the social networks? It can be used as a dummy URL, pointing to the top of the current page, so, no tricks here. Instead of actually entering my URLs, I just used that legitimate value.

And this is the actual output of the plugin. Note how AddThis and Apple have a URL, but since there are no icons for them, are completely omitted.

You wouldn’t hire me for icon design, would you? Thankfully we have Helen for that.

Common issues

You might have noticed how the settings screen is able to only preview one color variation out of each icon’s set. The variation used is the first one defined for each set, so, in the Textual icons’ case, the default was used. If I swapped their declaration order in the array, then the greyscale would have been used for the preview. This may lead to substantial confusion, especially if the variations have inconsistent icon completeness. For example, you might have a Textual Apple icon for greyscale, but not a colored one, so there would be no icon to show in the settings screen. The best solution for that is to always be consistent with your icons coverage. All variations and sizes combinations should have the same icons present. If not possible, you’d better leave out some variations or sizes completely.

Similarly, the first size defined (of the first color variation) is the one used for previewing. But the settings screen will stretch/squeeze the icon to 32×32 no matter what, so don’t scratch your head if you see something you don’t like. You can either leave it as is, or just place first the closest matching size (if you have multiple sizes of course).

Internationalization

There are two instances where internationalization may be applicable. On the social website name and on the icons set name. In particular, the following two pieces of code can be modified from:

$my_services = array(
'anastisbook' => 'AnastisBook'
);

$my_names = array(
'text' => 'Textual'
);

to:

$my_services = array(
'anastisbook' => _x('AnastisBook', 'website name', 'mycisiw')
);

$my_names = array(
'text' => _x('Textual', 'icons set name', 'mycisiw')
);

While I previously used plugin_domain as the gettext domain, I’m changing it to mycisiw as I think is more appropriate.

Now, we need a folder where we will be storing our language files (we don’t want them scattered all around, do we?), let’s call it languages, and a line of code that loads the translation files.

At the very top of your my-socials-ignited.php file, right after the Plugin information header, add this line:

load_plugin_textdomain('mycisiw', false, dirname(plugin_basename(__FILE__)).'/languages/');

So the top of your file should now be looking like this:

<?php
/*
Plugin Name: My Icons for Socials Ignited
Description: My own icons for the CSSIgniter's Socials Ignited widget
Version: 1.0
License: GPL
Plugin URI: http://www.mydomain.com/my-socials-ignited-icons
Author: Me, myself and I
Author URI: http://www.mydomain.com/
*/
?>
<?php
load_plugin_textdomain('mycisiw', false, dirname(plugin_basename(__FILE__)).'/languages/');

Note how the first parameter, mycisiw matches the domain that we replaced on the labels before. And also note that /languages/ strings that should match the folder created. You can change both of these, as long as you are consistent with your changes.

Now, all you need to do, is generate you .pot or .po or .mo files and place them in the languages folder. If you are interested to learn more about creating language files, you can check-out the WordPress – Poedit: Translation Secrets post that I’ve written.

Putting it all together

All in all, you should have end up with one .php file and two folders, one for the images and one for the languages.

Your my-socials-ignited.php file should be looking something like this by now:

<?php
/*
Plugin Name: My Icons for Socials Ignited
Description: My own icons for the CSSIgniter's Socials Ignited widget
Version: 1.0
License: GPL
Plugin URI: http://www.mydomain.com/my-socials-ignited-icons
Author: Me, myself and I
Author URI: http://www.mydomain.com/
*/
?>
<?php
load_plugin_textdomain('mycisiw', false, dirname(plugin_basename(__FILE__)).'/languages/');

add_filter('cisiw_services', 'my_icons_add_services');
function my_icons_add_services($services) {
$my_services = array(
'anastisbook' => _x('AnastisBook', 'website name', 'mycisiw')
);

$services = array_merge($services, $my_services);
return $services;
}

add_filter('cisiw_icon_sets', 'my_icons_sets');
function my_icons_sets($sets) {
$my_sets = array(
// First level is the set's name.
'text' => array(
// Second level are the available variations
'default' => array(
// Third level are the available sizes for the specific variation.
// If we had more sizes, the next line would be like
// '32', '48', '64'
'32'
),
'greyscale' => array( '32' )
)
);

$sets = array_merge($sets, $my_sets);
return $sets;
}

add_filter('cisiw_icon_set_names', 'my_icons_set_names');
function my_icons_set_names($names) {
$my_names = array(
'text' => _x('Textual', 'icons set name', 'mycisiw')
);

$names = array_merge($names, $my_names);
return $names;
}

add_filter('cisiw_lookup_paths', 'my_icons_lookup_paths');
function my_icons_lookup_paths($paths) {
$paths['dir'][] = plugin_dir_path( __FILE__ );
$paths['url'][] = plugin_dir_url( __FILE__ );

return $paths;
}

?>

You can get the whole plugin, including the icons used in this tutorial and sample language files, by downloading the my-socials-ignited tutorial files.

I hope you enjoyed reading this tutorial as much I enjoyed writing it. Please let me know of your thoughts, in the comments section below.

Leave a Reply

Your email address will not be published. Required fields are marked *

Get access to all WordPress themes & plugins

24/7 Support Included. Join 115,000+ satisfied customers.

Pricing & Sign Up

30-day money-back guarantee. Not satisfied? Your money back, no questions asked.

Back to top