Drupal investigation

user_import.module 377B

123456789101112
  1. <?php
  2. function user_import_theme(/*$existing, $type, $theme, $path*/) {
  3. return array(
  4. 'custom_form' => array(
  5. 'variables' => ['ldapAccounts' => NULL, 'newAccounts' => NULL, 'myForm' => NULL],
  6. 'render element' => 'form',
  7. 'path' => 'modules/user_import/templates',
  8. 'template' => 'user_import_page',
  9. ),
  10. );
  11. }