You are here

function field_orbit_theme in ZURB Orbit 7

Same name and namespace in other branches
  1. 8 field_orbit.module \field_orbit_theme()
  2. 7.2 field_orbit.module \field_orbit_theme()

Implements hook_theme().

File

./field_orbit.module, line 422
Implement a orbit formatter for fields.

Code

function field_orbit_theme() {
  return array(
    'field_orbit' => array(
      'variables' => array(
        'items' => NULL,
        'options' => NULL,
        'entity' => NULL,
      ),
      'template' => 'field_orbit',
    ),
  );
}