Ekdant-Online-Store/catalog/model/design/seo_url.php
2024-08-06 18:06:00 +05:45

32 lines
1.1 KiB
PHP

<?php
namespace Opencart\Catalog\Model\Design;
/**
* Class Seo Url
*
* @package Opencart\Catalog\Model\Design
*/
class SeoUrl extends \Opencart\System\Engine\Model {
/**
* @param string $keyword
*
* @return array
*/
public function getSeoUrlByKeyword(string $keyword): array {
$query = $this->db->query("SELECT * FROM `" . DB_PREFIX . "seo_url` WHERE (`keyword` = '" . $this->db->escape($keyword) . "' OR `keyword` LIKE '" . $this->db->escape('%/' . $keyword) . "') AND `store_id` = '" . (int)$this->config->get('config_store_id') . "' LIMIT 1");
return $query->row;
}
/**
* @param string $key
* @param string $value
*
* @return array
*/
public function getSeoUrlByKeyValue(string $key, string $value): array {
$query = $this->db->query("SELECT * FROM `" . DB_PREFIX . "seo_url` WHERE `key` = '" . $this->db->escape($key) . "' AND `value` = '" . $this->db->escape($value) . "' AND `store_id` = '" . (int)$this->config->get('config_store_id') . "' AND `language_id` = '" . (int)$this->config->get('config_language_id') . "'");
return $query->row;
}
}