|
@@ 4544-4548 (lines=5) @@
|
| 4541 |
|
if ($tvsort != '') { |
| 4542 |
|
$tvsort = 'tv.' . implode(',tv.', array_filter(array_map('trim', explode(',', $tvsort)))); |
| 4543 |
|
} |
| 4544 |
|
if ($tvidnames == "*") { |
| 4545 |
|
$query = "tv.id<>0"; |
| 4546 |
|
} else { |
| 4547 |
|
$query = (is_numeric($tvidnames[0]) ? "tv.id" : "tv.name") . " IN ('" . implode("','", $tvidnames) . "')"; |
| 4548 |
|
} |
| 4549 |
|
|
| 4550 |
|
$this->getUserDocGroups(); |
| 4551 |
|
|
|
@@ 4712-4716 (lines=5) @@
|
| 4709 |
|
$fields = ($fields == '') ? 'tv.*' : 'tv.' . implode(',tv.', array_filter(array_map('trim', explode(',', $fields)))); |
| 4710 |
|
$sort = ($sort == '') ? '' : 'tv.' . implode(',tv.', array_filter(array_map('trim', explode(',', $sort)))); |
| 4711 |
|
|
| 4712 |
|
if ($idnames == '*') { |
| 4713 |
|
$query = 'tv.id<>0'; |
| 4714 |
|
} else { |
| 4715 |
|
$query = (is_numeric($idnames[0]) ? 'tv.id' : 'tv.name') . " IN ('" . implode("','", $idnames) . "')"; |
| 4716 |
|
} |
| 4717 |
|
|
| 4718 |
|
$rs = $this->db->select("{$fields}, IF(tvc.value != '', tvc.value, tv.default_text) as value", $this->getFullTableName('site_tmplvars') . " tv |
| 4719 |
|
INNER JOIN " . $this->getFullTableName('site_tmplvar_templates') . " tvtpl ON tvtpl.tmplvarid = tv.id |