Init
This commit is contained in:
35
simpla/ajax/search_products.php
Normal file
35
simpla/ajax/search_products.php
Normal file
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
chdir('../..');
|
||||
require_once('api/Simpla.php');
|
||||
$simpla = new Simpla();
|
||||
$limit = 100;
|
||||
|
||||
$keyword = $simpla->request->get('query', 'string');
|
||||
|
||||
$simpla->db->query('SELECT p.id, p.name,p.visible, i.filename as image FROM __products p
|
||||
LEFT JOIN __images i ON i.product_id=p.id AND i.position=(SELECT MIN(position) FROM __images WHERE product_id=p.id LIMIT 1)
|
||||
WHERE p.name LIKE "%'.mysql_real_escape_string($keyword).'%" ORDER BY p.name LIMIT ?', $limit);
|
||||
$products = $simpla->db->results();
|
||||
|
||||
foreach($products as $product)
|
||||
{
|
||||
if($product->visible == 0) continue;
|
||||
if(!empty($product->image))
|
||||
{
|
||||
$product->image = $simpla->design->resize_modifier($product->image, 35, 35);
|
||||
$products_names[] = $product->name;
|
||||
}
|
||||
else
|
||||
$products_names[] = $product->name;
|
||||
|
||||
$products_data[] = $product;
|
||||
}
|
||||
|
||||
$res->query = $keyword;
|
||||
$res->suggestions = $products_names;
|
||||
$res->data = $products_data;
|
||||
header("Content-type: application/json; charset=UTF-8");
|
||||
header("Cache-Control: must-revalidate");
|
||||
header("Pragma: no-cache");
|
||||
header("Expires: -1");
|
||||
print json_encode($res);
|
||||
Reference in New Issue
Block a user