Easy Property Listings 3.5.15 Code Reference
  • Package
  • Class
  • Tree
  • Todo
  • Hook Reference

Packages

  • EPL
    • Admin
      • Actions
      • Classes
        • ContactsTable
        • ReportsGraph
        • Welcome
      • Contacts
      • ContactsActions
      • ContactsFunctions
      • Elements
      • Functions
      • Help
      • HelpSingle
      • Menus
      • MenusAddons
      • MenusExtensions
      • MenusLicenses
      • Plugins
      • Reports
      • ReportsGraphing
      • User
    • Assets
      • ScriptsStyles
      • SVG
    • Classes
      • AuthorLoader
      • AuthorMeta
      • Contact
      • Cron
      • CustomPostType
      • Forms
      • License
      • ListingAdvanced
      • ListingElements
      • MetaboxesCustomFields
      • Pagination
      • PropertyMeta
      • RenderFields
      • RestAPI
      • Search
      • Session
      • Updater
    • Compatibility
      • Extensions
      • Functions
      • Shortcodes
    • Functions
      • Actions
      • ConditionalTags
      • ErrorTracking
      • Formatting
      • Front
      • Global
      • Install
      • Pagination
      • Settings
      • Templates
    • Hooks
      • EnergyCertificate
      • ExternalLinks
      • FloorPlan
      • Map
      • ReadMore
      • WebLink
    • Meta
      • InitCustomFields
      • Meta
    • PostTypes
      • Business
      • Commercial
      • CommercialLand
      • Contact
      • Functions
      • Land
      • Property
      • Rental
      • Rural
    • Shortcode
      • CommercialListingSearch
      • ContactForm
      • Listing
      • ListingAdvanced
      • ListingAuction
      • ListingCategory
      • ListingFeature
      • ListingLocation
      • ListingMetaDoc
      • ListingOpen
      • ListingResults
      • ListingSearch
      • Map
    • Taxonomy
      • BusinessCategories
      • ContactTag
      • Features
      • Location
    • Templates
      • Themes
        • iThemes
        • iThemesBuilder
    • Widget
      • Admin
        • Dashboard
      • Classes
        • Author
        • ContactCapture
        • Gallery
        • Listing
        • Search
      • Functions
  • None
  • WordPress
    • Session

Classes

  • EPL_Advanced_Shortcode_Listing
  • EPL_Author
  • EPL_Author_Loader
  • EPL_Author_Meta
  • EPL_Contact
  • EPL_Contact_Reports_Table
  • EPL_CPT
  • EPL_Cron
  • EPL_FORM_BUILDER
  • EPL_Graph
  • EPL_License
  • EPL_Listing_Elements
  • EPL_METABOX
  • EPL_Pagination_Call
  • EPL_Property_Meta
  • EPL_Render_Fields
  • EPL_Rest_API
  • EPL_SEARCH
  • EPL_Search_Fields
  • EPL_Session
  • EPL_SL_Plugin_Updater
  • EPL_Welcome
  • EPL_Widget_Author
  • EPL_Widget_Contact_Capture
  • EPL_Widget_Property_Gallery
  • EPL_Widget_Property_Search
  • EPL_Widget_Recent_Property

Functions

  • EPL
  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  35  36  37  38  39  40  41  42  43  44  45  46  47  48  49  50  51  52  53  54  55  56  57  58  59  60  61  62  63  64  65  66  67  68  69  70  71  72  73  74  75  76  77  78  79  80  81  82  83  84  85  86  87  88  89  90  91  92  93  94  95  96  97  98  99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 
<?php
/**
 * Menus
 *
 * @package     EPL
 * @subpackage  Admin/Menus
 * @copyright   Copyright (c) 2020, Merv Barrett
 * @license     http://opensource.org/licenses/gpl-2.0.php GNU Public License
 * @since       1.0
 */

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
    exit;
}

global $epl_contact_page_hook;

add_action( 'admin_menu', 'epl_admin_menu' );

/**
 * Admin Menus
 *
 * @since 1.0
 * @since 3.4.48 fixed warnings when no user role set for user.
 */
