You are here

function users_export_theme in Users Export 7

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

Implements hook_theme

Related topics

File

./users_export.module, line 43
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' => 'users_export.admin.inc',
    ),
  );
}