-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathRepeaterBuilder.php
More file actions
79 lines (70 loc) · 1.9 KB
/
Copy pathRepeaterBuilder.php
File metadata and controls
79 lines (70 loc) · 1.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?php
namespace StoutLogic\AcfBuilder;
/**
* Repeater field
* Can add multiple fields as subfields to the repeater.
*/
class RepeaterBuilder extends GroupBuilder
{
use Traits\CanSingularize;
/**
* Used to contain and add fields
* @var FieldsBuilder
*/
protected $fieldsBuilder;
/**
* @param string $name Field name
* @param string $type Field name
* @param array $config Field configuration
*/
public function __construct($name, $type = 'repeater', $config = [])
{
parent::__construct($name, $type, $config);
if (!array_key_exists('button_label', $config)) {
$this->setConfig('button_label', $this->getDefaultButtonLabel());
}
}
/**
* Return a repeater field configuration array
* @return array
*/
public function build()
{
$config = parent::build();
if (array_key_exists('collapsed', $config)) {
$collapseField = $this->fieldsBuilder->getField($config['collapsed']);
$fieldKey = $collapseField->getKey();
if ($collapseField->hasCustomKey()) {
$config['collapsed'] = $fieldKey;
$config['_has_custom_collapsed_key'] = true;
} else {
$fieldKey = preg_replace('/^field_/', '', $fieldKey);
$config['collapsed'] = $this->getName() . '_' . $fieldKey;
}
}
return $config;
}
/**
* Returns call chain to parentContext
* @return Builder
*/
public function endRepeater()
{
return $this->getParentContext();
}
/**
* @inheritdoc
*/
public function end()
{
return $this->endRepeater();
}
/**
* Generates the default button label.
* @return string
*/
private function getDefaultButtonLabel()
{
return 'Add ' . $this->singularize($this->getLabel());
}
}