File Manager / wp-content Search Upload New Item Settings File "db5.php" Full path: /home1/epichome/public_html/wp-content/db5.php File size: 60.67 B (60.67 KB bytes) MIME-type: text/x-php Charset: utf-8 Download Open Edit Advanced Editor Back
<?php if ( ! defined( 'ABSPATH' ) ) exit;
abstract class NF_Abstracts_SubmissionMetabox extends NF_Abstracts_Metabox
{
/**
* @var array
*/
protected $_post_types = array( 'nf_sub' );
/**
* @var NF_Database_Models_Submission
*/
protected $sub;
public function __construct()
{
parent::__construct();
if( ! isset( $_GET[ 'post' ] ) ) return;
$this->_title = esc_html__( 'Submission Metabox', 'ninja-forms' );
$post_id = absint( $_GET[ 'post' ] );
$this->sub = Ninja_Forms()->form()->get_sub( $post_id );
add_action( 'add_meta_boxes', array( $this, 'add_meta_boxes' ) );
add_action( 'save_post', array( $this, '_save_post' ) );
}
}