| 1 |
<?php |
| 2 |
/** |
| 3 |
* This class is implemented page: page in the admin panel. |
| 4 |
* |
| 5 |
* @author Alex Kovalev <alex.kovalevv@gmail.com> |
| 6 |
* @copyright (c) 2018, OnePress Ltd |
| 7 |
*s |
| 8 |
* @package core |
| 9 |
* @since 1.0.0 |
| 10 |
*/ |
| 11 |
|
| 12 |
// Exit if accessed directly |
| 13 |
if ( ! defined( 'ABSPATH' ) ) { |
| 14 |
exit; |
| 15 |
} |
| 16 |
|
| 17 |
/** |
| 18 |
* Common Settings |
| 19 |
*/ |
| 20 |
class WINP_Page extends Wbcr_FactoryPages449_AdminPage { |
| 21 |
|
| 22 |
/** |
| 23 |
* @param Wbcr_Factory450_Plugin $plugin |
| 24 |
*/ |
| 25 |
public function __construct( Wbcr_Factory450_Plugin $plugin ) { |
| 26 |
$this->menu_post_type = WINP_SNIPPETS_POST_TYPE; |
| 27 |
|
| 28 |
parent::__construct( $plugin ); |
| 29 |
} |
| 30 |
|
| 31 |
} |
| 32 |
|