LLMS_Meta_Box_Order_Submit::output()
Function to field WP::output() method call Passes output instruction to parent
Contents
Return Return
(string|null)
Source Source
File: includes/admin/post-types/meta-boxes/class.llms.meta.box.order.submit.php
public function output() { $order = new LLMS_Order( $this->post ); if ( $order->is_legacy() ) { return _e( 'The status of a Legacy order cannot be changed.', 'lifterlms' ); } include LLMS_PLUGIN_DIR . 'includes/admin/views/metaboxes/view-order-submit.php'; wp_nonce_field( 'lifterlms_save_data', 'lifterlms_meta_nonce' ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.19.0 | Unknown. |
3.0.0 | Introduced. |