function epl_admin_menu() {
    global $epl_contact_page_hook;
    // Contributors and above can access these options.
    $menu_title     = __( 'Easy Property Listings', 'easy-property-listings' );
    $page_title     = __( 'Easy Property Listings', 'easy-property-listings' );
    $capability     = 'edit_posts';
    $menu_slug      = 'epl-general';
    $main_menu_slug = $menu_slug;
    $function       = 'epl_menu_general';
    $icon           = 'dashicons-portfolio';
    $position       = '25.9';
    add_menu_page( $page_title, $menu_title, $capability, $menu_slug, $function, $icon, $position );

    $page_title = __( 'Help', 'easy-property-listings' );
    $menu_title = __( 'Help', 'easy-property-listings' );
    add_submenu_page( $menu_slug, $page_title, $menu_title, $capability, $menu_slug, $function );

    // Administrator and above can see these options.
    $page_title = __( 'Settings', 'easy-property-listings' );
    $menu_title = __( 'Settings', 'easy-property-listings' );
    $capability = 'manage_options';
    $function   = 'epl_menu_settings';
    $menu_slug  = 'epl-settings';
    add_submenu_page( $main_menu_slug, $page_title, $menu_title, $capability, $menu_slug, $function );

    // Contacts Menu item.
    $page_title = __( 'Contacts', 'easy-property-listings' );
    $menu_title = __( 'Contacts', 'easy-property-listings' );
    $menu_slug  = 'epl-contacts';
    $function   = 'epl_contacts_page';
    $this_user  = wp_get_current_user();
    if ( epl_contact_access() ) {
        $capability            = ! empty( $this_user->roles[0] ) ? $this_user->roles[0] : 'manage_options';
        $epl_contact_page_hook = add_submenu_page( $main_menu_slug, $page_title, $menu_title, $capability, $menu_slug, $function );
    }

    // Reports Access, $this_user is common with contacts.
    $page_title = __( 'Reports', 'easy-property-listings' );
    $menu_title = __( 'Reports', 'easy-property-listings' );
    $capability = 'edit_published_posts';
    $menu_slug  = 'epl-reports';
    $function   = 'epl_reports_page';
    if ( epl_reports_access() ) {
        $capability            = $this_user->roles[0];
        $epl_reports_page_hook = add_submenu_page( $main_menu_slug, $page_title, $menu_title, $capability, $menu_slug, $function );
    }

    // Administrator and above can see these options.
    $capability = 'manage_options';

    // Enable Menu if extension requires extension options.
    if ( has_filter( 'epl_extensions_options_filter_new' ) ) {
        $page_title = __( 'Extensions', 'easy-property-listings' );
        $menu_title = __( 'Extensions', 'easy-property-listings' );
        $menu_slug  = 'epl-extensions';
        $function   = 'epl_menu_extensions';
        add_submenu_page( $main_menu_slug, $page_title, $menu_title, $capability, $menu_slug, $function );
    }

    if ( has_filter( 'epl_extensions_options_filter' ) ) {
        // Show their menu on separate page.
        $page_title_old = __( 'Extensions Updates', 'easy-property-listings' );
        $menu_title_old = '<span style="color:#ff0000">' . __( 'Update Extensions', 'easy-property-listings' ) . '</span>';
        $menu_slug_old  = 'epl-extensions-compat';
        $function_old   = 'epl_menu_extensions_compat';
        add_submenu_page( $main_menu_slug, $page_title_old, $menu_title_old, $capability, $menu_slug_old, $function_old );
    }

    // Enable Menu if extension requires license options.
    if ( has_filter( 'epl_license_options_filter' ) ) {
        $page_title = __( 'Licenses', 'easy-property-listings' );
        $menu_title = __( 'Licenses', 'easy-property-listings' );
        $menu_slug  = 'epl-licenses';
        $function   = 'epl_menu_licenses';
        add_submenu_page( $main_menu_slug, $page_title, $menu_title, $capability, $menu_slug, $function );
    }

    // Author level and above can see these options.
    $page_title = __( 'Add Ons', 'easy-property-listings' );
    $menu_title = __( 'Add Ons', 'easy-property-listings' );
    $capability = 'edit_published_posts';
    $menu_slug  = 'epl-addons';
    $function   = 'epl_menu_addons';
    add_submenu_page( $main_menu_slug, $page_title, $menu_title, $capability, $menu_slug, $function );

    // Administrator level and above can see these options.
    $page_title = __( 'Tools', 'easy-property-listings' );
    $menu_title = __( 'Tools', 'easy-property-listings' );
    $capability = 'manage_options';
    $menu_slug  = 'epl-tools';
    $function   = 'epl_menu_tools';
    add_submenu_page( $main_menu_slug, $page_title, $menu_title, $capability, $menu_slug, $function );

}

/**
 * General Menu
 *
 * @since 1.0
 */
function epl_menu_general() {
    if ( ! current_user_can( 'edit_posts' ) ) {
        wp_die( esc_html__( 'You do not have sufficient permissions to access this page.', 'easy-property-listings' ) );
    }
    require_once 'menu-help.php';
}

/**
 * Settings Menu
 *
 * @since 1.0
 */
function epl_menu_settings() {
    if ( ! current_user_can( 'manage_options' ) ) {
        wp_die( esc_html__( 'You do not have sufficient permissions to access this page.', 'easy-property-listings' ) );
    }
    require_once 'menu-general.php';
}

/**
 * Extensions Menu
 *
 * @since 1.0
 */
function epl_menu_extensions() {
    if ( ! current_user_can( 'manage_options' ) ) {
        wp_die( esc_html__( 'You do not have sufficient permissions to access this page.', 'easy-property-listings' ) );
    }
    require_once 'menu-extensions.php';
}

/**
 * Licenses Menu
 *
 * @since 1.0
 */
function epl_menu_licenses() {
    if ( ! current_user_can( 'manage_options' ) ) {
        wp_die( esc_html__( 'You do not have sufficient permissions to access this page.', 'easy-property-listings' ) );
    }
    require_once 'menu-licenses.php';
}

/**
 * Addons Menu
 *
 * @since 1.0
 */
function epl_menu_addons() {
    if ( ! current_user_can( 'edit_published_posts' ) ) {
        wp_die( esc_html__( 'You do not have sufficient permissions to access this page.', 'easy-property-listings' ) );
    }
    require_once 'menu-addons.php';
}

/**
 * Help Menu
 *
 * @since 1.0
 */
function epl_menu_help() {
    if ( ! current_user_can( 'edit_posts' ) ) {
        wp_die( esc_html__( 'You do not have sufficient permissions to access this page.', 'easy-property-listings' ) );
    }
    require_once 'menu-help.php';
}

/**
 * Tools Menu
 *
 * @since 3.3
 */
function epl_menu_tools() {
    if ( ! current_user_can( 'manage_options' ) ) {
        wp_die( esc_html__( 'You do not have sufficient permissions to access this page.', 'easy-property-listings' ) );
    }
    require_once 'menu-tools.php';
}
Easy Property Listings 3.5.15 Code Reference API documentation generated by ApiGen