* * This file is part of the ElggPG plugin for Elgg. * * ElggPG is free software: you can redistribute it and/or modify it * under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * ElggPG is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public * License along with this program. If not, see * . */ $fingerprint = elgg_extract('value', $vars); // @todo Add access to fingerprint metadata $entity = elgg_get_page_owner_entity(); if (elgg_instanceof($entity, 'user') && ($entity->isFriend() || $entity->guid == elgg_get_logged_in_user_guid() || elgg_is_admin_logged_in())) { $output = ''; for ($i=0; $i substr($output, 0, 4 * 4 + 4), 'href' => 'elggpg/owner/' .elgg_get_page_owner_entity()->username, 'title' => $output, )); } else { echo $output; } } else { echo elgg_echo('access:limited:label'); }