mirror of
https://github.com/Piwigo/Piwigo-Social-Buttons.git
synced 2026-07-04 00:41:10 +02:00
ed7aaf8b8f
git-svn-id: http://piwigo.org/svn/extensions/SocialButtons@29781 68402e56-0260-453c-a942-63ccdbb3a9ee
14 lines
367 B
PHP
14 lines
367 B
PHP
<?php
|
|
defined('SOCIALBUTT_PATH') or die('Hacking attempt!');
|
|
|
|
function socialbutt_tumblr($basename, $root_url, &$tpl_vars, &$buttons)
|
|
{
|
|
global $conf, $template;
|
|
|
|
// config
|
|
$tpl_vars['TUMBLR'] = $conf['SocialButtons']['tumblr'];
|
|
|
|
$template->set_filename('tumblr_button', realpath(SOCIALBUTT_PATH .'template/tumblr.tpl'));
|
|
$buttons[] = 'tumblr_button';
|
|
}
|