add('name', PLUGIN_EVENT_SOCIAL_NAME); $propbag->add('description', PLUGIN_EVENT_SOCIAL_DESC); $propbag->add('stackable', false); $propbag->add('author', 'onli, Matthias Mees'); $propbag->add('version', '0.6'); $propbag->add('requirements', array( 'serendipity' => '2.0' )); $propbag->add('event_hooks', array('frontend_display:html:per_entry' => true, 'css' => true, 'frontend_footer' => true, 'frontend_header' => true)); $propbag->add('groups', array('FRONTEND_EXTERNAL_SERVICES')); $propbag->add('configuration', array('services', 'theme', 'overview', 'twitter_via', 'lang')); } function generate_content(&$title) { $title = $this->title; } function introspect_config_item($name, &$propbag) { global $serendipity; switch($name) { case 'services': $propbag->add('type', 'multiselect'); $propbag->add('name', PLUGIN_EVENT_SOCIAL_SERVICES); $propbag->add('description', PLUGIN_EVENT_SOCIAL_SERVICES_DESC); $propbag->add('default', 'twitter^facebook^googleplus'); $propbag->add('select_values', array('twitter' => 'twitter', 'facebook' => 'facebook', 'googleplus' => 'googleplus', 'linkedin' => 'linkedin', 'pinterest' => 'pinterest', 'xing' => 'xing', 'whatsapp' => 'whatsapp', 'mail' => 'mail', 'info' => 'info', 'addthis' => 'addthis', 'tumblr' => 'tumblr', 'flattr' => 'flattr', 'diaspora' => 'diaspora', 'reddit' => 'reddit', 'stumbleupon' => 'stumbleupon', 'threema' => 'threema')); break; case 'theme': $propbag->add('type', 'select'); $propbag->add('name', PLUGIN_EVENT_SOCIAL_THEME); $propbag->add('description', PLUGIN_EVENT_SOCIAL_THEME_DESC); $propbag->add('select_values', array('standard' => PLUGIN_EVENT_SOCIAL_THEME_STD, 'white' => PLUGIN_EVENT_SOCIAL_THEME_WHITE, 'grey' => PLUGIN_EVENT_SOCIAL_THEME_GREY)); $propbag->add('default', 'standard'); break; case 'overview': $propbag->add('type', 'boolean'); $propbag->add('name', PLUGIN_EVENT_SOCIAL_OVERVIEW); $propbag->add('description', PLUGIN_EVENT_SOCIAL_OVERVIEW_DESC); $propbag->add('default', true); break; case 'twitter_via': $propbag->add('type', 'string'); $propbag->add('name', PLUGIN_EVENT_SOCIAL_TWITTERVIA); $propbag->add('description', PLUGIN_EVENT_SOCIAL_TWITTERVIA_DESC); $propbag->add('default', 'none'); break; case 'lang': $propbag->add('type', 'select'); $propbag->add('name', INSTALL_LANG); $propbag->add('description', PLUGIN_EVENT_SOCIAL_LANG_DESC); $propbag->add('default', 'en'); $propbag->add('select_values', array('bg' => 'bg', 'de' => 'de', 'en' => 'en', 'es' => 'es', 'fi' => 'fi', 'hr' => 'hr', 'hu' => 'hu', 'ja' => 'ja', 'ko' => 'ko', 'no' => 'no', 'pl' => 'pl', 'pt' => 'pt', 'ro' => 'ro', 'ru' => 'ru', 'sk' => 'sk', 'sl' => 'sl', 'sr' => 'sr', 'sv' => 'sv', 'tr' => 'tr', 'zh' => 'zh')); break; } return true; } function event_hook($event, &$bag, &$eventData, $addData = null) { global $serendipity; $hooks = &$bag->get('event_hooks'); if (isset($hooks[$event])) { switch($event) { case 'frontend_display:html:per_entry': if ($serendipity['view'] != 'entry') { if (! serendipity_db_bool($this->get_config('overview', true))) { // We are in overview mode and the user opted to not show the button return true; } // when sharing on the frontpage, at least the twitter button is using the page title instead of the entry title, so we set that manually $hardcoded_title = ' data-title="' . $eventData['title'] .'"'; } $twitter_via = $this->get_config('twitter_via', 'none'); if ($twitter_via != 'none') { $twitter_via_tag = ' data-twitter-via="' . $twitter_via .'"'; } $theme = $this->get_config('theme'); $lang = $this->get_config('lang', 'en'); $services = $this->get_config('services'); $services = '"' . str_replace('^', '","', $services) . '"'; if (strpos($services, 'info') !== false) { // the info button looks strange if not at the end, hardcode that position $services = str_replace(',"info"', '', $services) . ',"info"'; } $eventData['display_dat'] = '
'; break; case 'css': $eventData .= file_get_contents(dirname(__FILE__) . '/shariff.complete.css'); break; case 'frontend_footer': // this script should go into the JS hook, but it has to be at the bottom to work, and the js hook places it at the top echo ''; break; case 'frontend_header': if ($serendipity['view'] != 'entry') { return true; } // Facebook can profit from having the og-properties set if (strpos($this->get_config('services'), 'facebook' !== false)) { // we iterate over the internal smarty object to see which entry we are printing. This is hacky and should be improved $entry = (current($eventData['smarty']->tpl_vars['entries']->value)['entries'][0]); echo '' . "\n"; echo '' . "\n"; echo '' . "\n"; echo '' . "\n"; echo '' . "\n"; echo '' . "\n"; // This is searching for the first image in an entry to use as facebook article image. // A better approach would be to register in the entry editor when an image was added if (preg_match('@' . "\n"; } else { echo '' . "\n"; } } } default: return false; } } else { return false; } } } /* vim: set sts=4 ts=4 expandtab : */ ?>