PluginProbe
WPVR – 360 Panorama viewer and Virtual Tour Builder for WordPress / 8.5.36
WPVR – 360 Panorama viewer and Virtual Tour Builder for WordPress v8.5.36
9.1.2 9.1.1 9.1.0 9.0.3 9.0.2 9.0.1 9.0.0 8.5.79 8.5.78 8.5.77 8.5.76 8.5.75 8.5.74 8.5.73 8.5.72 8.5.71 8.5.70 8.5.69 8.5.68 8.5.35 8.5.36 8.5.37 8.5.38 8.5.39 8.5.4 All 221 releases
wpvr / admin / views / class-wpvr-meta-box.php

class-wpvr-meta-box.php in WPVR – 360 Panorama viewer and Virtual Tour Builder for WordPress 8.5.36, at admin/views/class-wpvr-meta-box.php

37 lines 622 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
3 /**
4 * The abstract class for maintaing custom meta box
5 *
6 * @link http://rextheme.com/
7 * @since 8.0.0
8 *
9 * @package Wpvr
10 * @subpackage Wpvr/admin/views
11 */
12
13 abstract class WPVR_Meta_Box {
14
15 /**
16 * Defination of custom meta box register method
17 *
18 * @param string $data
19 *
20 * @return void
21 * @since 8.0.0
22 */
23 abstract public function register($data);
24
25
26 /**
27 * Defination of custom meta box render method
28 *
29 * @param object $data
30 *
31 * @return void
32 * @since 8.0.0
33 */
34 abstract public function render($data);
35
36 }
37