|
Server IP : 10.106.20.8 / Your IP : 216.73.216.148 Web Server : Apache System : Linux webm008.cluster106.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64 User : sixiemesrc ( 611999) PHP Version : 8.0.30 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/sixiemesrc/new/wp-content/languages/../plugins/interactive-geo-maps/src/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<?php
namespace Saltus\WP\Plugin\Saltus\InteractiveMaps;
/**
* Defines the post types and taxonomies
*
*/
class Loader {
/**
* The plugin's instance.
*
* @var Plugin
*/
protected $core;
/**
* The custom post types.
*
* @var array
*/
protected $post_types = [];
/**
* The custom taxonomies.
*
* @var array
*/
protected $taxonomies = [];
/** Define the core functionality of the plugin. */
public function __construct( Core $core ) {
$this->core = $core;
}
/** Register the Post types and taxonomies. */
public function run() {
}
}