문제

I want to list states in a combo box to be displayed in block in left side bar. Depending on the selecting of state I want to filter the HTML code within page nodes.

How can I do it?

도움이 되었습니까?

해결책

  1. If you are unfamilliar with how Drupal modules are created, work through Creating modules - a tutorial: Drupal 6.x
  2. Create a form. The Forms API QuickStart Guide and the Forms API Reference tell you how this is done in Drupal.
  3. Put the form into a block by implementing hook_block.

How to proceed from there depends largely on what type of filtering you need. In any case hook_nodeapi is invoked on various node-related occasions, so you might want to implement it to do the actual filtering.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top