⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.45
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
shopware
/
vendor
/
shopware
/
storefront
/
Page
/
View File Name :
Page.php
<?php declare(strict_types=1); namespace Shopware\Storefront\Page; use Shopware\Core\Checkout\Payment\PaymentMethodCollection; use Shopware\Core\Checkout\Shipping\ShippingMethodCollection; use Shopware\Core\Framework\Log\Package; use Shopware\Core\Framework\Struct\Struct; use Shopware\Storefront\Pagelet\Footer\FooterPagelet; use Shopware\Storefront\Pagelet\Header\HeaderPagelet; #[Package('storefront')] class Page extends Struct { /** * @var HeaderPagelet|null */ protected $header; /** * @var FooterPagelet|null */ protected $footer; /** * @var ShippingMethodCollection */ protected $salesChannelShippingMethods; /** * @var PaymentMethodCollection */ protected $salesChannelPaymentMethods; /** * @var MetaInformation */ protected $metaInformation; public function getHeader(): ?HeaderPagelet { return $this->header; } public function setHeader(?HeaderPagelet $header): void { $this->header = $header; } public function getFooter(): ?FooterPagelet { return $this->footer; } public function setFooter(?FooterPagelet $footer): void { $this->footer = $footer; } public function getSalesChannelShippingMethods(): ?ShippingMethodCollection { return $this->salesChannelShippingMethods; } public function setSalesChannelShippingMethods(ShippingMethodCollection $salesChannelShippingMethods): void { $this->salesChannelShippingMethods = $salesChannelShippingMethods; } public function getSalesChannelPaymentMethods(): ?PaymentMethodCollection { return $this->salesChannelPaymentMethods; } public function setSalesChannelPaymentMethods(PaymentMethodCollection $salesChannelPaymentMethods): void { $this->salesChannelPaymentMethods = $salesChannelPaymentMethods; } public function getMetaInformation(): ?MetaInformation { return $this->metaInformation; } public function setMetaInformation(MetaInformation $metaInformation): void { $this->metaInformation = $metaInformation; } }