__table = 'civicrm_dashboard_contact'; 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() , 'dashboard_id', 'civicrm_dashboard', 'id'); self::$_links[] = new CRM_Core_Reference_Basic(self::getTableName() , 'contact_id', 'civicrm_contact', '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('Dashboard Contact ID') , 'required' => true, ) , 'dashboard_id' => array( 'name' => 'dashboard_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Dashboard') , 'description' => 'Dashboard ID', 'required' => true, 'FKClassName' => 'CRM_Core_DAO_Dashboard', ) , 'contact_id' => array( 'name' => 'contact_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Dashboard Contact') , 'description' => 'Contact ID', 'required' => true, 'FKClassName' => 'CRM_Contact_DAO_Contact', ) , 'column_no' => array( 'name' => 'column_no', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Column No') , 'description' => 'column no for this widget', ) , 'is_minimized' => array( 'name' => 'is_minimized', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Dashlet is Minimized?') , 'description' => 'Is Minimized?', ) , 'is_fullscreen' => array( 'name' => 'is_fullscreen', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Dashlet is FullScreen?') , 'description' => 'Is Fullscreen?', 'default' => '1', ) , 'is_active' => array( 'name' => 'is_active', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Dashlet is Active?') , 'description' => 'Is this widget active?', ) , 'weight' => array( 'name' => 'weight', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Order') , 'description' => 'Ordering of the widgets.', ) , 'content' => array( 'name' => 'content', 'type' => CRM_Utils_Type::T_LONGTEXT, 'title' => ts('Content') , 'description' => 'dashlet content', ) , 'created_date' => array( 'name' => 'created_date', 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME, 'title' => ts('Dashlet Created On') , 'description' => 'When was content populated', ) , ); } 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', 'dashboard_id' => 'dashboard_id', 'contact_id' => 'contact_id', 'column_no' => 'column_no', 'is_minimized' => 'is_minimized', 'is_fullscreen' => 'is_fullscreen', 'is_active' => 'is_active', 'weight' => 'weight', 'content' => 'content', 'created_date' => 'created_date', ); } 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['dashboard_contact'] = & $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['dashboard_contact'] = & $fields[$name]; } else { self::$_export[$name] = & $fields[$name]; } } } } return self::$_export; } }