public function BeanTestPlugin::values in Bean (for Drupal 7) 7
Define the form values and their defaults
Be sure to call combine the results form the parent::values() with yours
Overrides BeanPlugin::values
File
- tests/
bean_test.module, line 62 - Primary hook implementations for the Bean Test module.
Class
Code
public function values() {
return array(
'test_boolean' => TRUE,
'test_string' => t('String'),
'test_array' => array(
'test_array_1' => 'test_array_1',
),
);
}