config.php 577 B

12345678910111213141516171819
  1. <?php
  2. /* All the allowed webservice classes */
  3. $WSClasses = array(
  4. "contactManager"
  5. );
  6. /* The classmap associative array. When you want to allow objects as a parameter for
  7. * your webservice method. ie. saveObject($object). By default $object will now be
  8. * a stdClass, but when you add a classname defined in the type description in the @param
  9. * documentation tag and add your class to the classmap below, the object will be of the
  10. * given type. Requires PHP 5.0.3+
  11. */
  12. $WSStructures = array(
  13. "contact" => "contact",
  14. "address" => "address",
  15. );
  16. ?>