You are here

function img_assist_theme in Image Assist 6

Same name and namespace in other branches
  1. 6.2 img_assist.module \img_assist_theme()

Implementation of hook_theme().

File

./img_assist.module, line 28
Image Assist module

Code

function img_assist_theme() {
  return array(
    'img_assist_textarea_link' => array(
      'arguments' => array(
        'element' => NULL,
        'link' => NULL,
      ),
    ),
    'img_assist_inline' => array(
      'arguments' => array(
        'node' => NULL,
        'size' => NULL,
        'attributes' => NULL,
      ),
    ),
    'img_assist_filter' => array(
      'arguments' => array(
        'text' => NULL,
      ),
    ),
    'img_assist_popup' => array(
      'arguments' => array(
        'content' => NULL,
        'attributes' => NULL,
      ),
    ),
    'img_assist_page' => array(
      'arguments' => array(
        'content' => NULL,
        'attributes' => NULL,
      ),
    ),
    'img_assist_legacy' => array(),
  );
}