Skip to content
Snippets Groups Projects
Select Git revision
  • c57e87eee41111248b11537997e8c5799681ebc0
  • master default
  • develop
  • git-fixes
  • 4.1_templates-symlink
  • 4.0_templates
6 results

index.php

Blame
  • user avatar
    Eric Rasmussen authored
    hey, we got the globe showing on the globe page.  the skeleton of the globe plugin is done, now adding the icons and such
    5b07aeb6
    History
    index.php 549 B
    <?php
    	/**
    	 * Elgg globe plugin
    	 * 
    	 * @package ElggGlobe
    	 * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
    	 * @author Eric Rasmussen
    	 * @copyright UNL 2009
    	 * @link http://planetred.unl.edu/
    	 */
    
    	require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
    	
    	gatekeeper();
    	
    	// Get view
    	$area1 = elgg_view('globe/content', array());
    
    	// Format
    	$body = elgg_view_layout('one_column', $area1);
    	
    
    
    	// Draw page
    	echo page_draw(elgg_echo(' Put Yourself On The Map'), $body);
    	
    ?>