You are here

function smartcrop_theme in Smart Crop 6

Implementation of hook_theme().

File

./smartcrop.module, line 26

Code

function smartcrop_theme() {
  $theme = array(
    'smartcrop_scale_and_crop' => array(
      'file' => 'smartcrop_actions.inc',
      'arguments' => array(
        'element' => NULL,
      ),
    ),
    'smartcrop_crop' => array(
      'file' => 'smartcrop_actions.inc',
      'arguments' => array(
        'element' => NULL,
      ),
    ),
  );
  return $theme;
}