LLMS_Meta_Box_Order_Details::output()
Function to field WP::output() method call Passes output instruction to parent
Description Description
Parameters Parameters
- $post
-
(object) (Required) WP global post object
Return Return
(void)
Source Source
File: includes/admin/post-types/meta-boxes/class.llms.meta.box.order.details.php
public function output() { $order = llms_get_post( $this->post ); if ( ! $order || ! is_a( $order, 'LLMS_Order' ) ) { return; } $gateway = $order->get_gateway(); llms_get_template( 'admin/post-types/order-details.php', array( 'gateway' => $gateway, 'order' => $order, ) ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
1.0.0 | Introduced. |
User Contributed Notes User Contributed Notes
Permalink: