update grav et plugin

This commit is contained in:
2020-09-08 11:32:48 +02:00
parent 7435174adc
commit 72aae1eb2d
274 changed files with 11935 additions and 4906 deletions
@@ -0,0 +1,29 @@
<?php
namespace Grav\Plugin\Sitemap;
class SitemapEntry
{
public $location;
public $lastmod;
public $changefreq;
public $priority;
public $image;
/**
* SitemapEntry constructor.
*
* @param null $location
* @param null $lastmod
* @param null $changefreq
* @param null $priority
* @param null $image
*/
public function __construct($location = null, $lastmod = null, $changefreq = null, $priority = null, $image = null)
{
$this->location = $location;
$this->lastmod = $lastmod;
$this->changefreq = $changefreq;
$this->priority = $priority;
$this->image = $image;
}
}