2018-02-20 16:46:23 +01:00
|
|
|
<?php
|
|
|
|
|
2018-07-10 12:07:48 +02:00
|
|
|
include_once __DIR__.'/../../core.php';
|
2018-02-20 16:46:23 +01:00
|
|
|
|
|
|
|
switch ($resource) {
|
|
|
|
case 'smtp':
|
2018-07-10 12:07:48 +02:00
|
|
|
$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) {
|
2018-03-24 14:24:17 +01:00
|
|
|
$filter[] = 'id = '.prepare($element);
|
2018-02-20 16:46:23 +01:00
|
|
|
}
|
2018-09-03 16:49:43 +02: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;
|
|
|
|
}
|