You are here

function opigno_theme in Opigno 7.0

Same name and namespace in other branches
  1. 7 opigno.module \opigno_theme()

Implements hook_theme()

File

./opigno.module, line 182
Contains all hook_implementations and module specific API.

Code

function opigno_theme() {
  return array(
    'opigno__og_tool' => array(
      'variables' => array(
        'machine_name' => NULL,
        'name' => NULL,
        'url' => NULL,
      ),
      'template' => 'theme/opigno--og-tool',
    ),
    'opigno__add_content_to_og_list' => array(
      'variables' => array(
        'tools' => array(),
      ),
      'template' => 'theme/opigno--add-content-to-og-list',
    ),
  );
}