You are here

function social_media_links_iconset in Social Media Links Block and Field 7

Get informations about a specific icon set.

Parameters

string $iconset: Name of the icon set.

Return value

array Informations about the icon set.

5 calls to social_media_links_iconset()
social_media_links_icon in ./social_media_links.module
Get the path of a platform icon.
social_media_links_path_elegantthemes in ./social_media_links.iconsets.inc
Callback with the informations about the elegantthemes icon set.
social_media_links_path_nouveller in ./social_media_links.iconsets.inc
Callback with the informations about the nouveller icon set.
social_media_links_path_themeid in ./social_media_links.iconsets.inc
Callback with the informations about the themeiD icon set.
social_media_links_path_webtoolkit in ./social_media_links.iconsets.inc
Callback with the informations about the themeiD icon set.

File

./social_media_links.module, line 446
Functions for the Social Media Links module.

Code

function social_media_links_iconset($iconset) {
  $sets = social_media_links_iconsets();
  return isset($sets[$iconset]) ? $sets[$iconset] : FALSE;
}