You are here

function theme_dropbox_file_list in Dropbox Client 7

Same name and namespace in other branches
  1. 7.4 dropbox_client.module \theme_dropbox_file_list()
  2. 7.2 dropbox_client.module \theme_dropbox_file_list()
  3. 7.3 dropbox_client.module \theme_dropbox_file_list()
2 theme calls to theme_dropbox_file_list()
dropbox_client_metadata in ./dropbox_client.module
dropbox_client_search_results in ./dropbox_client.module

File

./dropbox_client.module, line 387

Code

function theme_dropbox_file_list($vars) {
  return theme('item_list', array(
    'items' => $vars['files'],
  ));
}