public function WsBean::values in Web Service Data 7
Default values for the bean's settings
Overrides BeanPlugin::values
File
- modules/
wsbeans/ plugins/ beans/ wsbeans_wsbean.inc, line 12 - Listing bean plugin.
Class
- WsBean
- @file Listing bean plugin.
Code
public function values() {
$values = array(
'settings' => array(
'wsconfig_settings' => array(
'wsconfig' => '',
'replacements' => array(),
'arguments' => '',
'options' => '',
),
'wsprocessor' => '',
'themehook' => '',
),
);
return array_merge(parent::values(), $values);
}