You are here

function interval_theme in Interval Field 7

Same name and namespace in other branches
  1. 8 interval.module \interval_theme()

Implements hook_theme().

File

./interval.module, line 278
Defines an interval field @copyright Copyright(c) 2011 Rowlands Group @license GPL v2+ http://www.fsf.org/licensing/licenses/gpl.html @author Lee Rowlands leerowlands at rowlandsgroup dot com

Code

function interval_theme() {
  $hooks = array(
    'interval' => array(
      'render element' => 'element',
    ),
  );
  return $hooks;
}