Search code examples
phpfiledrupaldrupal-modulesdrupal-webform

Drupal: drupal_get_form specify file to search


How to specify file to search for a function drupal_get_form?


Solution

  • use include_once , require_once or require for adding files where the form resides . drupal_get_form automatically takes care to include the form.

    for example :

    include_once drupal_get_path('module', 'modname') .'/file.php';