class-evf-admin-post-types.php
| 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 |