lithium\data\Model::save()

public method

An instance method (called on record and document objects) to create or update the record or document in the database that corresponds to $entity.

For example, to create a new record or document:

$post = Posts::create(); // Creates a new object, which doesn't exist in the database yet
$post->title = "My post";
$success = $post->save();

It is also used to update existing database objects, as in the following:

$post = Posts::first($id);
$post->title = "Revised title";
$success = $post->save();

By default, an object's data will be checked against the validation rules of the model it is bound to. Any validation errors that result can then be accessed through the errors() method.

if (!$post->save($someData)) {
    return ['errors' => $post->errors()];
}

To override the validation checks and save anyway, you can pass the 'validate' option:

$post->title = "We Don't Need No Stinkin' Validation";
$post->body = "I know what I'm doing.";
$post->save(null, ['validate' => false]);

By default only validates and saves fields from the schema (if available). This behavior can be controlled via the 'whitelist' and 'locked' options.

Parameters

  • object $entity

    The record or document object to be saved in the database. This parameter is implicit and should not be passed under normal circumstances. In the above example, the call to save() on the $post object is transparently proxied through to the Posts model class, and $post is passed in as the $entity parameter.

  • array $data

    Any data that should be assigned to the record before it is saved.

  • array $options

    Options:

    • 'callbacks' boolean: If false, all callbacks will be disabled before executing. Defaults to true.
    • 'validate' boolean|array: If false, validation will be skipped, and the record will be immediately saved. Defaults to true. May also be specified as an array, in which case it will replace the default validation rules specified in the $validates property of the model.
    • 'events' string|array: A string or array defining one or more validation events. Events are different contexts in which data events can occur, and correspond to the optional 'on' key in validation rules. They will be passed to the validates() method if 'validate' is not false.
    • 'whitelist' array: An array of fields that are allowed to be saved to this record. When unprovided will - if available - default to fields of the current schema and the 'locked' option is not false.
    • 'locked' boolean: Whether to use schema for saving just fields from the schema or not. Defaults to true.

Returns

boolean

Returns true on a successful save operation, false on failure.

Filter

This method can be filtered.

Source

	public function save($entity, $data = null, array $options = []) {
		$self = static::object();
		$_meta = ['model' => get_called_class()] + $self->_meta;
		$_schema = $self->schema();

		$defaults = [
			'validate' => true,
			'events' => $entity->exists() ? 'update' : 'create',
			'whitelist' => null,
			'callbacks' => true,
			'locked' => $self->_meta['locked']
		];
		$options += $defaults;
		$params = compact('entity', 'data', 'options');

		$filter = function($params) use ($_meta, $_schema) {
			$entity = $params['entity'];
			$options = $params['options'];

			if ($params['data']) {
				$entity->set($params['data']);
			}
			if (($whitelist = $options['whitelist']) || $options['locked']) {
				$whitelist = $whitelist ?: array_keys($_schema->fields());
			}
			if ($rules = $options['validate']) {
				$events = $options['events'];
				$validateOpts = compact('events', 'whitelist');
				if (is_array($rules)) {
					$validateOpts['rules'] = $rules;
				}

				if (!$entity->validates($validateOpts)) {
					return false;
				}
			}
			$type = $entity->exists() ? 'update' : 'create';

			$query = Libraries::instance(
				null,
				'query',
				compact('type', 'whitelist', 'entity') + $options + $_meta,
				static::object()->_classes
			);
			return static::connection()->{$type}($query, $options);
		};

		if (!$options['callbacks']) {
			return $filter($params);
		}
		return Filters::run(get_called_class(), __FUNCTION__, $params, $filter);
	}