You are here

function _shariff_supported_languages in Shariff Social Media Buttons 7

Same name and namespace in other branches
  1. 8 shariff.module \_shariff_supported_languages()

Helper function to list the supported languages.

2 calls to _shariff_supported_languages()
shariff_sharing_buttons_content_type_render in plugins/content_types/sharing_buttons.inc
Output function for the 'shariff_buttons' content type.
_shariff_get_settings in ./shariff.module
Helper function to get the module settings.

File

./shariff.module, line 624
Integrating Shariff library, providing settings form and block.

Code

function _shariff_supported_languages() {
  return array(
    'bg',
    'de',
    'en',
    'es',
    'fi',
    'hr',
    'hu',
    'ja',
    'ko',
    'no',
    'pl',
    'pt',
    'ro',
    'ru',
    'sk',
    'sl',
    'sr',
    'sv',
    'tr',
    'zh',
  );
}