| Linux hosting5.siteguarding.com 3.10.0-962.3.2.lve1.5.88.el7.x86_64 #1 SMP Fri Sep 26 14:06:42 UTC 2025 x86_64 Path : /home/devsafetybis/op4103.dev.safetybis.com/admin1qw/model/catalog/ |
| Current File : /home/devsafetybis/op4103.dev.safetybis.com/admin1qw/model/catalog/attribute.php |
<?php
namespace Opencart\Admin\Model\Catalog;
/**
* Class Attribute
*
* Can be loaded using $this->load->model('catalog/attribute');
*
* @package Opencart\Admin\Model\Catalog
*/
class Attribute extends \Opencart\System\Engine\Model {
/**
* Add Attribute
*
* Create a new attribute record in the database.
*
* @param array<string, mixed> $data array of data
*
* @return int returns the primary key of the new attribute record
*
* @example
*
* $attribute_data = [
* 'attribute_description' => [],
* 'attribute_group_id' => 1,
* 'sort_order' => 0
* ];
*
* $this->load->model('catalog/attribute');
*
* $attribute_id = $this->model_catalog_attribute->addAttribute($attribute_data);
*/
public function addAttribute(array $data): int {
$this->db->query("INSERT INTO `" . DB_PREFIX . "attribute` SET `attribute_group_id` = '" . (int)$data['attribute_group_id'] . "', `sort_order` = '" . (int)$data['sort_order'] . "'");
$attribute_id = $this->db->getLastId();
foreach ($data['attribute_description'] as $language_id => $attribute_description) {
$this->model_catalog_attribute->addDescription($attribute_id, $language_id, $attribute_description);
}
return $attribute_id;
}
/**
* Edit Attribute
*
* Edit attribute record in the database.
*
* @param int $attribute_id primary key of the attribute record
* @param array<string, mixed> $data array of data
*
* @return void
*
* @example
*
* $attribute_data = [
* 'attribute_description' => [],
* 'attribute_group_id' => 1,
* 'sort_order' => 0
* ];
*
* $this->load->model('catalog/attribute');
*
* $this->model_catalog_attribute->editAttribute($attribute_id, $attribute_data);
*/
public function editAttribute(int $attribute_id, array $data): void {
$this->db->query("UPDATE `" . DB_PREFIX . "attribute` SET `attribute_group_id` = '" . (int)$data['attribute_group_id'] . "', `sort_order` = '" . (int)$data['sort_order'] . "' WHERE `attribute_id` = '" . (int)$attribute_id . "'");
$this->model_catalog_attribute->deleteDescriptions($attribute_id);
foreach ($data['attribute_description'] as $language_id => $attribute_description) {
$this->model_catalog_attribute->addDescription($attribute_id, $language_id, $attribute_description);
}
}
/**
* Delete Attribute
*
* Delete attribute record in the database.
*
* @param int $attribute_id primary key of the attribute record
*
* @return void
*
* @example
*
* $this->load->model('catalog/attribute');
*
* $this->model_catalog_attribute->deleteAttribute($attribute_id);
*/
public function deleteAttribute(int $attribute_id): void {
$this->db->query("DELETE FROM `" . DB_PREFIX . "attribute` WHERE `attribute_id` = '" . (int)$attribute_id . "'");
$this->model_catalog_attribute->deleteDescriptions($attribute_id);
}
/**
* Get Attribute
*
* Get the record of the attribute record in the database.
*
* @param int $attribute_id primary key of the attribute record
*
* @return array<string, mixed> attribute record that has attribute ID
*
* @example
*
* $this->load->model('catalog/attribute');
*
* $attribute_info = $this->model_catalog_attribute->getAttribute($attribute_id);
*/
public function getAttribute(int $attribute_id): array {
$query = $this->db->query("SELECT * FROM `" . DB_PREFIX . "attribute` `a` LEFT JOIN `" . DB_PREFIX . "attribute_description` `ad` ON (`a`.`attribute_id` = `ad`.`attribute_id`) WHERE `a`.`attribute_id` = '" . (int)$attribute_id . "' AND `ad`.`language_id` = '" . (int)$this->config->get('config_language_id') . "'");
return $query->row;
}
/**
* Get Attributes
*
* Get the record of the attribute records in the database.
*
* @param array<string, mixed> $data array of filters
*
* @return array<int, array<string, mixed>> attribute records
*
* @example
*
* $filter_data = [
* 'sort' => 'ad.name',
* 'order' => 'DESC',
* 'start' => 0,
* 'limit' => 10
* ];
*
* $this->load->model('catalog/attribute');
*
* $results = $this->model_catalog_attribute->getAttributes($filter_data);
*/
public function getAttributes(array $data = []): array {
$sql = "SELECT *, (SELECT `agd`.`name` FROM `" . DB_PREFIX . "attribute_group_description` `agd` WHERE `agd`.`attribute_group_id` = `a`.`attribute_group_id` AND `agd`.`language_id` = '" . (int)$this->config->get('config_language_id') . "') AS `attribute_group` FROM `" . DB_PREFIX . "attribute` `a` LEFT JOIN `" . DB_PREFIX . "attribute_description` `ad` ON (`a`.`attribute_id` = `ad`.`attribute_id`) WHERE `ad`.`language_id` = '" . (int)$this->config->get('config_language_id') . "'";
if (!empty($data['filter_name'])) {
$sql .= " AND LCASE(`ad`.`name`) LIKE '" . $this->db->escape(oc_strtolower($data['filter_name']) . '%') . "'";
}
if (!empty($data['filter_attribute_group_id'])) {
$sql .= " AND `a`.`attribute_group_id` = '" . (int)$data['filter_attribute_group_id'] . "'";
}
$sort_data = [
'ad.name',
'attribute_group',
'a.sort_order'
];
if (isset($data['sort']) && in_array($data['sort'], $sort_data)) {
$sql .= " ORDER BY " . $data['sort'];
} else {
$sql .= " ORDER BY `attribute_group`, `ad`.`name`";
}
if (isset($data['order']) && ($data['order'] == 'DESC')) {
$sql .= " DESC";
} else {
$sql .= " ASC";
}
if (isset($data['start']) || isset($data['limit'])) {
if ($data['start'] < 0) {
$data['start'] = 0;
}
if ($data['limit'] < 1) {
$data['limit'] = 20;
}
$sql .= " LIMIT " . (int)$data['start'] . "," . (int)$data['limit'];
}
$query = $this->db->query($sql);
return $query->rows;
}
/**
* Get Total Attributes
*
* Get the total number of attribute records in the database.
*
* @return int total number of attribute records
*
* @example
*
* $this->load->model('catalog/attribute');
*
* $attribute_total = $this->model_catalog_attribute->getTotalAttributes();
*/
public function getTotalAttributes(): int {
$query = $this->db->query("SELECT COUNT(*) AS `total` FROM `" . DB_PREFIX . "attribute`");
if ($query->num_rows) {
return (int)$query->row['total'];
} else {
return 0;
}
}
/**
* Get Total Attributes By Attribute Group ID
*
* Get the total number of attributes by attribute group records in the database.
*
* @param int $attribute_group_id foreign key of the attribute group record
*
* @return int total number of attribute records that have attribute group ID
*
* @example
*
* $this->load->model('catalog/attribute');
*
* $attribute_total = $this->model_catalog_attribute->getTotalAttributesByAttributeGroupId($attribute_group_id);
*/
public function getTotalAttributesByAttributeGroupId(int $attribute_group_id): int {
$query = $this->db->query("SELECT COUNT(*) AS `total` FROM `" . DB_PREFIX . "attribute` WHERE `attribute_group_id` = '" . (int)$attribute_group_id . "'");
return (int)$query->row['total'];
}
/**
* Add Description
*
* Create a new attribute description record in the database.
*
* @param int $attribute_id primary key of the attribute record
* @param int $language_id primary key of the language record
* @param array<string, mixed> $data array of data
*
* @return void
*
* @example
*
* $attribute_data['attribute_description'] = [
* 'name' => 'Attribute Name'
* ];
*
* $this->load->model('catalog/attribute');
*
* $this->model_catalog_attribute->addDescription($attribute_id, $language_id, $attribute_data);
*/
public function addDescription(int $attribute_id, int $language_id, array $data): void {
$this->db->query("INSERT INTO `" . DB_PREFIX . "attribute_description` SET `attribute_id` = '" . (int)$attribute_id . "', `language_id` = '" . (int)$language_id . "', `name` = '" . $this->db->escape($data['name']) . "'");
}
/**
* Delete Descriptions
*
* Delete attribute description records in the database.
*
* @param int $attribute_id primary key of the attribute record
*
* @return void
*
* @example
*
* $this->load->model('catalog/attribute');
*
* $this->model_catalog_attribute->deleteDescriptions($attribute_id);
*/
public function deleteDescriptions(int $attribute_id): void {
$this->db->query("DELETE FROM `" . DB_PREFIX . "attribute_description` WHERE `attribute_id` = '" . (int)$attribute_id . "'");
}
/**
* Delete Descriptions By Language ID
*
* Delete attribute description records in the database.
*
* @param int $language_id primary key of the language record
*
* @return void
*
* @example
*
* $this->load->model('catalog/attribute');
*
* $this->model_catalog_attribute->deleteDescriptionsByLanguageId($language_id);
*/
public function deleteDescriptionsByLanguageId(int $language_id): void {
$this->db->query("DELETE FROM `" . DB_PREFIX . "attribute_description` WHERE `language_id` = '" . (int)$language_id . "'");
}
/**
* Get Description
*
* Get the record of the attribute description record in the database.
*
* @param int $attribute_id primary key of the attribute record
* @param int $language_id primary key of the language record
*
* @return array<string, mixed> description record that has attribute ID, language ID
*
* @example
*
* $this->load->model('catalog/attribute');
*
* $attribute_description_info = $this->model_catalog_attribute->getDescription($attribute_id, $language_id);
*/
public function getDescription(int $attribute_id, int $language_id): array {
$query = $this->db->query("SELECT * FROM `" . DB_PREFIX . "attribute_description` WHERE `attribute_id` = '" . (int)$attribute_id . "' AND `language_id` = '" . (int)$language_id . "'");
return $query->row;
}
/**
* Get Descriptions
*
* Get the record of the attribute record in the database.
*
* @param int $attribute_id primary key of the attribute record
*
* @return array<int, array<string, string>> description records that have attribute ID
*
* @example
*
* $this->load->model('catalog/attribute');
*
* $attribute_description = $this->model_catalog_attribute->getDescriptions($attribute_id);
*/
public function getDescriptions(int $attribute_id): array {
$attribute_data = [];
$query = $this->db->query("SELECT * FROM `" . DB_PREFIX . "attribute_description` WHERE `attribute_id` = '" . (int)$attribute_id . "'");
foreach ($query->rows as $result) {
$attribute_data[$result['language_id']] = $result;
}
return $attribute_data;
}
/**
* Get Descriptions By Language ID
*
* Get the record of the attribute descriptions by language records in the database.
*
* @param int $language_id primary key of the language record
*
* @return array<int, array<string, string>> description records that have language ID
*
* @example
*
* $this->load->model('catalog/attribute');
*
* $results = $this->model_catalog_attribute->getDescriptionsByLanguageId($language_id);
*/
public function getDescriptionsByLanguageId(int $language_id): array {
$query = $this->db->query("SELECT * FROM `" . DB_PREFIX . "attribute_description` WHERE `language_id` = '" . (int)$language_id . "'");
return $query->rows;
}
}