Category Archives: CMS

Drupal – Set Views Exposed Filter to show all values by Default

After exposing the filter in views, we can configure it as follow such that it will automatically add an <Any> option in the selection list and display all values when the view is first rendered. Continue reading Drupal – Set Views Exposed Filter to show all values by Default

Drupal – Send SOAP Request by NuSOAP

In PHP, we can use cURL library for generating SOAP request.
PHP – Send a SOAP Request by cURL

Except using the cURL library, we can also use the NuSOAP. The NuSOAP provides much more convenient way to create the SOAP request and it can be used in Drupal. The following example is base on the Blog post written be Eric London.
Executing a SOAP call from Drupal using nusoap Continue reading Drupal – Send SOAP Request by NuSOAP

Drupal – Add iframe in TinyMCE Editor

If you have installed the WYSIWYG module with TinyMCE Editor, you will find that it does not support the iframe element. Say if you embed a Google Map in the HTML body, it will disappear once you edit the node.

Ya, it’s Google again, i found a post written by Sam Michel who resolve the problem just by simply create a custom module with the hook_wysiwyg_plugin. Continue reading Drupal – Add iframe in TinyMCE Editor