silverstripe-googlesitemaps/src/Sitemapable.php

15 lines
194 B
PHP
Raw Normal View History

2023-10-27 22:23:54 +02:00
<?php
namespace Wilr\GoogleSitemaps;
interface Sitemapable
{
/**
* Return the absolute URL for this object
*
* @return string
*/
public function AbsoluteLink();
}