Server IP : 172.24.0.40 / Your IP : 216.73.216.10 Web Server : Apache System : Linux dbweb26.ust.edu.ph 4.18.0-513.5.1.el8_9.x86_64 #1 SMP Fri Sep 29 05:21:10 EDT 2023 x86_64 User : apache ( 48) PHP Version : 8.2.18 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/tomas/public_html/wp-content/plugins/ninja-forms/includes/Abstracts/ |
Upload File : |
<?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; add_action('init', [$this, 'abstractSubmissionInit'], 8); $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' ) ); } /** * Initialize properties at WP `init-8` action hook * * Set translatable properties - _title * * @return void */ public function abstractSubmissionInit(): void { $this->_title = esc_html__('Submission Metabox', 'ninja-forms'); } }