You are here

function users_export_theme in Users Export 7.2

Same name and namespace in other branches
  1. 7 users_export.module \users_export_theme()

Implements hook_theme().

File

./users_export.module, line 62
Base module file for users_export.

Code

function users_export_theme($existing, $type, $theme, $path) {
  return array(
    'users_export_flatfile' => array(
      'variables' => array(
        'header' => NULL,
        'rows' => NULL,
        'type' => NULL,
        'html' => FALSE,
        'prefix' => '',
        'suffix' => '',
      ),
      'file' => 'includes/users_export.admin.inc',
    ),
  );
}