add customfield text + fix options in custom fields

This commit is contained in:
2014-11-08 11:55:59 +01:00
parent 4c9b6a6a15
commit 99a88e8705
5 changed files with 58 additions and 35 deletions

View File

@@ -27,7 +27,7 @@ class CustomField
/**
* @var boolean
*/
private $active;
private $active = true;
/**
*
@@ -277,4 +277,12 @@ class CustomField
{
return $this->customFieldGroup;
}
public function setSlug($slug)
{
$this->slug = $slug;
return $this;
}
}