I have compiled a new iconset package with brilliant free 256x256px images from Nordic Factory: glossy_shade. You may currently download it from here.
Just copy the "glossy_shade" folder into the module's "iconsets" directory. To display a flag image, you could use a code similar like this, for example in your theme's "node.tpl.php" file:
$my_countrycode_alpha2_lc = 'at';
if ($my_countrycode_alpha2_lc == 'uk') {
$my_countrycode_alpha2_lc = 'gb';
}
$my_countrycode_alpha2 = strtoupper($my_countrycode_alpha2_lc);
if (module_exists('countryicons')) {
print theme_countryicons_icon($my_countrycode_alpha2_lc, 'glossy_shade', $my_countrycode_alpha2, $my_countrycode_alpha2);
}
mrfelton, what do you think? Maybe you can provide it as an add-on package directly from your project page?
Comments
Comment #1
mrfelton commentedroball: I think those icons are great. and I'll try to get those included when I get a moment.
Comment #2
mrfelton commentedI have added these to the main distribution. Thank you very much.
- Tom
Comment #3
roball commentedThanks for "officially" including the iconset! Since it is now available in the 6.x-1.x-dev version of the Country Icons module, I have removed the package from the download location linked to in my original post above.