Skip to content
Snippets Groups Projects
Commit 966aede0 authored by jaapjansma's avatar jaapjansma
Browse files

update

parent 9628bc00
No related branches found
No related tags found
No related merge requests found
......@@ -81,7 +81,7 @@
protected function getFields($formProcessorName, $apiParams, $fieldName = null) {
$fields = array();
$cacheKey = 'FormProcessor.getfields.'.strtolower($formProcessorName).'.'.$fieldName;
$cacheKey = 'FormProcessor.getfields.'.strtolower($formProcessorName);
if ($cache = Cache::get($cacheKey)) {
return $cache;
}
......@@ -96,9 +96,6 @@
// Process all inputs of the formprocessor.
foreach($formProcessor['inputs'] as $input) {
if ($fieldName && $fieldName != $input['name']) {
continue;
}
$field = array(
'name' => $input['name'],
'title' => $input['name'],
......
......@@ -45,4 +45,12 @@
return $this->options;
}
/**
* Sets the default values of this action
*/
public function setDefaults() {
parent::setDefaults();
$this->options = null;
}
}
......@@ -45,4 +45,12 @@
return $this->options;
}
/**
* Sets the default values of this action
*/
public function setDefaults() {
parent::setDefaults();
$this->options = null;
}
}
......@@ -194,6 +194,7 @@ class OptionGroupType extends AbstractType implements OptionListInterface {
$this->normalizedOptions = null;
$this->denormalizedOptions = null;
$this->options = null;
$this->optionsLoaded = false;
}
}
......@@ -110,4 +110,13 @@ class ParentMailingGroupType extends AbstractType implements OptionListInterface
$this->_groupsLoaded = TRUE;
}
/**
* Sets the default values of this action
*/
public function setDefaults() {
parent::setDefaults();
$this->_groupsLoaded = FALSE;
$this->_childGroups = array();
}
}
......@@ -86,4 +86,13 @@ class YesNoOptionListType extends AbstractType implements OptionListInterface {
return $this->options;
}
/**
* Sets the default values of this action
*/
public function setDefaults() {
parent::setDefaults();
$this->options = null;
$this->optionsLoaded = false;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment