-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathWaymark.php
34 lines (28 loc) · 967 Bytes
/
Waymark.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
/*
Plugin Name: Waymark
Plugin URI: https://www.waymark.dev/
Description: Mapping with WordPress made easy. With Waymark enabled, click on the "Maps" link in the sidebar to create and edit Maps. Once you are happy with your Map, copy the Waymark shortcode and add it to your content.
Version: 1.4.3
Text Domain: waymark
Author: Joe Hawes
Author URI: https://www.morehawes.ca/
License: GPLv2
*/
//Base
require_once 'inc/Waymark_Config.php';
require_once 'inc/Waymark_Types.php';
require_once 'inc/Waymark_Taxonomies.php';
require_once 'inc/Waymark_Install.php';
//Objects
require_once 'inc/Objects/Waymark_Map.php';
require_once 'inc/Objects/Waymark_Collection.php';
//Helpers
require_once 'inc/Helpers/Waymark_Helper.php';
require_once 'inc/Helpers/Waymark_Input.php';
require_once 'inc/Helpers/Waymark_GeoJSON.php';
require_once 'inc/Helpers/Waymark_Lang.php';
//Front
require_once 'inc/Waymark_Front.php';
//Admin
require_once 'inc/Waymark_Admin.php';