Linux altar53.supremepanel53.com 4.18.0-553.8.1.lve.el8.x86_64 #1 SMP Thu Jul 4 16:24:39 UTC 2024 x86_64
/ home/ bdapparelinfo/ dhakazone.com/ admin/ model/ journal3/ |
|
<?php use Journal3\Opencart\Model; use Journal3\Utils\Arr; class ModelJournal3Style extends Model { public function all($filters = array()) { $filter_sql = ""; $filter_sql .= "`style_type` = '{$this->dbEscape(Arr::get($filters, 'type'))}'"; if ($filter = Arr::get($filters, 'filter')) { $filter_sql .= " AND `style_name` LIKE '%{$this->dbEscape($filter)}%'"; } $order_sql = "ORDER BY style_name"; $page = (int)Arr::get($filters, 'page'); $limit = (int)Arr::get($filters, 'limit'); if ($page || $limit) { if ($page < 1) { $page = 1; } if ($limit < 1) { $limit = 10; } $order_sql .= ' LIMIT ' . (($page - 1) * $limit) . ', ' . $limit; } $sql = " FROM `{$this->dbPrefix('journal3_style')}` WHERE {$filter_sql} "; $count = (int)$this->db->query("SELECT COUNT(*) AS total {$sql}")->row['total']; $result = array(); if ($count) { $query = $this->db->query(" SELECT * {$sql} {$order_sql} "); foreach ($query->rows as $row) { $result[] = array( 'id' => $row['style_name'], 'name' => $row['style_name'], 'label' => $row['style_label'] ? $row['style_label'] : $row['style_name'], ); } } return array( 'count' => $count, 'items' => $result, ); } public function get($id, $type) { $query = $this->db->query(" SELECT * FROM `{$this->dbPrefix('journal3_style')}` WHERE `style_name` = '{$this->dbEscape($id)}' AND `style_type` = '{$this->dbEscape($type)}' "); if ($query->num_rows === 0) { throw new Exception('Style not found!'); } return array( 'name' => $query->row['style_name'], 'label' => $query->row['style_label'] ? $query->row['style_label'] : $query->row['style_name'], 'value' => $this->decode($query->row['style_value'], $query->row['serialized']), ); } public function add($type, $data) { $name = Arr::get($data, 'name'); $label = Arr::get($data, 'label'); $value = Arr::get($data, 'value'); $serialized = is_scalar($value) ? 0 : 1; $value = $this->encode($value, $serialized); $query = $this->db->query(" SELECT COUNT(*) AS total FROM `{$this->dbPrefix('journal3_style')}` WHERE `style_name` = '{$this->dbEscape($name)}' AND `style_type` = '{$this->dbEscape($type)}' "); if ($query->row['total'] > 0) { throw new Exception("Style name already exists!"); } $this->db->query(" INSERT INTO `{$this->dbPrefix('journal3_style')}` ( `style_name`, `style_label`, `style_type`, `style_value`, `serialized` ) VALUES ( '{$this->dbEscape($name)}', '{$this->dbEscape($label)}', '{$this->dbEscape($type)}', '{$this->dbEscape($value)}', '{$this->dbEscapeInt($serialized)}' ) "); return $name; } public function edit($id, $type, $data) { $name = Arr::get($data, 'name'); $label = Arr::get($data, 'label'); $value = Arr::get($data, 'value'); $serialized = is_scalar($value) ? 0 : 1; $value = $this->encode($value, $serialized); $query = $this->db->query(" SELECT COUNT(*) AS total FROM `{$this->dbPrefix('journal3_style')}` WHERE `style_name` != '{$this->dbEscape($id)}' AND `style_type` = '{$this->dbEscape($type)}' AND `style_name` = '{$this->dbEscape($name)}' "); if ($query->row['total'] > 0) { throw new Exception("Style name already exists!"); } $this->db->query(" UPDATE `{$this->dbPrefix('journal3_style')}` SET `style_name` = '{$this->dbEscape($name)}', `style_label` = '{$this->dbEscape($label)}', `style_value` = '{$this->dbEscape($value)}', `serialized` = '{$this->dbEscapeInt($serialized)}' WHERE `style_name` = '{$this->dbEscape($id)}' AND `style_type` = '{$this->dbEscape($type)}' "); return $this->get($name, $type); } public function copy($id, $type) { $query = $this->db->query(" SELECT * FROM `{$this->dbPrefix('journal3_style')}` WHERE `style_name` = '{$this->dbEscape($id)}' AND `style_type` = '{$this->dbEscape($type)}' "); if ($query->num_rows === 0) { throw new Exception('Style not found!'); } $type = $query->row['style_type']; $data = array( 'name' => $query->row['style_name'] . '_COPY', 'label' => $query->row['style_label'], 'value' => $this->decode($query->row['style_value'], $query->row['serialized']), ); return $this->add($type, $data); } public function remove($id, $type) { $query = $this->db->query(" SELECT * FROM `{$this->dbPrefix('journal3_style')}` WHERE `style_name` = '{$this->dbEscape($id)}' AND `style_type` = '{$this->dbEscape($type)}' "); if ($query->num_rows === 0) { throw new Exception('Style not found!'); } $this->db->query(" DELETE FROM `{$this->dbPrefix('journal3_style')}` WHERE `style_name` = '{$this->dbEscape($id)}' AND `style_type` = '{$this->dbEscape($type)}' "); } }