# wpvr/8.5.76/admin/views/class-wpvr-meta-box.php

WPVR – 360 Panorama viewer and Virtual Tour Builder for WordPress, version 8.5.76. 37 lines.

- Page: https://pluginprobe.com/plugins/wpvr/8.5.76/code/admin/views/class-wpvr-meta-box.php
- Raw: https://pluginprobe.com/plugins/wpvr/8.5.76/raw/admin/views/class-wpvr-meta-box.php
- Modified: 2022-06-15T10:20:54+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wpvr/8.5.76/code/admin/views/class-wpvr-meta-box.php#L10-L20`.

```php
<?php
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
/**
 * The abstract class for maintaing custom meta box
 *
 * @link       http://rextheme.com/
 * @since      8.0.0
 *
 * @package    Wpvr
 * @subpackage Wpvr/admin/views
 */

abstract class WPVR_Meta_Box {

	/**
	 * Defination of custom meta box register method
	 * 
	 * @param string $data
	 * 
	 * @return void
	 * @since 8.0.0
	 */
	abstract public function register($data);


	/**
	 * Defination of custom meta box render method
	 * 
	 * @param object $data
	 * 
	 * @return void
	 * @since 8.0.0
	 */
	abstract public function render($data);

}

```
