Changeset 17 for php/trunk/samples


Ignore:
Timestamp:
Jul 12, 2011, 10:56:58 AM (14 years ago)
Author:
cla
Message:

rdfint

  • prefix non-standard methods of rdfa::Data and rdfa::Projection with underscore
  • add note to description of rdfa::SparlEndpoint and rdfa::SparlQuery that they are no-standard as well
File:
1 edited

Legend:

Unmodified
Added
Removed
  • php/trunk/samples/rdfa_simple_api/sample.php

    r6 r17  
    5555
    5656  $debugger->sendMessage( "Retrieving name of person", debugcontext);
    57   $litName = $rdfaData->getFirstValue( $uriPerson, 'foaf:name');
     57  $litName = $rdfaData->_getFirstValue( $uriPerson, 'foaf:name');
    5858
    5959  // get triples of work blank node
     
    6262
    6363  $debugger->sendMessage( "Retrieving city of work", debugcontext);
    64   $litCity =  $rdfaData->getFirstValue( $aUriWork[ 0], 'foaf:city');
     64  $litCity =  $rdfaData->_getFirstValue( $aUriWork[ 0], 'foaf:city');
    6565
    6666  $debugger->sendMessage( "Data for person complete: $uriPerson\n".
Note: See TracChangeset for help on using the changeset viewer.