ReportsGenerator::column( $name )

Get the built-in column setting by name reference

Description

Source

File: bp-integrations/learndash/library/ReportsGenerator.php

336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
public function column($name)
{
    $builtInColumns = [
        'course_id' => [
            'label'     => __( 'Course ID', 'buddyboss' ),
            'sortable'  => false,
            'order_key' => '',
        ],
        'course' => [
            'label'     => __( 'Course', 'buddyboss' ),
            'sortable'  => true,
            'order_key' => 'activity_course_title',
        ],
        'user_id' => [
            'label'     => __( 'User ID', 'buddyboss' ),
            'sortable'  => false,
            'order_key' => '',
        ],
        'user' => [
            'label'     => __( 'User', 'buddyboss' ),
            'sortable'  => true,
            'order_key' => 'user_display_name',
        ],
        'step' => [
            'label'     => __( 'Step', 'buddyboss' ),
            'sortable'  => true,
            'order_key' => 'post_type',
        ],
        'start_date' => [
            'label'     => __( 'Start Date', 'buddyboss' ),
            'sortable'  => true,
            'order_key' => 'activity_started',
        ],
        'completion_date' => [
            'label'     => __( 'Completion Date', 'buddyboss' ),
            'sortable'  => true,
            'order_key' => 'activity_completed',
        ],
        'updated_date' => [
            'label'     => __( 'Updated Date', 'buddyboss' ),
            'sortable'  => true,
            'order_key' => 'activity_updated',
        ],
        'time_spent' => [
            'label'     => __( 'Time Spent', 'buddyboss' ),
            'sortable'  => true,
            'order_key' => 'activity_time_spent',
        ],
        'points' => [
            'label'     => __( 'Points Earned', 'buddyboss' ),
            'sortable'  => false,
            'order_key' => '',
        ],
        'status' => [
            'label'     => __( 'Status', 'buddyboss' ),
            'sortable'  => false,
            'order_key' => '',
        ],
    ];
 
    return $builtInColumns[$name];
}

Changelog

Changelog
Version Description
BuddyBoss 1.0.0 Introduced.

Questions?

We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.