<?php namespace Craft;

class SimpleSitemapPlugin extends BasePlugin
{
	public function getName()
	{
		return 'Simple Sitemap';
	}

	public function getVersion()
	{
		return '1.1.0';
	}

	public function getDeveloper()
	{
		return 'XO Digital';
	}

	public function getDeveloperUrl()
	{
		return 'http://xodigital.com.au';
	}

	public function registerSiteRoutes()
	{
		return array(
			'sitemap.xml' => array('action' => 'simpleSitemap/index'),
		);
	}
}
