MINOR documentation

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@73055 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Ingo Schommer 2009-03-14 19:09:00 +00:00
parent 41fb93b344
commit bc8cd107db
3 changed files with 7 additions and 1 deletions

View File

@ -10,6 +10,8 @@
* your model layer (ie, the DataObject classes) and not in your Controllers. This is the recommended design for Sapphire * your model layer (ie, the DataObject classes) and not in your Controllers. This is the recommended design for Sapphire
* applications. * applications.
* *
* Enabling restful access on a model will also enable a SOAP API, see {@link SOAPModelAccess}.
*
* Example DataObject with simple api access, giving full access to all object properties and relations, * Example DataObject with simple api access, giving full access to all object properties and relations,
* unless explicitly controlled through model permissions. * unless explicitly controlled through model permissions.
* <code> * <code>

View File

@ -2,6 +2,7 @@
/** /**
* Basic SOAP Server to access and modify DataObject instances. * Basic SOAP Server to access and modify DataObject instances.
* You can enable SOAP access on a DataObject by setting {@link DataObject::$api_access} to true. * You can enable SOAP access on a DataObject by setting {@link DataObject::$api_access} to true.
* This means that you'll also enable a RESTful API through {@link RestfulServer}.
* *
* Usage - Getting a record: * Usage - Getting a record:
* <code> * <code>

View File

@ -1,6 +1,9 @@
<?php <?php
/** /**
* Soap server class * Soap server class.
* See {@link SOAPModelAccess} for an auto-generated
* SOAP API for your models.
*
* @todo Improve documentation * @todo Improve documentation
* @package sapphire * @package sapphire
* @subpackage integration * @subpackage integration