Миниатюрни прекъсвачи - MCB, 1P
$where = [];
$where_types = '';
$where_params = [];
$where_sql = '';
if($view=='products') {
$where[] = 'products.categories_id=?';
$where_types .= 'i';
$where_params[] = $categories[$sp1_found][$sp2_found]['categories_id'];
$this_url = '/produkti/' . $categories[0][$sp1_found]['url'] . '/' . $categories[$sp1_found][$sp2_found]['url'];
}
if($view=='search' && isset($_GET['q']) && trim($_GET['q'])) {
$where[] = 'products.name LIKE ?';
$where_types .= 's';
$where_params[] = '%' . trim($_GET['q']) . '%';
$this_url = '/produkti/tarsene?q=' . urlencode(trim($_GET['q']));
}
$f = [];
$f['f_d'] = 'grid';
$f['f_o'] = 'name';
$f['f_p'] = 20;
$try = (isset($_GET['f_d']) ? $_GET['f_d'] : (isset($_SESSION['products_page']['f_d']) ? $_SESSION['products_page']['f_d'] : NULL));
if($try && in_array($try, ['grid', 'list'])) {
$f['f_d'] = $try;
}
?>