You are here

function popups_theme in Popups API (Ajax Dialogs) 6

Same name and namespace in other branches
  1. 7 popups.module \popups_theme()

Implementation of hook_theme().

File

./popups.module, line 101
This module provides a hook_popups for links to be openned in an Ajax Popup Dialog.

Code

function popups_theme($existing, $type) {
  return array(
    'popups_popup' => array(
      'template' => 'popups-popup',
    ),
    'popups_save_dialog' => array(),
  );
}