mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
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:
parent
41fb93b344
commit
bc8cd107db
@ -10,6 +10,8 @@
|
||||
* your model layer (ie, the DataObject classes) and not in your Controllers. This is the recommended design for Sapphire
|
||||
* 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,
|
||||
* unless explicitly controlled through model permissions.
|
||||
* <code>
|
||||
|
@ -2,6 +2,7 @@
|
||||
/**
|
||||
* 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.
|
||||
* This means that you'll also enable a RESTful API through {@link RestfulServer}.
|
||||
*
|
||||
* Usage - Getting a record:
|
||||
* <code>
|
||||
|
@ -1,6 +1,9 @@
|
||||
<?php
|
||||
/**
|
||||
* Soap server class
|
||||
* Soap server class.
|
||||
* See {@link SOAPModelAccess} for an auto-generated
|
||||
* SOAP API for your models.
|
||||
*
|
||||
* @todo Improve documentation
|
||||
* @package sapphire
|
||||
* @subpackage integration
|
||||
|
Loading…
Reference in New Issue
Block a user