| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 38 | public function getCMSFields() |
||
| 39 | { |
||
| 40 | $fields = parent::getCMSFields(); |
||
| 41 | |||
| 42 | $fields->addFieldsToTab('Root.Main', array( |
||
| 43 | TextField::create('Property', _t('SetPropertyWorkflowAction.PROPERTY', 'Property')) |
||
| 44 | ->setRightTitle(_t( |
||
| 45 | 'SetPropertyWorkflowAction.PROPERTYTITLE', |
||
| 46 | 'Property to set; if this exists as a setter method, will be called passing the value' |
||
| 47 | )), |
||
| 48 | TextField::create('Value', 'Value') |
||
| 49 | )); |
||
| 50 | |||
| 51 | return $fields; |
||
| 52 | } |
||
| 53 | } |
||
| 54 |