LLMS_Meta_Box_Certificate::configure()

Configure the metabox settings.


Return Return

(void)


Top ↑

Source Source

File: includes/admin/post-types/meta-boxes/class.llms.meta.box.certificate.php

30
31
32
33
34
35
36
37
38
39
40
41
42
43
public function configure() {
 
    $this->id            = 'lifterlms-certificate';
    $this->title         = __( 'Settings', 'lifterlms' );
    $this->screens       = array(
        'llms_certificate',
    );
    $this->priority      = 'default';
    $this->context       = 'side';
    $this->callback_args = array(
        '__back_compat_meta_box' => true,
    );
 
}

Top ↑

Changelog Changelog

Changelog
Version Description
6.0.0 Renamed from "Certificate Settings" to "Settings". Moved to the side context with default priority.
3.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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