$_options
$_options : array
Options
OOP style Save Option Builder.
This allows you to build options to save entities in a OOP style and helps you to avoid mistakes by validating the options as you build them.
$_table : \Cake\ORM\Table
Table object.
__construct(\Cake\ORM\Table $table, array $options = array())
Constructor.
\Cake\ORM\Table | $table | A table instance. |
array | $options | Options to parse when instantiating. |
parseArrayOptions(array $array) : \Cake\ORM\SaveOptionsBuilder
Takes an options array and populates the option object with the data.
This can be used to turn an options array into the object.
array | $array | Options array. |
If a given option key does not exist.
associated(string|array $associated) : \Cake\ORM\SaveOptionsBuilder
Set associated options.
string|array | $associated | String or array of associations. |
guard(boolean $guard) : \Cake\ORM\SaveOptionsBuilder
Set the guard option.
boolean | $guard | Guard the properties or not. |
validate(string $validate) : \Cake\ORM\SaveOptionsBuilder
Set the validation rule set to use.
string | $validate | Name of the validation rule set to use. |
checkExisting(boolean $checkExisting) : \Cake\ORM\SaveOptionsBuilder
Set check existing option.
boolean | $checkExisting | Guard the properties or not. |
checkRules(boolean $checkRules) : \Cake\ORM\SaveOptionsBuilder
Option to check the rules.
boolean | $checkRules | Check the rules or not. |
atomic(boolean $atomic) : \Cake\ORM\SaveOptionsBuilder
Sets the atomic option.
boolean | $atomic | Atomic or not. |
set(string $option, mixed $value) : \Cake\ORM\SaveOptionsBuilder
Setting custom options.
string | $option | Option key. |
mixed | $value | Option value. |
_normalizeAssociations(array $associations) : array
Returns an array out of the original passed associations list where dot notation is transformed into nested arrays so that they can be parsed by other routines
array | $associations | The array of included associations. |
An array having dot notation transformed into nested arrays
_associated(\Cake\ORM\Table $table, array $associations) : void
Checks that the associations exists recursively.
\Cake\ORM\Table | $table | Table object. |
array | $associations | An associations array. |
_checkAssociation(\Cake\ORM\Table $table, string $association) : void
Checks if an association exists.
\Cake\ORM\Table | $table | Table object. |
string | $association | Association name. |
If no such association exists for the given table.
<?php
/**
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
*
* Licensed under The MIT License
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
* @link https://cakephp.org CakePHP(tm) Project
* @since 3.3.0
* @license https://opensource.org/licenses/mit-license.php MIT License
*/
namespace Cake\ORM;
use ArrayObject;
use RuntimeException;
/**
* OOP style Save Option Builder.
*
* This allows you to build options to save entities in a OOP style and helps
* you to avoid mistakes by validating the options as you build them.
*
* @see \Cake\Datasource\RulesChecker
*/
class SaveOptionsBuilder extends ArrayObject
{
use AssociationsNormalizerTrait;
/**
* Options
*
* @var array
*/
protected $_options = [];
/**
* Table object.
*
* @var \Cake\ORM\Table
*/
protected $_table;
/**
* Constructor.
*
* @param \Cake\ORM\Table $table A table instance.
* @param array $options Options to parse when instantiating.
*/
public function __construct(Table $table, array $options = [])
{
$this->_table = $table;
$this->parseArrayOptions($options);
parent::__construct();
}
/**
* Takes an options array and populates the option object with the data.
*
* This can be used to turn an options array into the object.
*
* @throws \InvalidArgumentException If a given option key does not exist.
* @param array $array Options array.
* @return \Cake\ORM\SaveOptionsBuilder
*/
public function parseArrayOptions($array)
{
foreach ($array as $key => $value) {
$this->{$key}($value);
}
return $this;
}
/**
* Set associated options.
*
* @param string|array $associated String or array of associations.
* @return \Cake\ORM\SaveOptionsBuilder
*/
public function associated($associated)
{
$associated = $this->_normalizeAssociations($associated);
$this->_associated($this->_table, $associated);
$this->_options['associated'] = $associated;
return $this;
}
/**
* Checks that the associations exists recursively.
*
* @param \Cake\ORM\Table $table Table object.
* @param array $associations An associations array.
* @return void
*/
protected function _associated(Table $table, array $associations)
{
foreach ($associations as $key => $associated) {
if (is_int($key)) {
$this->_checkAssociation($table, $associated);
continue;
}
$this->_checkAssociation($table, $key);
if (isset($associated['associated'])) {
$this->_associated($table->getAssociation($key)->getTarget(), $associated['associated']);
continue;
}
}
}
/**
* Checks if an association exists.
*
* @throws \RuntimeException If no such association exists for the given table.
* @param \Cake\ORM\Table $table Table object.
* @param string $association Association name.
* @return void
*/
protected function _checkAssociation(Table $table, $association)
{
if (!$table->associations()->has($association)) {
throw new RuntimeException(sprintf('Table `%s` is not associated with `%s`', get_class($table), $association));
}
}
/**
* Set the guard option.
*
* @param bool $guard Guard the properties or not.
* @return \Cake\ORM\SaveOptionsBuilder
*/
public function guard($guard)
{
$this->_options['guard'] = (bool)$guard;
return $this;
}
/**
* Set the validation rule set to use.
*
* @param string $validate Name of the validation rule set to use.
* @return \Cake\ORM\SaveOptionsBuilder
*/
public function validate($validate)
{
$this->_table->getValidator($validate);
$this->_options['validate'] = $validate;
return $this;
}
/**
* Set check existing option.
*
* @param bool $checkExisting Guard the properties or not.
* @return \Cake\ORM\SaveOptionsBuilder
*/
public function checkExisting($checkExisting)
{
$this->_options['checkExisting'] = (bool)$checkExisting;
return $this;
}
/**
* Option to check the rules.
*
* @param bool $checkRules Check the rules or not.
* @return \Cake\ORM\SaveOptionsBuilder
*/
public function checkRules($checkRules)
{
$this->_options['checkRules'] = (bool)$checkRules;
return $this;
}
/**
* Sets the atomic option.
*
* @param bool $atomic Atomic or not.
* @return \Cake\ORM\SaveOptionsBuilder
*/
public function atomic($atomic)
{
$this->_options['atomic'] = (bool)$atomic;
return $this;
}
/**
* @return array
*/
public function toArray()
{
return $this->_options;
}
/**
* Setting custom options.
*
* @param string $option Option key.
* @param mixed $value Option value.
* @return \Cake\ORM\SaveOptionsBuilder
*/
public function set($option, $value)
{
if (method_exists($this, $option)) {
return $this->{$option}($value);
}
$this->_options[$option] = $value;
return $this;
}
}