You are here

function yashare_theme in Yandex.Share 7.2

Implements hook_theme().

3 string references to 'yashare_theme'
yashare_admin_settings in ./yashare.admin.inc
Returns settings form.
yashare_element_info in ./yashare.module
Implements hook_element_info().
yashare_uninstall in ./yashare.install
Implements hook_uninstall().

File

./yashare.module, line 494

Code

function yashare_theme($existing, $type, $theme, $path) {
  return array(
    'yashare_widget_automatic' => array(
      'render element' => 'element',
      'template' => 'templates/yashare_widget_automatic',
    ),
    'yashare_widget_standard' => array(
      'render element' => 'element',
      'template' => 'templates/yashare_widget_standard',
    ),
  );
}