You are here

function simplecrop_theme in SimpleCrop 7

Implements hook_theme().

File

./simplecrop.module, line 48
Contains main hook definitions for SimpleCrop module.

Code

function simplecrop_theme() {
  return array(
    'simplecrop_widget' => array(
      'render element' => 'element',
      'template' => 'simplecrop-widget',
      'path' => drupal_get_path('module', 'simplecrop') . '/templates',
    ),
  );
}