Adds the update option for sub-form array values
This commit is contained in:
@@ -49,12 +49,12 @@ class Update
|
||||
* Update the value
|
||||
*
|
||||
* @param mixed $value The field value
|
||||
* @param int $line The line to update (0 = all)
|
||||
* @param mixed $line The line to update (0 = all)
|
||||
*
|
||||
* @return mixed
|
||||
* @since 3.2.0
|
||||
*/
|
||||
public function value($value, int $line = 0)
|
||||
public function value($value, $line = 0)
|
||||
{
|
||||
// update the value
|
||||
$update = $this->updateValue($value, $line);
|
||||
@@ -72,26 +72,123 @@ class Update
|
||||
* Update all search-replace instances inside a value
|
||||
*
|
||||
* @param mixed $value The field value
|
||||
* @param int $line The line to update (0 = all)
|
||||
* @param mixed $line The line to update (0 = all)
|
||||
*
|
||||
* @return mixed
|
||||
* @since 3.2.0
|
||||
*/
|
||||
protected function updateValue($value, int $line = 0)
|
||||
protected function updateValue($value, $line = 0)
|
||||
{
|
||||
// I know this is a little crazy... TODO refactor into recursion functions
|
||||
// the possibility of updating sub-forms in sub-forms
|
||||
if (ArrayHelper::check($value))
|
||||
{
|
||||
echo '<pre>'; var_dump($value); exit;
|
||||
if (strpos($line, '.') !== false)
|
||||
{
|
||||
$line = explode('.', $line);
|
||||
}
|
||||
// first layer
|
||||
foreach ($value as $keys => &$rows)
|
||||
{
|
||||
if (ArrayHelper::check($rows))
|
||||
{
|
||||
// second layer
|
||||
foreach ($rows as $key => &$row)
|
||||
{
|
||||
if (ArrayHelper::check($row))
|
||||
{
|
||||
// third layer
|
||||
foreach ($row as $ke => &$ro)
|
||||
{
|
||||
if (ArrayHelper::check($ro))
|
||||
{
|
||||
// forth layer
|
||||
foreach ($ro as $k => &$r)
|
||||
{
|
||||
if (StringHelper::check($r) &&
|
||||
$this->validateUpdateKey($line, $keys, $key, $ke, $k))
|
||||
{
|
||||
$_line = (isset($line[4])) ? $line[4] : 0;
|
||||
$r = $this->string($r, $_line);
|
||||
}
|
||||
}
|
||||
}
|
||||
elseif (StringHelper::check($ro) &&
|
||||
$this->validateUpdateKey($line, $keys, $key, $ke))
|
||||
{
|
||||
$_line = (isset($line[3])) ? $line[3] : 0;
|
||||
$ro = $this->string($ro, $_line);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
elseif (StringHelper::check($row) &&
|
||||
$this->validateUpdateKey($line, $keys, $key))
|
||||
{
|
||||
$_line = (isset($line[2])) ? $line[2] : 0;
|
||||
$row = $this->string($row, $_line);
|
||||
}
|
||||
}
|
||||
}
|
||||
elseif (StringHelper::check($rows) &&
|
||||
$this->validateUpdateKey($line, $keys))
|
||||
{
|
||||
$_line = (isset($line[1])) ? $line[1] : 0;
|
||||
$rows = $this->string($rows, $_line);
|
||||
}
|
||||
}
|
||||
}
|
||||
elseif (StringHelper::check($value))
|
||||
{
|
||||
return $this->string($value, $line);
|
||||
$value = $this->string($value, $line);
|
||||
}
|
||||
else
|
||||
|
||||
return $value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Check if the keys are valid for search when working with arrays
|
||||
*
|
||||
* @param int $line The lines array
|
||||
* @param mixed $keys The line keys
|
||||
* @param mixed $key The line key
|
||||
* @param mixed $k The line ke
|
||||
* @param mixed $k The line k
|
||||
*
|
||||
* @return bool
|
||||
* @since 3.2.0
|
||||
*/
|
||||
protected function validateUpdateKey($line, $keys = null, $key = null, $ke = null, $k = null): bool
|
||||
{
|
||||
if (ArrayHelper::check($line))
|
||||
{
|
||||
// this should not happen
|
||||
echo '<pre>Error:<br />'; var_dump($value); exit;
|
||||
$_keys = (isset($line[0])) ? $line[0] : null;
|
||||
$_key = (isset($line[1])) ? $line[1] : null;
|
||||
$_ke = (isset($line[2])) ? $line[2] : null;
|
||||
$_k = (isset($line[3])) ? $line[3] : null;
|
||||
|
||||
if ($keys && $_keys && $_keys !== $keys)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
if ($key && $_key && $_key !== $key)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
if ($ke && $_ke && $_ke !== $ke)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
if ($k && $_k && $_k !== $k)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@@ -42,10 +42,10 @@ abstract class Type
|
||||
/**
|
||||
* Replace Value
|
||||
*
|
||||
* @var string|null
|
||||
* @var string
|
||||
* @since 3.2.0
|
||||
*/
|
||||
protected ?string $replaceValue;
|
||||
protected string $replaceValue;
|
||||
|
||||
/**
|
||||
* Search Should Match Case
|
||||
@@ -82,7 +82,7 @@ abstract class Type
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
* @param Config|null $config The search config object.
|
||||
* @param Config|null $config The search config object.
|
||||
*
|
||||
* @since 3.2.0
|
||||
*/
|
||||
|
Reference in New Issue
Block a user