suggests_ajax_view.php 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <table class="suggessts">
  2. <?php if (!empty($properties)) : ?>
  3. <tr>
  4. <td class="suggest-block" valign="top">INGATLANOK</td>
  5. <td class="suggest-list" valign="top">
  6. <?php foreach ($properties as $property) : ?>
  7. <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>
  8. <?php endforeach; ?>
  9. <a href="/search/index/properties/?keyword=<?=$keyword?>" class="more-suggests"><i class="far fa-plus-square"></i></a>
  10. </td>
  11. </tr>
  12. <?php endif; ?>
  13. <?php if (!empty($offices)) : ?>
  14. <tr>
  15. <td class="suggest-block" valign="top">IRODÁK</td>
  16. <td class="suggest-list" valign="top">
  17. <?php foreach ($offices as $office) : ?>
  18. <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>
  19. <?php endforeach; ?>
  20. <a href="/search/index/offices/?keyword=<?=$keyword?>" class="more-suggests"><i class="far fa-plus-square"></i></a>
  21. </td>
  22. </tr>
  23. <?php endif; ?>
  24. <?php if (!empty($agents)) : ?>
  25. <tr>
  26. <td class="suggest-block" valign="top">ÉRTÉKESÍTŐK</td>
  27. <td class="suggest-list" valign="top">
  28. <?php foreach ($agents as $agent) : ?>
  29. <a href="/rockhome-tanacsadok/<?=$agent->id?>-<?=common::generateSlug($agent->nev)?>" title="Értékesítő megtekintése"><?=$agent->nev?></a><br>
  30. <?php endforeach; ?>
  31. <a href="/search/index/agents/?keyword=<?=$keyword?>" class="more-suggests"><i class="far fa-plus-square"></i></a>
  32. </td>
  33. </tr>
  34. <?php endif; ?>
  35. <?php if (!empty($pages)) : ?>
  36. <tr>
  37. <td class="suggest-block no-border" valign="top">TARTALOM</td>
  38. <td class="suggest-list no-border" valign="top">
  39. <?php foreach ($pages as $page) : ?>
  40. <a href="/<?=$page->page_slug?>" title="Oldal megtekintése"><?=$page->page_title?></a><br>
  41. <?php endforeach; ?>
  42. <a href="/search/index/pages/?keyword=<?=$keyword?>" class="more-suggests"><i class="far fa-plus-square"></i></a>
  43. </td>
  44. </tr>
  45. <?php endif; ?>
  46. <?php if (empty($pages) && empty($agents) && empty($offices) && empty($properties)) : ?>
  47. <tr><td>A megadott kifejezésre nincs találat...</td></tr>
  48. <?php endif; ?>
  49. </table>