|
@@ 4562-4566 (lines=5) @@
|
| 4559 |
|
if ($tvsort != '') { |
| 4560 |
|
$tvsort = 'tv.' . implode(',tv.', array_filter(array_map('trim', explode(',', $tvsort)))); |
| 4561 |
|
} |
| 4562 |
|
if ($tvidnames == "*") { |
| 4563 |
|
$query = "tv.id<>0"; |
| 4564 |
|
} else { |
| 4565 |
|
$query = (is_numeric($tvidnames[0]) ? "tv.id" : "tv.name") . " IN ('" . implode("','", $tvidnames) . "')"; |
| 4566 |
|
} |
| 4567 |
|
|
| 4568 |
|
$this->getUserDocGroups(); |
| 4569 |
|
|
|
@@ 4730-4734 (lines=5) @@
|
| 4727 |
|
$fields = ($fields == '') ? 'tv.*' : 'tv.' . implode(',tv.', array_filter(array_map('trim', explode(',', $fields)))); |
| 4728 |
|
$sort = ($sort == '') ? '' : 'tv.' . implode(',tv.', array_filter(array_map('trim', explode(',', $sort)))); |
| 4729 |
|
|
| 4730 |
|
if ($idnames == '*') { |
| 4731 |
|
$query = 'tv.id<>0'; |
| 4732 |
|
} else { |
| 4733 |
|
$query = (is_numeric($idnames[0]) ? 'tv.id' : 'tv.name') . " IN ('" . implode("','", $idnames) . "')"; |
| 4734 |
|
} |
| 4735 |
|
|
| 4736 |
|
$rs = $this->db->select("{$fields}, IF(tvc.value != '', tvc.value, tv.default_text) as value", $this->getFullTableName('site_tmplvars') . " tv |
| 4737 |
|
INNER JOIN " . $this->getFullTableName('site_tmplvar_templates') . " tvtpl ON tvtpl.tmplvarid = tv.id |