LLMS_Order::get_trial_end_date( string $format = 'Y-m-d H:i:s' )

Retrieve the date when a trial will end


Parameters Parameters

$format

(string) (Optional) Date return format. Default is 'Y-m-d H:i:s'.

Default value: 'Y-m-d H:i:s'


Top ↑

Return Return

(string)


Top ↑

Source Source

File: includes/models/model.llms.order.php

1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
                'relation' => 'AND',
                array(
                    'key'   => $this->meta_prefix . 'order_id',
                    'value' => $this->get( 'id' ),
                ),
                $types,
            ),
            'order'          => $order,
            'orderby'        => $orderby,
            'post_status'    => $statuses,
            'post_type'      => 'llms_transaction',
            'posts_per_page' => $per_page,
            'paged'          => $paged,
            'no_found_rows'  => $no_found_rows,
        )
    ),
    $this,
    $status
);
 
$transactions = array();


Top ↑

Changelog Changelog

Changelog
Version Description
3.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.