api_theme()Implementation of hook_theme().
contrib-6/api/api.module, line 670
<?php
function api_theme() {
return array(
'api_branch_table' => array(
'arguments' => array('element' => NULL),
),
'api_expandable' => array(
'arguments' => array(
'prompt' => NULL,
'content' => NULL,
'class' => NULL,
),
'template' => 'templates/api-expandable',
),
'api_defined' => array(
'arguments' => array(
'branch' => NULL,
'object' => NULL,
),
'template' => 'templates/api-defined',
),
'api_related_topics' => array(
'arguments' => array(
'topics' => array(),
),
'template' => 'templates/api-related-topics',
),
'api_functions' => array(
'arguments' => array(
'functions' => array(),
),
'template' => 'templates/api-functions',
),
'api_function_page' => array(
'arguments' => array(
'branch' => NULL,
'function' => NULL,
'signatures' => NULL,
'documentation' => NULL,
'parameters' => NULL,
'return' => NULL,
'related_topics' => NULL,
'call' => NULL,
'code' => NULL,
'see' => NULL,
'throws' => NULL,
),
'template' => 'templates/api-function-page',
),
'api_constant_page' => array(
'arguments' => array(
'branch' => NULL,
'constant' => NULL,
'documentation' => NULL,
'code' => NULL,
'related_topics' => NULL,
'see' => NULL,
),
'template' => 'templates/api-constant-page',
),
'api_global_page' => array(
'arguments' => array(
'branch' => NULL,
'global' => NULL,
'documentation' => NULL,
'code' => NULL,
'related_topics' => NULL,
'see' => NULL,
),
'template' => 'templates/api-global-page',
),
'api_property_page' => array(
'arguments' => array(
'branch' => NULL,
'property' => NULL,
'documentation' => NULL,
'code' => NULL,
'related_topics' => NULL,
'see' => NULL,
'var' => NULL,
),
'template' => 'templates/api-property-page',
),
'api_class_page' => array(
'arguments' => array(
'branch' => NULL,
'class' => NULL,
'documentation' => NULL,
'implements' => NULL,
'hierarchy' => NULL,
'objects' => NULL,
'code' => NULL,
'related_topics' => NULL,
'see' => NULL,
),
'template' => 'templates/api-class-page',
),
'api_file_page' => array(
'arguments' => array(
'file' => NULL,
'documentation' => NULL,
'objects' => NULL,
'see' => NULL,
'related_topics' => NULL,
),
'template' => 'templates/api-file-page'
),
'api_group_page' => array(
'arguments' => array(
'branch' => NULL,
'group' => NULL,
'documentation' => NULL,
'objects' => NULL,
'see' => NULL,
),
'template' => 'templates/api-group-page'
),
'api_branch_default_page' => array(
'arguments' => array(
'branch' => NULL,
),
'template' => 'templates/api-branch-default-page'
),
);
}
?>