__table = 'civicrm_mail_settings'; parent::__construct(); } /** * Returns foreign keys and entity references * * @return array * [CRM_Core_Reference_Interface] */ static function getReferenceColumns() { if (!self::$_links) { self::$_links = static ::createReferenceColumns(__CLASS__); self::$_links[] = new CRM_Core_Reference_Basic(self::getTableName() , 'domain_id', 'civicrm_domain', 'id'); } return self::$_links; } /** * Returns all the column names of this table * * @return array */ static function &fields() { if (!(self::$_fields)) { self::$_fields = array( 'id' => array( 'name' => 'id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Mail Settings ID') , 'description' => 'primary key', 'required' => true, ) , 'domain_id' => array( 'name' => 'domain_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Mail Settings Domain') , 'description' => 'Which Domain is this match entry for', 'required' => true, 'FKClassName' => 'CRM_Core_DAO_Domain', 'pseudoconstant' => array( 'table' => 'civicrm_domain', 'keyColumn' => 'id', 'labelColumn' => 'name', ) ) , 'name' => array( 'name' => 'name', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Mail Settings Name') , 'description' => 'name of this group of settings', 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, ) , 'is_default' => array( 'name' => 'is_default', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Is Default Mail Settings?') , 'description' => 'whether this is the default set of settings for this domain', ) , 'domain' => array( 'name' => 'domain', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('email Domain') , 'description' => 'email address domain (the part after @)', 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, ) , 'localpart' => array( 'name' => 'localpart', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('email Local Part') , 'description' => 'optional local part (like civimail+ for addresses like civimail+s.1.2@example.com)', 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, ) , 'return_path' => array( 'name' => 'return_path', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Return Path') , 'description' => 'contents of the Return-Path header', 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, ) , 'protocol' => array( 'name' => 'protocol', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Protocol') , 'description' => 'name of the protocol to use for polling (like IMAP, POP3 or Maildir)', 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, 'html' => array( 'type' => 'Select', ) , 'pseudoconstant' => array( 'optionGroupName' => 'mail_protocol', 'optionEditPath' => 'civicrm/admin/options/mail_protocol', ) ) , 'server' => array( 'name' => 'server', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Mail Server') , 'description' => 'server to use when polling', 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, ) , 'port' => array( 'name' => 'port', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Mail Port') , 'description' => 'port to use when polling', ) , 'username' => array( 'name' => 'username', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Mail Account Username') , 'description' => 'username to use when polling', 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, ) , 'password' => array( 'name' => 'password', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Mail Account Password') , 'description' => 'password to use when polling', 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, ) , 'is_ssl' => array( 'name' => 'is_ssl', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Mail Account Uses SSL') , 'description' => 'whether to use SSL or not', ) , 'source' => array( 'name' => 'source', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Mail Folder') , 'description' => 'folder to poll from when using IMAP, path to poll from when using Maildir, etc.', 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, ) , ); } return self::$_fields; } /** * Returns an array containing, for each field, the arary key used for that * field in self::$_fields. * * @return array */ static function &fieldKeys() { if (!(self::$_fieldKeys)) { self::$_fieldKeys = array( 'id' => 'id', 'domain_id' => 'domain_id', 'name' => 'name', 'is_default' => 'is_default', 'domain' => 'domain', 'localpart' => 'localpart', 'return_path' => 'return_path', 'protocol' => 'protocol', 'server' => 'server', 'port' => 'port', 'username' => 'username', 'password' => 'password', 'is_ssl' => 'is_ssl', 'source' => 'source', ); } return self::$_fieldKeys; } /** * Returns the names of this table * * @return string */ static function getTableName() { return self::$_tableName; } /** * Returns if this table needs to be logged * * @return boolean */ function getLog() { return self::$_log; } /** * Returns the list of fields that can be imported * * @param bool $prefix * * @return array */ static function &import($prefix = false) { if (!(self::$_import)) { self::$_import = array(); $fields = self::fields(); foreach($fields as $name => $field) { if (CRM_Utils_Array::value('import', $field)) { if ($prefix) { self::$_import['mail_settings'] = & $fields[$name]; } else { self::$_import[$name] = & $fields[$name]; } } } } return self::$_import; } /** * Returns the list of fields that can be exported * * @param bool $prefix * * @return array */ static function &export($prefix = false) { if (!(self::$_export)) { self::$_export = array(); $fields = self::fields(); foreach($fields as $name => $field) { if (CRM_Utils_Array::value('export', $field)) { if ($prefix) { self::$_export['mail_settings'] = & $fields[$name]; } else { self::$_export[$name] = & $fields[$name]; } } } } return self::$_export; } }