cakephp-1.3 > Model :: saveAll()
Model
- __collectForeignKeys
- __construct
- __constructLinkedModel
- __createLinks
- __filterResults
- __generateAssociation
- __save
- __saveMulti
- __sleep
- __validateWithModels
- __wakeup
- _clearCache
- _deleteDependent
- _deleteLinks
- _findCount
- _findFirst
- _findList
- _findNeighbors
- _findThreaded
- _prepareUpdateFields
- &getDataSource
- afterDelete
- afterFind
- afterSave
- beforeDelete
- beforeFind
- beforeSave
- beforeValidate
- bindModel
- call__
- create
- deconstruct
- delete
- deleteAll
- escapeField
- exists
- field
- find
- getAffectedRows
- getAssociated
- getColumnType
- getColumnTypes
- getID
- getInsertID
- getLastInsertID
- getNumRows
- getVirtualField
- hasAny
- hasField
- invalidate
- invalidFields
- isForeignKey
- isUnique
- isVirtualField
- joinModel
- onError
- query
- read
- resetAssociations
- save
- saveAll
- saveField
- schema
- set
- setDataSource
- setInsertID
- setSource
- unbindModel
- updateAll
- updateCounterCache
- validates
A
AclBase
AclBehavior
AclComponent
AclNode
AclShell
Aco
AcoAction
AjaxHelper
ApcEngine
ApiShell
App
AppController
AppController
AppHelper
AppHelper
AppModel
AppModel
Aro
AuthComponent
B
BakeShell
BakeTask
BehaviorCollection
C
Cache
CacheEngine
CacheHelper
CakeErrorController
CakeLog
CakeRoute
CakeSchema
CakeSession
CakeSocket
ClassRegistry
Component
Configure
ConnectionManager
ConsoleShell
ContainableBehavior
Controller
ControllerTask
CookieComponent
D
DataSource
DbAcl
DbAclSchema
DbConfigTask
DboMssql
DboMysql
DboMysqlBase
DboMysqli
DboOracle
DboPostgres
DboSource
DboSqlite
Debugger
Dispatcher
E
EmailComponent
ErrorHandler
ErrorHandler
ExtractTask
F
File
FileEngine
FileLog
FixtureTask
Folder
FormHelper
H
Helper
HtmlHelper
HttpSocket
I
I18n
I18nModel
i18nSchema
I18nShell
Inflector
IniAcl
J
JavascriptHelper
JqueryEngineHelper
JsBaseEngineHelper
JsHelper
L
L10n
M
MagicDb
MagicFileResource
MediaView
MemcacheEngine
Model
ModelBehavior
ModelTask
MootoolsEngineHelper
Multibyte
N
NumberHelper
O
Object
Overloadable
Overloadable
Overloadable2
Overloadable2
P
PagesController
PagesController
PaginatorHelper
Permission
PluginShortRoute
PluginTask
ProjectTask
PrototypeEngineHelper
R
RequestHandlerComponent
Router
RssHelper
S
Sanitize
Scaffold
ScaffoldView
SchemaShell
Security
SecurityComponent
SessionComponent
SessionHelper
SessionsSchema
Set
Shell
ShellDispatcher
String
T
TemplateTask
TestSuiteShell
TestTask
TextHelper
ThemeView
TimeHelper
TranslateBehavior
TreeBehavior
V
Validation
View
ViewTask
X
XcacheEngine
Xml
XmlElement
XmlHelper
XmlManager
XmlNode
XmlTextNode
saveAll
line:1575 at
/cake/libs/model/model.php
Saves multiple individual records for a single model; Also works with a single record, as well as
all its associated records.
Method
(mixed)
saveAll
($data = null, $options = array())
Parameters
Parameter | Type | Comment | Default |
---|---|---|---|
$data | array | optional Record data to save. This can be either a numerically-indexed array (for saving multiple records of the same type), or an array indexed by association name. | null |
$options | array | optional Options to use when saving record data, See $options above. | array() |
Return
mixedComment
Saves multiple individual records for a single model; Also works with a single record, as well as
all its associated records.
#### Options
- validate: Set to false to disable validation, true to validate each record before saving,
'first' to validate *all* records before any are saved (default),
or 'only' to only validate the records, but not save them.
- atomic: If true (default), will attempt to save all records in a single transaction.
Should be set to false if database/table does not support transactions.
- fieldList: Equivalent to the $fieldList parameter in Model::save()
@param array $data Record data to save. This can be either a numerically-indexed array (for saving multiple
records of the same type), or an array indexed by association name.
@param array $options Options to use when saving record data, See $options above.
@return mixed If atomic: True on success, or false on failure.
Otherwise: array similar to the $data array passed, but values are set to true/false
depending on whether each record saved successfully.
@access public
@link http://book.cakephp.org/view/1032/Saving-Related-Model-Data-hasOne-hasMany-belongsTo
@link http://book.cakephp.org/view/1031/Saving-Your-Data
all its associated records.
#### Options
- validate: Set to false to disable validation, true to validate each record before saving,
'first' to validate *all* records before any are saved (default),
or 'only' to only validate the records, but not save them.
- atomic: If true (default), will attempt to save all records in a single transaction.
Should be set to false if database/table does not support transactions.
- fieldList: Equivalent to the $fieldList parameter in Model::save()
@param array $data Record data to save. This can be either a numerically-indexed array (for saving multiple
records of the same type), or an array indexed by association name.
@param array $options Options to use when saving record data, See $options above.
@return mixed If atomic: True on success, or false on failure.
Otherwise: array similar to the $data array passed, but values are set to true/false
depending on whether each record saved successfully.
@access public
@link http://book.cakephp.org/view/1032/Saving-Related-Model-Data-hasOne-hasMany-belongsTo
@link http://book.cakephp.org/view/1031/Saving-Your-Data