diff options
author | Thomas Lange <code@nerdmind.de> | 2021-06-21 02:08:59 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2021-06-21 02:08:59 +0200 |
commit | db3e19a76a2335c9cf88fb08441b35e0cc3648fc (patch) | |
tree | dc50dca355988598ba93bd695bc92e2cddb8ec06 /core/namespace/Page | |
parent | 70f366ce1d102e4712af2408e6dcf5432b1926c2 (diff) | |
download | blog-db3e19a76a2335c9cf88fb08441b35e0cc3648fc.tar.gz blog-db3e19a76a2335c9cf88fb08441b35e0cc3648fc.tar.xz blog-db3e19a76a2335c9cf88fb08441b35e0cc3648fc.zip |
Remove getURL methods from Item classes
Diffstat (limited to 'core/namespace/Page')
-rw-r--r-- | core/namespace/Page/Item.php | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/core/namespace/Page/Item.php b/core/namespace/Page/Item.php index d559b81..46545d6 100644 --- a/core/namespace/Page/Item.php +++ b/core/namespace/Page/Item.php @@ -5,17 +5,6 @@ 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 { |