/**
  * returns all the column names of this table
  *
  * @access public
  * @return array
  */
 static function &fields()
 {
     if (!self::$_fields) {
         self::$_fields = array('id' => array('name' => 'id', 'type' => CRM_Utils_Type::T_INT, 'required' => true, 'export' => true, 'where' => 'civicrm_bank_plugin_instance.id', 'headerPattern' => '', 'dataPattern' => ''), 'plugin_type_id' => array('name' => 'plugin_type_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Plugin type'), 'required' => true), 'plugin_class_id' => array('name' => 'plugin_class_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Plugin class name'), 'required' => true), 'name' => array('name' => 'name', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Name'), 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE), 'description' => array('name' => 'description', 'type' => CRM_Utils_Type::T_TEXT, 'title' => ts('Description')), 'enabled' => array('name' => 'enabled', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Enabled'), 'required' => true, 'default' => ''), 'weight' => array('name' => 'weight', 'type' => CRM_Utils_Type::T_FLOAT, 'title' => ts('Weight'), 'required' => true, 'default' => '00.'), 'config' => array('name' => 'config', 'type' => CRM_Utils_Type::T_TEXT, 'title' => ts('Config')), 'state' => array('name' => 'state', 'type' => CRM_Utils_Type::T_TEXT, 'title' => ts('State')));
     }
     return self::$_fields;
 }