aboutsummaryrefslogtreecommitdiffstats
path: root/core/namespace/Page/Item.php
blob: c6cece7ae5292ce38f53767c8f5cc9e1b8a4c598 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
namespace Page;

class Item extends \Item {
	const CONFIGURATION = 'PAGE';

	#===============================================================================
	# Return absolute page URL
	#===============================================================================
	public function getURL(): string {
		if(\Application::get('PAGE.SLUG_URLS')) {
			return \Application::getPageURL("{$this->Attribute->get('slug')}/");
		}

		return \Application::getPageURL("{$this->Attribute->get('id')}/");
	}

	#===============================================================================
	# Return unique pseudo GUID
	#===============================================================================
	public function getGUID(): string {
		foreach(\Application::get('PAGE.FEED_GUID') as $attribute) {
			$attributes[] = $this->Attribute->get($attribute);
		}

		return sha1(implode(NULL, $attributes));
	}
}
?>