Changeset 29 for php/trunk/classes/rdfa_SparqlEndpoint.php
- Timestamp:
- Jul 13, 2011, 1:33:27 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
php/trunk/classes/rdfa_SparqlEndpoint.php
r17 r29 49 49 * Creates an endpoint configuration class instance. 50 50 * 51 * \param aconfig associative list of configuration data51 * \param aconfig Associative list of configuration data 52 52 */ 53 53 public function __construct( $aconfig) { … … 58 58 // initialize instance vars 59 59 $this->aconfig = array(); 60 60 61 61 // store inital configuration 62 62 if (is_array( $aconfig)) { … … 79 79 * Sets a single configuration value 80 80 * 81 * \param name name of the configurarion value 82 * \param value new value to be set 81 * \param name Name of the configurarion value 82 * \param value New value to be set 83 * \retval void 83 84 */ 84 85 public function setConfigurationValue( $name, $value) { … … 93 94 * Gets a single configuration value 94 95 * 95 * \param name name of the configurarion value 96 * \param name Name of the configurarion value 97 * \retval string Value of the specified configuration value 98 * \retval boolean false: the configuration value was not found 96 99 */ 97 100 public function getConfigurationValue( $name) { … … 106 109 /** 107 110 * Queries an associative list of the configuration values 111 * 112 * \retval array Associative list of the configuration data 108 113 */ 109 114 public function getConfigurationValues( ) {
Note:
See TracChangeset
for help on using the changeset viewer.