You are here

function scs_theme in Simplenews Content Selection 8

Same name and namespace in other branches
  1. 6.2 scs.module \scs_theme()
  2. 6 scs.module \scs_theme()
  3. 7.2 scs.module \scs_theme()
  4. 7 scs.module \scs_theme()

Implements hook_theme()

File

./scs.module, line 42
General hooks and commonly-used functions

Code

function scs_theme() {
  return array(
    'scs_sortable_table' => array(
      'render element' => 'form',
      'file' => 'scs.theme.inc',
    ),
    'scs_newsletter' => array(
      'variables' => array(
        'nodes' => array(),
        'toc' => FALSE,
      ),
      'template' => 'scs-newsletter',
      'file' => 'scs.theme.inc',
    ),
    'scs_toc' => array(
      'variables' => array(
        'nodes' => array(),
      ),
      'file' => 'scs.theme.inc',
    ),
  );
}