定制 derhaeuptling/contao-immobilienscout24-import-bundle 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

derhaeuptling/contao-immobilienscout24-import-bundle

Composer 安装命令:

composer require derhaeuptling/contao-immobilienscout24-import-bundle

包简介

Immobilienscout24 import for Contao Open Source CMS

README 文档

README

This bundle allows you to import real estate objects from Immoscout24 into your Contao application (4.8+) and display them as native content.

Warning: This is an early release. There might be features missing. Use at your own risk.

How to get going

Setup

  1. Install the bundle and update your database. There is no further configuration necessary.

    composer require derhaeuptling/contao-immobilienscout24-import-bundle
  2. Add at least one Immoscout24 Account in the backend and enter your API credentials.

  3. Setup a cron job that executes the immoscout24:sync command or run it yourself to import real estate objects from the API into your application. You can pass an account's id or description as a parameter to only sync this one account and --dry-run to only see what would be updated without persisting the changes. Use the option --purge to clear the database table and all downloaded files completely beforehand.

  4. We are using Contao's Virtual Filesystem feature. If you also want to adjust where the downloaded attachments should be stored, simply mount the immoscout24 directory at another place. See the Contao developer docs for more information about this topic.

  5. Add one or more Immoscout24 modules in your theme and use it in the frontend:

    • The Real estate list displays a list of real estate objects. If you want to generate a teaser list with 'read more' links, make sure to specify a 'jump to' page with the appropriate reader.

    • The Real estate reader displays a single real estate object based on the url parameter (id).

    • List items can be constrained individually by using a filter expression.
      Some filter expression examples:

      • one object by its ID realEstateId == 111111111
      • some objects by its IDs realEstateId in [111111111,222222222,333333333]
      • all active objects state == STATUS_ACTIVE
      • all objects published to the homepage channel 'Homepage' in publishChannels
      • all objects with empty API-Searchfield1 apiSearchData1 != null
      • all objects that match a KEYWORD in the title field title matches "/KEYWORD/"
      • combine filter 'Homepage' in publishChannels && priceMarketingType == "Kauf"

Templates and values

The real estate listings contain lots of fields - most likely you'll want to adapt the templates to your needs and only output some of the fields. To do this, there are some helpers for your convenience.

A) Real estate data comes in the form of an entity instance, you can type hint against it to get IDE auto-completion in your templates:

  /** var Derhaeuptling\ContaoImmoscout24\Entity\RealEstate $realEstate */
  $realEstate

B) You can also obtain a list of all available attributes:

  $this->attributes

  // array [name => label] of publicly accessible fields of the real estate objects
  // e.g. 'descriptionNote' that can be accessed via $realEstate->descriptionNote

C) To retrieve and format data, you can use these helper functions:

  $this->hasData(RealEstate $realEstate, string $attribute) : bool
  // will return wether $realEstate holds data for the $attribute

  $this->getFormatted(RealEstate $realEstate, string $attribute) : string
  // will return the formatted value of $attribute - enumerations, dates and
  // booleans will resolved to a string representation based on the language
  // files

D) If you want to resolve enumerations yourself you can find all of them as public constants in the RealEstate entity.

Some enumeration values can occur multiple times per value. In this case they are implemented as binary flags:

  FLAG__TYPE_A = 1;
  FLAG__TYPE_B = 2;
  FLAG__TYPE_C = 4;
  FLAG__TYPE_D = 8;
  FLAG__TYPE_E = 16;

  // n-of-value selecting 'type A' and 'type E'
  $value = -(FLAG__TYPE_A | FLAG__TYPE_E); // = 17

Note that flagged values are stored as negative numbers, so that they can easily be differentiated from regular enumeration values.

Attachments

Real estate objects can have multiple attachments. Note: that currently only images are supported attachment types.

To render an attachment (as an image) you can utilize the getFigureFromAttachment() function present in the templates. It allows passing in an alternative image size as second argument:

  $figure = $this->getFigureFromAttachment($realEstate->getTitlePictureAttachment());

  $figure = $this->getFigureFromAttachment(
      $realEstate->getTitlePictureAttachment(),
      $this->alternativeImageSize
  );

To output the Figure, pass its data to the template you want render. In case of the legacy image template, make sure to expand the image data beforehand by calling getLegacyTemplateData():

  $this->insert('image', $titlePictureFigure->getLegacyTemplateData());

Here is the full example how to output the title picture with the default image size in a failure-tolerant way:

    <div>
        <h2>Title Picture</h2>
        <?php if(null !== ($titlePictureFigure = $this->getFigureFromAttachment($this->realEstate->getTitlePictureAttachment()))): ?>
            <?php $this->insert('image', $titlePictureFigure->getLegacyTemplateData()); ?>
        <?php else: ?>
            <span>There is no title picture.</span>
        <?php endif; ?>
    </div>

统计信息

  • 总下载量: 192
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 2
  • Forks: 2
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2019-09-22

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固