| 1234567891011121314151617181920212223242526 |
- <?php if ( ! defined( 'ABSPATH' ) ) exit;
- final class NF_Admin_Metaboxes_Calculations extends NF_Abstracts_SubmissionMetabox
- {
- public function __construct()
- {
- // Only load if we are editing a post.
- if( ! isset( $_GET[ 'post' ] ) ) return;
- parent::__construct();
- $this->_title = __( 'Calculations', 'ninja-forms' );
- if( $this->sub && ! $this->sub->get_extra_value( 'calculations' ) ){
- remove_action( 'add_meta_boxes', array( $this, 'add_meta_boxes' ) );
- }
- }
- public function render_metabox( $post, $metabox )
- {
- $data = $this->sub->get_extra_values( array( 'calculations' ) );
- Ninja_Forms::template( 'admin-metaboxes-calcs.html.php', $data[ 'calculations' ] );
- }
- }
|