PluginProbe
Everest Forms – Contact Form, Payment Form, Quiz, Survey & Custom Form Builder with AI / 1.1.5
Everest Forms – Contact Form, Payment Form, Quiz, Survey & Custom Form Builder with AI v1.1.5
3.6.1 3.6.0 3.5.3 3.5.2 3.5.1 3.5.0 3.4.8 3.4.7 3.4.6 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.5.1 1.1.6 1.1.7 1.1.8 1.1.9 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 All 165 releases
everest-forms / includes / admin / class-evf-admin-post-types.php
class-evf-admin-post-types.php
36 lines 506 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Post Types Admin
4 *
5 * @author WPEverest
6 * @category Admin
7 * @package EverestForms/Admin
8 * @version 1.0.0
9 */
10
11 if ( ! defined( 'ABSPATH' ) ) {
12 exit;
13 }
14
15 if ( ! class_exists( 'EVF_Admin_Post_Types', false ) ) :
16
17 /**
18 * EVF_Admin_Post_Types Class.
19 *
20 * Handles the edit posts views and some functionality on the edit post screen for EVF post types.
21 */
22 class EVF_Admin_Post_Types {
23
24 /**
25 * Constructor.
26 */
27 public function __construct() {
28 }
29
30
31 }
32
33 endif;
34
35 new EVF_Admin_Post_Types();
36