__table = 'civicrm_mail_settings'; parent::__construct(); } /** * Returns localized title of this entity. * * @param bool $plural * Whether to return the plural version of the title. */ public static function getEntityTitle($plural = FALSE) { return $plural ? ts('Mail Settingses') : ts('Mail Settings'); } /** * Returns foreign keys and entity references. * * @return array * [CRM_Core_Reference_Interface] */ public static function getReferenceColumns() { if (!isset(Civi::$statics[__CLASS__]['links'])) { Civi::$statics[__CLASS__]['links'] = static::createReferenceColumns(__CLASS__); Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'domain_id', 'civicrm_domain', 'id'); CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']); } return Civi::$statics[__CLASS__]['links']; } /** * Returns all the column names of this table * * @return array */ public static function &fields() { if (!isset(Civi::$statics[__CLASS__]['fields'])) { Civi::$statics[__CLASS__]['fields'] = [ 'id' => [ 'name' => 'id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Mail Settings ID'), 'description' => ts('primary key'), 'required' => TRUE, 'where' => 'civicrm_mail_settings.id', 'table_name' => 'civicrm_mail_settings', 'entity' => 'MailSettings', 'bao' => 'CRM_Core_BAO_MailSettings', 'localizable' => 0, 'html' => [ 'type' => 'Number', ], 'readonly' => TRUE, 'add' => '2.2', ], 'domain_id' => [ 'name' => 'domain_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Domain ID'), 'description' => ts('Which Domain is this match entry for'), 'required' => TRUE, 'where' => 'civicrm_mail_settings.domain_id', 'table_name' => 'civicrm_mail_settings', 'entity' => 'MailSettings', 'bao' => 'CRM_Core_BAO_MailSettings', 'localizable' => 0, 'FKClassName' => 'CRM_Core_DAO_Domain', 'html' => [ 'label' => ts("Domain"), ], 'pseudoconstant' => [ 'table' => 'civicrm_domain', 'keyColumn' => 'id', 'labelColumn' => 'name', ], 'add' => '3.1', ], 'name' => [ 'name' => 'name', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Mail Settings Name'), 'description' => ts('name of this group of settings'), 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, 'where' => 'civicrm_mail_settings.name', 'table_name' => 'civicrm_mail_settings', 'entity' => 'MailSettings', 'bao' => 'CRM_Core_BAO_MailSettings', 'localizable' => 0, 'add' => '2.2', ], 'is_default' => [ 'name' => 'is_default', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Is Default Mail Settings?'), 'description' => ts('whether this is the default set of settings for this domain'), 'required' => TRUE, 'where' => 'civicrm_mail_settings.is_default', 'default' => '0', 'table_name' => 'civicrm_mail_settings', 'entity' => 'MailSettings', 'bao' => 'CRM_Core_BAO_MailSettings', 'localizable' => 0, 'add' => '2.2', ], 'domain' => [ 'name' => 'domain', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('email Domain'), 'description' => ts('email address domain (the part after @)'), 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, 'where' => 'civicrm_mail_settings.domain', 'table_name' => 'civicrm_mail_settings', 'entity' => 'MailSettings', 'bao' => 'CRM_Core_BAO_MailSettings', 'localizable' => 0, 'add' => '2.2', ], 'localpart' => [ 'name' => 'localpart', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('email Local Part'), 'description' => ts('optional local part (like civimail+ for addresses like civimail+s.1.2@example.com)'), 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, 'where' => 'civicrm_mail_settings.localpart', 'table_name' => 'civicrm_mail_settings', 'entity' => 'MailSettings', 'bao' => 'CRM_Core_BAO_MailSettings', 'localizable' => 0, 'add' => '2.2', ], 'return_path' => [ 'name' => 'return_path', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Return Path'), 'description' => ts('contents of the Return-Path header'), 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, 'where' => 'civicrm_mail_settings.return_path', 'table_name' => 'civicrm_mail_settings', 'entity' => 'MailSettings', 'bao' => 'CRM_Core_BAO_MailSettings', 'localizable' => 0, 'add' => '2.2', ], 'protocol' => [ 'name' => 'protocol', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Protocol'), 'description' => ts('name of the protocol to use for polling (like IMAP, POP3 or Maildir)'), 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, 'where' => 'civicrm_mail_settings.protocol', 'table_name' => 'civicrm_mail_settings', 'entity' => 'MailSettings', 'bao' => 'CRM_Core_BAO_MailSettings', 'localizable' => 0, 'html' => [ 'type' => 'Select', ], 'pseudoconstant' => [ 'optionGroupName' => 'mail_protocol', 'optionEditPath' => 'civicrm/admin/options/mail_protocol', ], 'add' => '2.2', ], 'server' => [ 'name' => 'server', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Mail Server'), 'description' => ts('server to use when polling'), 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, 'where' => 'civicrm_mail_settings.server', 'table_name' => 'civicrm_mail_settings', 'entity' => 'MailSettings', 'bao' => 'CRM_Core_BAO_MailSettings', 'localizable' => 0, 'add' => '2.2', ], 'port' => [ 'name' => 'port', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Mail Port'), 'description' => ts('port to use when polling'), 'where' => 'civicrm_mail_settings.port', 'table_name' => 'civicrm_mail_settings', 'entity' => 'MailSettings', 'bao' => 'CRM_Core_BAO_MailSettings', 'localizable' => 0, 'add' => '2.2', ], 'username' => [ 'name' => 'username', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Mail Account Username'), 'description' => ts('username to use when polling'), 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, 'where' => 'civicrm_mail_settings.username', 'table_name' => 'civicrm_mail_settings', 'entity' => 'MailSettings', 'bao' => 'CRM_Core_BAO_MailSettings', 'localizable' => 0, 'add' => '2.2', ], 'password' => [ 'name' => 'password', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Mail Account Password'), 'description' => ts('password to use when polling'), 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, 'where' => 'civicrm_mail_settings.password', 'table_name' => 'civicrm_mail_settings', 'entity' => 'MailSettings', 'bao' => 'CRM_Core_BAO_MailSettings', 'localizable' => 0, 'add' => '2.2', ], 'is_ssl' => [ 'name' => 'is_ssl', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Mail Account Uses SSL'), 'description' => ts('whether to use SSL or not'), 'required' => TRUE, 'where' => 'civicrm_mail_settings.is_ssl', 'default' => '0', 'table_name' => 'civicrm_mail_settings', 'entity' => 'MailSettings', 'bao' => 'CRM_Core_BAO_MailSettings', 'localizable' => 0, 'add' => '2.2', ], 'source' => [ 'name' => 'source', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Mail Folder'), 'description' => ts('folder to poll from when using IMAP, path to poll from when using Maildir, etc.'), 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, 'where' => 'civicrm_mail_settings.source', 'table_name' => 'civicrm_mail_settings', 'entity' => 'MailSettings', 'bao' => 'CRM_Core_BAO_MailSettings', 'localizable' => 0, 'add' => '2.2', ], 'activity_status' => [ 'name' => 'activity_status', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Activity Status'), 'description' => ts('Name of status to use when creating email to activity.'), 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, 'where' => 'civicrm_mail_settings.activity_status', 'table_name' => 'civicrm_mail_settings', 'entity' => 'MailSettings', 'bao' => 'CRM_Core_BAO_MailSettings', 'localizable' => 0, 'html' => [ 'type' => 'Select', ], 'pseudoconstant' => [ 'optionGroupName' => 'activity_status', 'keyColumn' => 'name', 'optionEditPath' => 'civicrm/admin/options/activity_status', ], 'add' => '4.7', ], 'is_non_case_email_skipped' => [ 'name' => 'is_non_case_email_skipped', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Skip emails which do not have a Case ID or Case hash'), 'description' => ts('Enabling this option will have CiviCRM skip any emails that do not have the Case ID or Case Hash so that the system will only process emails that can be placed on case records. Any emails that are not processed will be moved to the ignored folder.'), 'required' => TRUE, 'where' => 'civicrm_mail_settings.is_non_case_email_skipped', 'default' => '0', 'table_name' => 'civicrm_mail_settings', 'entity' => 'MailSettings', 'bao' => 'CRM_Core_BAO_MailSettings', 'localizable' => 0, 'html' => [ 'type' => 'CheckBox', ], 'add' => '5.31', ], 'is_contact_creation_disabled_if_no_match' => [ 'name' => 'is_contact_creation_disabled_if_no_match', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Do not create new contacts when filing emails'), 'required' => TRUE, 'where' => 'civicrm_mail_settings.is_contact_creation_disabled_if_no_match', 'default' => '0', 'table_name' => 'civicrm_mail_settings', 'entity' => 'MailSettings', 'bao' => 'CRM_Core_BAO_MailSettings', 'localizable' => 0, 'html' => [ 'type' => 'CheckBox', ], 'add' => '5.31', ], ]; CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']); } return Civi::$statics[__CLASS__]['fields']; } /** * Return a mapping from field-name to the corresponding key (as used in fields()). * * @return array * Array(string $name => string $uniqueName). */ public static function &fieldKeys() { if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) { Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields())); } return Civi::$statics[__CLASS__]['fieldKeys']; } /** * Returns the names of this table * * @return string */ public static function getTableName() { return self::$_tableName; } /** * Returns if this table needs to be logged * * @return bool */ public function getLog() { return self::$_log; } /** * Returns the list of fields that can be imported * * @param bool $prefix * * @return array */ public static function &import($prefix = FALSE) { $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'mail_settings', $prefix, []); return $r; } /** * Returns the list of fields that can be exported * * @param bool $prefix * * @return array */ public static function &export($prefix = FALSE) { $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'mail_settings', $prefix, []); return $r; } /** * Returns the list of indices * * @param bool $localize * * @return array */ public static function indices($localize = TRUE) { $indices = []; return ($localize && !empty($indices)) ? CRM_Core_DAO_AllCoreTables::multilingualize(__CLASS__, $indices) : $indices; } }