export_fields = array( 'account_id' => lang('Account ID'), 'account_lid' => lang('Group Name'), 'account_members' => lang('Members'), ); // Custom fields - not really used in admin... unset($this->export_fields['customfields']); $custom = config::get_customfields('admin', true); foreach($custom as $name => $data) { $this->export_fields['#'.$name] = $data['label']; } } }