Detalles de desarrollos

Usando la información resultante

Ejemplo básico

<?php

// INCLUDE TOKKOBROKER TOOLS
include("api.inc");

// CHANGE THIS APIKEY WITH YOUR REAL STATE APIKEY
$auth = new TokkoAuth('5940ea45eb7cfb55228bec0b958ea9c0be151757');

// CREATE DEVELOPMENT OBJECT ; NEED VALID DEVELOPMENT ID
$development = new TokkoDevelopment('id', $_REQUEST["id"], $auth);
?>
    
<div>
    <header>
        <h1>
            <? echo $development->get_field("name"); ?> 
            <? echo $development->get_field("location")->name; ?>
        </h1>
    </header>

    <section>
    
        <?php foreach ( $development->get_field('photos') as $photo){ ?>
            <div>
                <img src="<?php echo $photo->image;?>">    
            </div>
        <?php } ?>
    
    </section>

    <section>
        <h2>Descriptión</h2>
        <table>
            <thead>
                <th>Direccion</th>
                <th>Estado de la construcción</th>
                <th>Fecha de entrega</th>
                <th>Título de publicación</th>
            </thead>
            <tbody>
                <td><? echo $development->get_field("address"); ?></td>
                <td><? echo $development->get_field("construction_status"); ?></td>
                <td><? echo $development->get_field("construction_date"); ?></td>
                <td><? echo $development->get_field("fake_address"); ?></td>
            </tbody>
        </table>
    </section>

</div>

Common fields:

  • "address"
  • "construction_status"
  • "construction_date"
  • "fake_address"
  • "description"
  • "geo_lat"
  • "geo_long"

Si necesitan ordenar los desarrollos mediante una etiqueta específica, lo podrán hacer con las siguientes compos.
location', 'name', 'id', 'construction_status' y 'construction_date';
Si quisieran hacerlo con algún otro, deberán traer todos los emprendimientos y ordenarlos. Por ejemplo se usaria "&order=construction_date" o "&order=-construction_date" para hacerlo decreciente. La convención que usamos es la DRF (https://www.django-rest-framework.org/)