⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.1
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
/
olasjoys
/
modules
/
ps_linklist
/
src
/
Model
/
View File Name :
LinkBlock.php
<?php /** * Copyright since 2007 PrestaShop SA and Contributors * PrestaShop is an International Registered Trademark & Property of PrestaShop SA * * NOTICE OF LICENSE * * This source file is subject to the Academic Free License version 3.0 * that is bundled with this package in the file LICENSE.md. * It is also available through the world-wide-web at this URL: * https://opensource.org/licenses/AFL-3.0 * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to license@prestashop.com so we can send you a copy immediately. * * @author PrestaShop SA and Contributors <contact@prestashop.com> * @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/AFL-3.0 Academic Free License version 3.0 */ namespace PrestaShop\Module\LinkList\Model; use Shop; /** * Class LinkBlock. */ class LinkBlock extends \ObjectModel { /** * @var int */ public $id_link_block; /** * @var string */ public $name; /** * @var int */ public $id_hook; /** * @var int */ public $position; /** * @var array|string|null */ public $content; /** * @var array */ public $custom_content; /** * @see ObjectModel::$definition */ public static $definition = [ 'table' => 'link_block', 'primary' => 'id_link_block', 'multilang' => true, 'fields' => [ 'name' => ['type' => self::TYPE_STRING, 'lang' => true, 'required' => true, 'size' => 40], 'id_hook' => ['type' => self::TYPE_INT, 'validate' => 'isUnsignedInt', 'required' => true], 'position' => ['type' => self::TYPE_INT, 'validate' => 'isUnsignedInt', 'required' => true], 'content' => ['type' => self::TYPE_STRING, 'validate' => 'isJson'], 'custom_content' => ['type' => self::TYPE_STRING, 'lang' => true, 'validate' => 'isJson'], ], ]; public function __construct($id = null, $id_lang = null, $id_shop = null) { Shop::addTableAssociation('link_block', ['type' => 'shop']); parent::__construct($id, $id_lang, $id_shop); if ($this->id) { $this->content = json_decode($this->content, true); if ($this->custom_content) { $this->custom_content = array_map( function ($el) { return json_decode($el ?? '', true); }, $this->custom_content ); } } if (is_null($this->content)) { $this->content = [ 'cms' => [], 'product' => [], 'static' => [], 'category' => [], ]; } } public function add($auto_date = true, $null_values = false) { if (is_array($this->content)) { $this->content = json_encode($this->content); } if (!$this->position) { $this->position = 1; } $return = parent::add($auto_date, $null_values); $this->content = json_decode($this->content, true); return $return; } public function update($auto_date = true, $null_values = false) { if (is_array($this->content)) { $this->content = json_encode($this->content); } $return = parent::update($null_values); $this->content = json_decode($this->content, true); return $return; } public function toArray() { return [ 'id' => $this->id, 'id_link_block' => $this->id, 'name' => $this->name, 'id_hook' => $this->id_hook, 'position' => $this->position, 'content' => $this->content, 'custom_content' => $this->custom_content, 'shop_association' => $this->getAssociatedShops(), ]; } }