You are here

function workspace_theme in Workspace 6

Same name and namespace in other branches
  1. 8 workspace.module \workspace_theme()
  2. 7 workspace.module \workspace_theme()

Implementation of hook_theme().

File

./workspace.module, line 433
Presents a user-centric view of content.

Code

function workspace_theme() {
  return array(
    'workspace_list' => array(
      'arguments' => array(
        'header' => array(),
        'rows' => array(),
        $max = 50,
        $cols = 8,
      ),
    ),
  );
}