function user_rdf_mapping

Implements hook_rdf_mapping().

File

modules/user/user.module, line 4119

Code

function user_rdf_mapping() {
    return array(
        array(
            'type' => 'user',
            'bundle' => RDF_DEFAULT_BUNDLE,
            'mapping' => array(
                'rdftype' => array(
                    'sioc:UserAccount',
                ),
                'name' => array(
                    'predicates' => array(
                        'foaf:name',
                    ),
                ),
                'homepage' => array(
                    'predicates' => array(
                        'foaf:page',
                    ),
                    'type' => 'rel',
                ),
            ),
        ),
    );
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.