Widgets
"; var_dump($a->argv); die(); if ($a->argv[2]=="cb"){ switch($a->argv[1]) { case 'friends': widget_friends_content($a, $o, $conf); break; } } else { if (isset($_GET['p'])) { $o .= ""; $o .= "Preview Widget
"; $o .= ''. t("Plugin Settings") .''; $o .= "
"; $o .= "
Copy and paste this code
" .htmlspecialchars('') ."
"; return $o; } } echo $o; killme(); } function widget_friends_content(&$a, &$o, $conf){ if (!local_user()){ if (!isset($_GET['s'])) header('HTTP/1.0 400 Bad Request'); if (substr($_GET['s'],0,strlen($conf['site'])) !== $conf['site']) header('HTTP/1.0 400 Bad Request'); } $r = q("SELECT `profile`.`uid` AS `profile_uid`, `profile`.* , `user`.* FROM `profile` LEFT JOIN `user` ON `profile`.`uid` = `user`.`uid` WHERE `user`.`uid` = %s AND `profile`.`is-default` = 1 LIMIT 1", intval($conf['uid']) ); if(!count($r)) return; $a->profile = $r[0]; $o .= ""; $o .= _abs_url(contact_block()); $o .= "profile['nickname']."'>". t('Connect on Friendika!') .""; } ?>