You are here

function SimplenewsNewsletterMetadataController::entityPropertyInfo in Simplenews 7.2

Overrides EntityDefaultMetadataController::entityPropertyInfo().

Overrides EntityDefaultMetadataController::entityPropertyInfo

File

includes/simplenews.info.inc, line 18

Class

SimplenewsNewsletterMetadataController
Metadata controller for the simplenews_newsletter entity.

Code

function entityPropertyInfo() {
  $info = parent::entityPropertyInfo();
  $properties =& $info[$this->type]['properties'];
  $properties['format']['options list'] = 'simplenews_format_options';
  $properties['priority']['options list'] = 'simplenews_get_priority';
  $properties['new_account']['options list'] = 'simplenews_new_account_options';
  $properties['opt_inout']['options list'] = 'simplenew_opt_inout_options';
  $properties['receipt']['type'] = 'boolean';
  $properties['block']['type'] = 'boolean';
  $properties['from_name']['label'] = t('From name');
  $properties['from_address']['label'] = t('From address');
  $properties['new_account']['labe'] = t('New account');
  $properties['email_subject']['label'] = t('E-mail subject');
  $properties['opt_inout']['label'] = t('Opt-in/out method');
  return $info;
}