openstamanager/modules/smtp/ajax/select.php

21 lines
476 B
PHP
Raw Normal View History

2018-02-20 16:46:23 +01:00
<?php
include_once __DIR__.'/../../core.php';
2018-02-20 16:46:23 +01:00
switch ($resource) {
case 'smtp':
$query = 'SELECT id AS id, name AS descrizione FROM zz_smtps |where| ORDER BY name';
2018-02-20 16:46:23 +01:00
foreach ($elements as $element) {
$filter[] = 'id = '.prepare($element);
2018-02-20 16:46:23 +01:00
}
if (empty($filter)) {
$where[] = 'deleted_at IS NULL';
}
2018-02-20 16:46:23 +01:00
if (!empty($search)) {
$search_fields[] = 'name LIKE '.prepare('%'.$search.'%');
}
break;
}