which will provide a bridge to the ImmobilienScout24.de API
to request real estate offers from their site and display them in a drupal block.
ImmobilienScout24.de is a big german internet portal for real estate offerings and widely used by german estate agencies.
At the moment I'm working on a new drupal website for an estate agent in Germany implementing this kind of functionality.
When I "googled" for this kind of interaction between Drupal and ImmobilienScout24.de I of course recognized that I'm not the first
one searching for it. So maybe an official drupal module which connects to this estate portal could help some fellows to resolve
their tasks more easily with Drupal. At the same time I hope that publishing this module will bring the people together who are thinking
about writing something similar.
The module successfully passed testing on my clients site and beside the english original version includes a german translation.
I'm not allowed to publish the clients site right now but could provide a test site to give an online view of it.
Here an extract of the module's help description
"
DESCRIPTION
---------------
IS24 provides a bridge to the API of ImmobilienScout24.de (is24.de),
an internet portal for real estates widely used by german estate agencies.
The module
* displays all or selected estate offers from is24.de in a drupal block
* let you configure the search options, sort order and the appearance
of the block
* links the displayed offers to the is24.de synopsis ("expose") page
To use the module productively you have to be registered with is24.de.
Request your API key and get your Vendor ID.
For test purposes you can get a free API key from is24.de and use the
test Vendor ID 6687764.
"
Thanks for reviewing and all the best.
| Comment | File | Size | Author |
|---|---|---|---|
| #7 | is24_20091227.zip | 14.48 KB | jbiechele |
| #4 | is24_v1.0_fixed.zip | 14.48 KB | jbiechele |
| #1 | is24.zip | 18.01 KB | jbiechele |
Comments
Comment #1
jbiechele commentedArchived copy of my proposed module "is24".
Comment #2
avpadernoComment #3
avpadernoThe defined permission is not the used one.
Strings used in user interface should have the first word in capital case, and the other words in lower case (with the exception of proper nouns, adjectives derived from proper nouns, and acronyms).
Strings used in the user interface needs to be translated; this includes also the strings used as options for the form fields.
Drupal variables should not be initialized to their default values during installation.
Comment #4
jbiechele commentedPlease find attached the fixed version. Hopefully it's ok now.
Sorry for the extra review work I caused.
Comment #5
avpaderno@jbiechele: There no reason to feel sorry. It can happen that what I report is not clear; anyway, this is the first review for your code.
Comment #6
avpadernoThat hook is called all times the module is enable, not only when the module is installed. The message could confuse users who would wonder why the module keeps to install itself. If there is the need to show such message, the code can be moved in
hook_install().It is better to call
variable_del()for each variable the module defines. This avoids any conflict with other modules that could have a name starting withThe value should be a boolean, not a string. It works simply because any not empty string would have the same effect of the boolean
TRUE, but that is also true for the string .Comment #7
jbiechele commentedNext try. Fixed all your advices in the attached version.
Comment #8
avpadernoI apologize for the delay in approving this application.
Thank you for your contribution! I am going to update your account.
These are some recommended readings to help with excellent maintainership:
You can find more contributors chatting on the IRC #drupal-contribute channel. So, come hang out and stay involved.
Thank you, also, for your patience with the review process.
Anyone is welcome to participate in the review process. Please consider reviewing other projects that are pending review. I encourage you to learn more about that process and join the group of reviewers.
I thank all the dedicated reviewers as well.
Comment #9
jbiechele commentedWhen I look at the amount of tickets you have to process here in I'm glad you found time to review that one again.
Thank you for your advices and hints.
Comment #12
avpaderno