You are here

function sharemessage_get_sharewidget_options in Share Message 7

Getter for the widget format options.

@todo add all available styles here.

Return value

array The available styles indexed by html class used by addthis.

2 calls to sharemessage_get_sharewidget_options()
sharemessage_addthis_settings in ./sharemessage.module
Implements hook_sytem_settings().
sharemessage_form in ./sharemessage.module
Share message form.

File

./sharemessage.module, line 644
New Sharing Module.

Code

function sharemessage_get_sharewidget_options() {
  return array(
    'addthis_16x16_style' => '16x16 pix',
    'addthis_32x32_style' => '32x32 pix',
    'addthis_counter_style' => 'Vertical floated with counters',
  );
}