LLMS_Meta_Box_Award_Engagement_Submit::output()
Function to field WP::output() method call.
Return Return
(void)
Source Source
File: includes/admin/post-types/meta-boxes/class.llms.meta.box.award.engagement.submit.php
public function output() {
global $action;
add_action( 'admin_print_footer_scripts', array( __CLASS__, 'metabox_scripts' ), PHP_INT_MAX );
$engagement = $this->post;
$engagement_id = (int) $this->post->ID;
$engagement_type_object = get_post_type_object( $this->post->post_type );
$can_publish = current_user_can( $engagement_type_object->cap->publish_posts );
$fields = $this->student_fields();
include LLMS_PLUGIN_DIR . 'includes/admin/views/metaboxes/view-award-engagement-submit.php';
}
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 6.0.0 | Introduced. |