function _noderelationships_theme in Node Relationships 6
Implementation of hook_theme().
1 call to _noderelationships_theme()
- noderelationships_theme in ./
noderelationships.module - Implementation of hook_theme().
File
- ./
noderelationships.system.inc, line 12 - Implementation of system related functions that are not executed during normal site operation.
Code
function _noderelationships_theme() {
return array(
// Entity relation diagram.
'noderelationships_erd_diagram' => array(
'arguments' => array(
'diagram' => NULL,
),
'file' => 'noderelationships.admin.inc',
),
'noderelationships_erd_group' => array(
'arguments' => array(
'group_type' => NULL,
'entities' => NULL,
),
'file' => 'noderelationships.admin.inc',
),
'noderelationships_erd_current' => array(
'arguments' => array(
'label' => NULL,
'items' => NULL,
),
'file' => 'noderelationships.admin.inc',
),
'noderelationships_erd_entity' => array(
'arguments' => array(
'label' => NULL,
'items' => NULL,
),
'file' => 'noderelationships.admin.inc',
),
'noderelationships_erd_relation' => array(
'arguments' => array(
'label' => NULL,
),
'file' => 'noderelationships.admin.inc',
),
// Node relationship settings.
'noderelationships_admin_settings_noderef' => array(
'arguments' => array(
'form' => NULL,
),
'file' => 'noderelationships.admin.inc',
),
'noderelationships_admin_settings_backref' => array(
'arguments' => array(
'form' => NULL,
),
'file' => 'noderelationships.admin.inc',
),
'noderelationships_admin_help' => array(
'arguments' => array(
'message' => NULL,
),
'file' => 'noderelationships.admin.inc',
),
// Back reference views.
'noderelationships_backref_view' => array(
'arguments' => array(
'title' => NULL,
'content' => NULL,
),
'file' => 'noderelationships.pages.inc',
),
'noderelationships_formatter_default' => array(
'arguments' => array(
'element' => NULL,
),
'file' => 'noderelationships.pages.inc',
),
'noderelationships_formatter_count' => array(
'arguments' => array(
'element' => NULL,
),
'file' => 'noderelationships.pages.inc',
),
// Node reference extras.
'noderelationships_noderef_page_tabs' => array(
'arguments' => array(
'mode' => NULL,
'referrer_type' => NULL,
'field_name' => NULL,
),
'file' => 'noderelationships.pages.inc',
),
'noderelationships_noderef_page_content' => array(
'arguments' => array(
'content' => NULL,
),
'file' => 'noderelationships.pages.inc',
),
'noderelationships_noderef_page_prefix' => array(
'arguments' => array(),
'file' => 'noderelationships.pages.inc',
),
'noderelationships_noderef_page_suffix' => array(
'arguments' => array(),
'file' => 'noderelationships.pages.inc',
),
'noderelationships_noderef_singleselect' => array(
'arguments' => array(
'referrer_field' => NULL,
),
'file' => 'noderelationships.pages.inc',
),
'noderelationships_noderef_multiselect' => array(
'arguments' => array(
'referrer_field' => NULL,
),
'file' => 'noderelationships.pages.inc',
),
);
}