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 
<?php
/**
 * SHORTCODE :: Listing Meta Doc [listing_meta_doc]
 *
 * @package     EPL
 * @subpackage  Shortcode/ListingMetaDoc
 * @copyright   Copyright (c) 2019, Merv Barrett
 * @license     http://opensource.org/licenses/gpl-2.0.php GNU Public License
 * @since       3.3.1
 */

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

/**
 * Listing Meta Doc [listing_meta_doc]
 *
 * This shortcode generates meta fields documentation for all EPL post types
 * [listing_meta_doc post_type="property"] OR [listing_meta_doc] for all post types.
 *
 * @param array $atts Shortcode attributes.
 *
 * @return false|string
 * @since       3.3.3
 */
function epl_shortcode_listing_meta_doc_callback( $atts ) {

    $atts = shortcode_atts(
        array(
            'post_type' => '',
        ),
        $atts
    );

    $meta_boxes = epl_get_meta_boxes();
    ob_start();
    ?>
        <style>
            ul.striped-list {
                list-style-type: none;
                margin: 0;
                padding: 0;
            }
            ul.striped-list > li:nth-of-type(odd) {
                background-color: rgba(78, 168, 234, 0.1) ;
            }
            ul.striped-list > li {
                border-bottom: 1px solid rgb(221,221,221);
                padding: 6px;
            }
            ul.striped-list > li:last-child {
                border-bottom: none;
            }
            .epl-meta-opt-list {
                margin-left: 35px !important;
            }
        </style>
    <?php
    if ( ! empty( $meta_boxes ) ) {
        foreach ( $meta_boxes as $epl_meta_box ) {

            $epl_meta_box['post_type'] = (array) $epl_meta_box['post_type'];

            if ( ! empty( $atts['post_type'] ) && ! in_array( $atts['post_type'], $epl_meta_box['post_type'], true ) ) {
                continue;
            }

            // Box heading.
            echo '<h4>' . esc_html( $epl_meta_box['label'] ) . '</h4>';

            if ( ! empty( $epl_meta_box['groups'] ) ) {
                foreach ( $epl_meta_box['groups'] as $group ) {

                    echo '<div class="epl-meta-group-wrap">';

                    // Group heading.
                    if ( ! empty( $group['label'] ) ) {
                        echo '<h4>' . esc_html( $group['label'] ) . '</h4>';
                    }

                    $fields = $group['fields'];
                    $fields = array_filter( $fields );
                    if ( ! empty( $fields ) ) {

                        echo '<ul class="striped-list epl-meta-fields-list">';

                        foreach ( $fields as $field ) {

                            if ( isset( $field['exclude'] ) && ! empty( $field['exclude'] ) ) {
                                if ( ! empty( $atts['post_type'] ) && in_array( $atts['post_type'], $field['exclude'], true ) ) {
                                    continue;
                                }
                            }

                            if ( isset( $field['include'] ) && ! empty( $field['include'] ) ) {
                                if ( ! empty( $atts['post_type'] ) && ! in_array( $atts['post_type'], $field['include'], true ) ) {
                                    continue;
                                }
                            }

                            echo '<li class="epl-meta-field-item">';

                            switch ( $field['type'] ) {

                                case 'text':
                                    echo '<strong>' . esc_attr( $field['name'] ) . '</strong><span class="epl-meta-sep"> :: </span>' . esc_attr( $field['type'] );
                                    break;

                                case 'checkbox_single':
                                    echo '<strong>' . esc_attr( $field['name'] ) . '</strong><span class="epl-meta-sep"> :: </span> "yes" or "no"';
                                    break;

                                case 'select':
                                    echo '<strong>' . esc_attr( $field['name'] ) . '</strong><span class="epl-meta-sep"> :: </span>' . esc_attr( $field['type'] ) . ' (drop down options) ';

                                    echo '<ul class="epl-meta-opt-list">';
                                    foreach ( $field['opts'] as $opt_key => $opt_label ) {
                                        $label = is_array( $opt_label ) ? $opt_label['label'] : $opt_label;
                                        echo '<li class="epl-meta-opt-item">';
                                            echo esc_attr( $label );
                                        echo '</li>';
                                    }
                                    echo '</ul>';
                                    break;

                                default:
                                    echo '<strong>' . esc_attr( $field['name'] ) . '</strong><span class="epl-meta-sep"> :: </span>' . esc_attr( $field['type'] );
                                    break;
                            }
                            echo '</li>';
                        }
                        echo '</ul>';
                    }
                    echo '</div><hr>';
                }
            }
        }
    }
    return ob_get_clean();
}
add_shortcode( 'listing_meta_doc', 'epl_shortcode_listing_meta_doc_callback' );
Easy Property Listings 3.5.15 Code Reference API documentation generated by ApiGen