b374k
m1n1 1.01
Apache/2.4.41 (Ubuntu)
Linux vmi616275.contaboserver.net 5.4.0-84-generic #94-Ubuntu SMP Thu Aug 26 20:27:37 UTC 2021 x86_64
uid=33(www-data) gid=33(www-data) groups=33(www-data)
server ip : 62.171.164.128 | your ip : 127.0.0.1
safemode OFF
 >  / home / Mirasvit / SearchLanding / Model /
Filename/home/Mirasvit/SearchLanding/Model/Page.php
Size3.28 kb
Permissionrw-r--r--
Ownerroot : root
Create time01-Jul-2024 20:52
Last modified06-Apr-2021 18:06
Last accessed22-Aug-2025 21:50
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
<?php
/**
* Mirasvit
*
* This source file is subject to the Mirasvit Software License, which is available at https://mirasvit.com/license/.
* Do not edit or add to this file if you wish to upgrade the to newer versions in the future.
* If you wish to customize this module for your needs.
* Please refer to http://www.magentocommerce.com for more information.
*
* @category Mirasvit
* @package mirasvit/module-search-landing
* @version 1.0.10
* @copyright Copyright (C) 2020 Mirasvit (https://mirasvit.com/)
*/



namespace Mirasvit\SearchLanding\Model;

use Magento\Framework\Model\AbstractModel;
use Mirasvit\SearchLanding\Api\Data\PageInterface;

class Page extends AbstractModel implements PageInterface
{
/**
* @return void
*/
protected function _construct()
{
$this->_init(ResourceModel\Page::class);
}

/**
* {@inheritdoc}
*/
public function getId()
{
return $this->getData(self::ID);
}

/**
* {@inheritdoc}
*/
public function getQueryText()
{
return $this->getData(self::QUERY_TEXT);
}

/**
* {@inheritdoc}
*/
public function setQueryText($value)
{
return $this->setData(self::QUERY_TEXT, $value);
}

/**
* {@inheritdoc}
*/
public function getUrlKey()
{
return $this->getData(self::URL_KEY);
}

/**
* {@inheritdoc}
*/
public function setUrlKey($value)
{
return $this->setData(self::URL_KEY, $value);
}

/**
* {@inheritdoc}
*/
public function getTitle()
{
return $this->getData(self::TITLE);
}

/**
* {@inheritdoc}
*/
public function setTitle($value)
{
return $this->setData(self::TITLE, $value);
}

/**
* {@inheritdoc}
*/
public function getMetaDescription()
{
return $this->getData(self::META_DESCRIPTION);
}

/**
* {@inheritdoc}
*/
public function setMetaDescription($value)
{
return $this->setData(self::META_DESCRIPTION, $value);
}

/**
* {@inheritdoc}
*/
public function getMetaKeywords()
{
return $this->getData(self::META_KEYWORDS);
}

/**
* {@inheritdoc}
*/
public function setMetaKeywords($value)
{
return $this->setData(self::META_KEYWORDS, $value);
}

/**
* {@inheritdoc}
*/
public function getLayoutUpdate()
{
return $this->getData(self::LAYOUT_UPDATE);
}

/**
* {@inheritdoc}
*/
public function setLayoutUpdate($value)
{
return $this->setData(self::LAYOUT_UPDATE, $value);
}

/**
* {@inheritdoc}
*/
public function getStoreIds()
{
return array_filter(explode(',', $this->getData(self::STORE_IDS)));
}

/**
* {@inheritdoc}
*/
public function setStoreIds($value)
{
if (is_array($value)) {
$value = implode(',', $value);
}

return $this->setData(self::STORE_IDS, $value);
}

/**
* {@inheritdoc}
*/
public function isActive()
{
return $this->getData(self::IS_ACTIVE);
}

/**
* {@inheritdoc}
*/
public function setIsActive($value)
{
return $this->setData(self::IS_ACTIVE, $value);
}
}