<?php /** * Elgg GUID Tool * * @package ElggGUIDTool * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2 * @author Curverider Ltd * @copyright Curverider Ltd 2008 * @link http://elgg.com/ */ if ($vars['full']) { echo elgg_view("guidtool/profile",$vars); } else { if (get_input('search_viewtype') == "gallery") { echo elgg_view('guidtool/gallery',$vars); } else { echo elgg_view("guidtool/listing",$vars); } } ?>