first commit
This commit is contained in:
31
catalog/model/design/seo_url.php
Normal file
31
catalog/model/design/seo_url.php
Normal file
@ -0,0 +1,31 @@
|
||||
<?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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user