| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <table class="suggessts">
- <?php if (!empty($properties)) : ?>
- <tr>
- <td class="suggest-block" valign="top">INGATLANOK</td>
- <td class="suggest-list" valign="top">
- <?php foreach ($properties as $property) : ?>
- <a href="/<?=$property->ertekesites?>/<?=$property->tipus?>/<?=common::generateSlug($property->telepules)?>/<?=$property->id?>-<?=$property->ertekesites?>-<?=$property->tipus?>-<?=common::generateSlug($property->iranyitoszam)?>-<?=common::generateSlug($property->telepules)?><?php if ($property->terkepesmegjelenes=='1') echo '-'.common::generateSlug($property->utcanev) ?>" title="Hirdetés megtekintése"><?=$property->iranyitoszam?> <?=$property->telepules?>, <?=$property->utcanev?> <?=$property->hazszam?>. (<?=$property->regszam?>)</a><br>
- <?php endforeach; ?>
- <a href="/search/index/properties/?keyword=<?=$keyword?>" class="more-suggests"><i class="far fa-plus-square"></i></a>
- </td>
- </tr>
- <?php endif; ?>
- <?php if (!empty($offices)) : ?>
- <tr>
- <td class="suggest-block" valign="top">IRODÁK</td>
- <td class="suggest-list" valign="top">
- <?php foreach ($offices as $office) : ?>
- <a href="/rockhome-irodak/<?=$office->id?>-<?=common::generateSlug($office->nev)?>" title="Iroda megtekintése"><?=$office->nev?> - <?=$office->iranyitoszam?> <?=$office->varos?>. <?=$office->utca_hazszam?></a><br>
- <?php endforeach; ?>
- <a href="/search/index/offices/?keyword=<?=$keyword?>" class="more-suggests"><i class="far fa-plus-square"></i></a>
- </td>
- </tr>
- <?php endif; ?>
- <?php if (!empty($agents)) : ?>
- <tr>
- <td class="suggest-block" valign="top">ÉRTÉKESÍTŐK</td>
- <td class="suggest-list" valign="top">
- <?php foreach ($agents as $agent) : ?>
- <a href="/rockhome-tanacsadok/<?=$agent->id?>-<?=common::generateSlug($agent->nev)?>" title="Értékesítő megtekintése"><?=$agent->nev?></a><br>
- <?php endforeach; ?>
- <a href="/search/index/agents/?keyword=<?=$keyword?>" class="more-suggests"><i class="far fa-plus-square"></i></a>
- </td>
- </tr>
- <?php endif; ?>
- <?php if (!empty($pages)) : ?>
- <tr>
- <td class="suggest-block no-border" valign="top">TARTALOM</td>
- <td class="suggest-list no-border" valign="top">
- <?php foreach ($pages as $page) : ?>
- <a href="/<?=$page->page_slug?>" title="Oldal megtekintése"><?=$page->page_title?></a><br>
- <?php endforeach; ?>
- <a href="/search/index/pages/?keyword=<?=$keyword?>" class="more-suggests"><i class="far fa-plus-square"></i></a>
- </td>
- </tr>
- <?php endif; ?>
- <?php if (empty($pages) && empty($agents) && empty($offices) && empty($properties)) : ?>
- <tr><td>A megadott kifejezésre nincs találat...</td></tr>
- <?php endif; ?>
- </table>
|