oa_home.module in Open Atrium Home 7.2
File
oa_home.moduleView source
<?php
/**
* @file
* Code for the Open Atrium Home feature.
*/
include_once 'oa_home.features.inc';
/**
* Implements hook_ctools_plugin_directory().
*/
function oa_home_ctools_plugin_directory($owner, $plugin_type) {
if ($owner == 'ctools') {
return "plugins/{$plugin_type}";
}
}
/**
* Implements hook_theme()
*/
function oa_home_theme() {
return array(
'oa_home_default' => array(
'template' => 'oa-home-default',
),
);
}
Functions
Name![]() |
Description |
---|---|
oa_home_ctools_plugin_directory | Implements hook_ctools_plugin_directory(). |
oa_home_theme | Implements hook_theme() |