You are here

function rdfx_theme in RDF Extensions 7.2

Implements hook_theme().

File

./rdfx.module, line 102
Extends the RDF API of Drupal core to support more RDF seralizations formats other RDF capabilities.

Code

function rdfx_theme() {
  return array(
    'rdfx_mapping_admin_overview' => array(
      'variables' => array(
        'bundle' => array(),
        'rdftype' => array(),
        'real_fields' => array(),
        'fake_fields' => array(),
      ),
    ),
    'rdfx_mapping_admin_overview_row' => array(
      'variables' => array(
        'field' => array(),
      ),
    ),
  );
}