function cmis_browser_theme in CMIS API 7
Same name and namespace in other branches
- 6.4 cmis_browser/cmis_browser.module \cmis_browser_theme()
- 6 cmis_browser/cmis_browser.module \cmis_browser_theme()
- 6.2 cmis_browser/cmis_browser.module \cmis_browser_theme()
- 6.3 cmis_browser/cmis_browser.module \cmis_browser_theme()
- 7.2 cmis_browser/cmis_browser.module \cmis_browser_theme()
Register custom themes for cmis_browser module.
File
- cmis_browser/
cmis_browser.module, line 91
Code
function cmis_browser_theme() {
return array(
'cmis_browser_popup' => array(
'arguments' => array(
'context' => NULL,
),
'file' => 'cmis_browser.theme.inc',
'render element' => 'page',
'template' => 'cmis-browser-popup',
),
'cmis_browser' => array(
'arguments' => array(
'context' => NULL,
),
'file' => 'cmis_browser.theme.inc',
),
'cmis_browser_browse_form' => array(
'arguments' => array(
'form' => NULL,
),
'file' => 'cmis_browser.theme.inc',
'render element' => 'form',
),
'cmis_browser_browse_children' => array(
'arguments' => array(
'context' => NULL,
),
'file' => 'cmis_browser.theme.inc',
),
'cmis_browser_browse_breadcrumb' => array(
'arguments' => array(
'bcarray' => NULL,
),
'file' => 'cmis_browser.theme.inc',
),
'cmis_browser_content_properties' => array(
'arguments' => array(
'cmis_object' => NULL,
),
'file' => 'cmis_browser.theme.inc',
),
'cmis_browser_folder_picker' => array(
'arguments' => array(
'text_element' => NULL,
),
'file' => 'cmis_browser.theme.inc',
),
);
}