function img_assist_theme in Image Assist 6.2
Same name and namespace in other branches
- 6 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_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(),
);
}