Home
last modified time | relevance | path

Searched refs:tosave (Results 1 – 7 of 7) sorted by relevance

/plugin/struct/action/
H A Dentry.php36 protected $tosave;
67 $this->tosave = [];
78 $this->tosave = $valid;
106 if ((is_array($this->tosave) && count($this->tosave)) || isset($GLOBALS['struct_plugin_force_page_save'])) {
148 } elseif ($this->tosave) {
150 foreach ($this->tosave as $validation) {
33 protected $tosave; global() variable in action_plugin_struct_entry
H A Drevert.php54 $tosave = $assignments->getPageAssignments($event->data['id']);
55 if ($tosave !== []) {
79 $tosave = $assignments->getPageAssignments($event->data['id']);
80 foreach ($tosave as $table) {
H A Dbureaucracy.php149 $tosave = [];
155 if (!isset($tosave[$tbl])) $tosave[$tbl] = [];
158 $tosave[$tbl][$lbl] = $field->opt['struct_pids'];
160 $tosave[$tbl][$lbl] = $field->getParam('value');
170 foreach ($tosave as $table => $data) {
H A Dinline.php148 $tosave = $this->schemadata->getDataArray();
149 $tosave[$this->column->getLabel()] = $value;
160 if (!$this->schemadata->saveData($tosave)) {
/plugin/struct/helper/
H A Dlookup.php27 $tosave = [];
33 if (!isset($tosave[$tbl])) $tosave[$tbl] = [];
34 $tosave[$tbl][$lbl] = $field->getParam('value');
37 foreach ($tosave as $table => $data) {
/plugin/structupdate/helper/
H A Dupdate.php50 $tosave = [];
56 if(!isset($tosave[$tbl])) $tosave[$tbl] = [];
57 $tosave[$tbl][$lbl] = $field->getParam('value');
82 if (isset($tosave[$table])) {
83 $schemadata[$table] = array_replace($schemadata[$table], $tosave[$table]);
/plugin/struct/meta/
H A DAccessDataValidator.php44 $tosave = [];
57 $tosave[] = $validation;
60 if ($valid) return $tosave;